griptape_cloud_conversation_memory_driver
GriptapeCloudConversationMemoryDriver
Bases: BaseConversationMemoryDriver
A driver for storing conversation memory in the Griptape Cloud.
Attributes:
Name | Type | Description |
---|---|---|
thread_id |
Optional[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 |
alias |
Optional[str]
|
The alias of the Thread to store the conversation memory in. |
base_url |
str
|
The base URL of the Griptape Cloud API. Defaults to the value of the environment variable
|
api_key |
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 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 |
|
alias: Optional[str] = field(default=None, metadata={'serializable': True})
class-attribute
instance-attribute
api_key: str = field(default=Factory(lambda: os.environ['GT_CLOUD_API_KEY']))
class-attribute
instance-attribute
base_url: str = field(default=Factory(lambda: os.getenv('GT_CLOUD_BASE_URL', 'https://cloud.griptape.ai')))
class-attribute
instance-attribute
headers: dict = field(default=Factory(lambda self: {'Authorization': f'Bearer {self.api_key}'}, takes_self=True), init=False)
class-attribute
instance-attribute
thread: dict
property
Try to get the Thread by ID, alias, or create a new one.