griptape_cloud_conversation_memory_driver
GriptapeCloudConversationMemoryDriver
Bases: BaseConversationMemoryDriver
A driver for storing conversation memory in the Griptape Cloud.
Attributes:
Name | Type | Description |
---|---|---|
thread_id |
str
|
The ID of the Thread to store the conversation memory in. If not provided, the driver will attempt to
retrieve the ID from the environment variable |
base_url |
str
|
The base URL of the Griptape Cloud API. Defaults to the value of the environment variable
|
api_key |
Optional[str]
|
The API key to use for authenticating with the Griptape Cloud API. If not provided, the driver will
attempt to retrieve the API key from the environment variable |
Raises:
Type | Description |
---|---|
ValueError
|
If |
Source code in griptape/drivers/memory/conversation/griptape_cloud_conversation_memory_driver.py
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 |
|