Yugabytedb
YugabyteDBChatStore #
Bases: BaseChatStore
Source code in llama-index-integrations/storage/chat_store/llama-index-storage-chat-store-yugabytedb/llama_index/storage/chat_store/yugabytedb/base.py
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 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 |
|
from_params
classmethod
#
from_params(host: Optional[str] = None, port: Optional[str] = None, database: Optional[str] = None, user: Optional[str] = None, password: Optional[str] = None, load_balance: Optional[bool] = False, topology_keys: Optional[str] = None, yb_servers_refresh_interval: Optional[int] = 300, fallback_to_topology_keys_only: Optional[bool] = False, failed_host_ttl_seconds: Optional[int] = 5, table_name: str = 'chatstore', schema_name: str = 'public', connection_string: Optional[str] = None, debug: bool = False, use_jsonb: bool = False) -> YugabyteDBChatStore
Return connection string from database parameters.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
host
|
str
|
YugabyteDB host. |
None
|
port
|
str
|
YugabyteDB port. |
None
|
database
|
str
|
YugabyteDB database name. |
None
|
user
|
str
|
YugabyteDB user. |
None
|
password
|
str
|
YugabyteDB password. |
None
|
load_balance
|
bool
|
Enables uniform load balancing. Defaults to False. |
False
|
topology_keys
|
str
|
Enables topology-aware load balancing. Specify comma-separated geo-locations in the form of cloud.region.zone:priority. Ignored if load_balance is false. Defaults to None. |
None
|
yb_servers_refresh_interval
|
int
|
The interval in seconds to refresh the servers list; ignored if load_balance is false. Defaults to 300. |
300
|
fallback_to_topology_keys_only
|
bool
|
If set to true and topology_keys are specified, the driver only tries to connect to nodes specified in topology_keys Defaults to False. |
False
|
failed_host_ttl_seconds
|
int
|
Time, in seconds, to wait before trying to connect to failed nodes. Defaults to 5. |
5
|
connection_string
|
Union[str, URL]
|
Connection string to yugabytedb db. |
None
|
table_name
|
str
|
Table name. |
'chatstore'
|
schema_name
|
str
|
Schema name. |
'public'
|
debug
|
bool
|
Debug mode. Defaults to False. |
False
|
use_jsonb
|
bool
|
Use JSONB instead of JSON. Defaults to False. |
False
|
Source code in llama-index-integrations/storage/chat_store/llama-index-storage-chat-store-yugabytedb/llama_index/storage/chat_store/yugabytedb/base.py
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 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 |
|
from_uri
classmethod
#
from_uri(uri: str, table_name: str = 'chatstore', schema_name: str = 'public', debug: bool = False, use_jsonb: bool = False) -> YugabyteDBChatStore
Return connection string from database parameters.
Source code in llama-index-integrations/storage/chat_store/llama-index-storage-chat-store-yugabytedb/llama_index/storage/chat_store/yugabytedb/base.py
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 |
|
set_messages #
set_messages(key: str, messages: list[ChatMessage]) -> None
Set messages for a key.
Source code in llama-index-integrations/storage/chat_store/llama-index-storage-chat-store-yugabytedb/llama_index/storage/chat_store/yugabytedb/base.py
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 |
|
get_messages #
get_messages(key: str) -> list[ChatMessage]
Get messages for a key.
Source code in llama-index-integrations/storage/chat_store/llama-index-storage-chat-store-yugabytedb/llama_index/storage/chat_store/yugabytedb/base.py
255 256 257 258 259 260 261 262 263 264 265 |
|
add_message #
add_message(key: str, message: ChatMessage) -> None
Add a message for a key.
Source code in llama-index-integrations/storage/chat_store/llama-index-storage-chat-store-yugabytedb/llama_index/storage/chat_store/yugabytedb/base.py
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 |
|
delete_messages #
delete_messages(key: str) -> Optional[list[ChatMessage]]
Delete messages for a key.
Source code in llama-index-integrations/storage/chat_store/llama-index-storage-chat-store-yugabytedb/llama_index/storage/chat_store/yugabytedb/base.py
284 285 286 287 288 289 |
|
delete_message #
delete_message(key: str, idx: int) -> Optional[ChatMessage]
Delete specific message for a key.
Source code in llama-index-integrations/storage/chat_store/llama-index-storage-chat-store-yugabytedb/llama_index/storage/chat_store/yugabytedb/base.py
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 |
|
delete_last_message #
delete_last_message(key: str) -> Optional[ChatMessage]
Delete last message for a key.
Source code in llama-index-integrations/storage/chat_store/llama-index-storage-chat-store-yugabytedb/llama_index/storage/chat_store/yugabytedb/base.py
322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 |
|
get_keys #
get_keys() -> list[str]
Get all keys.
Source code in llama-index-integrations/storage/chat_store/llama-index-storage-chat-store-yugabytedb/llama_index/storage/chat_store/yugabytedb/base.py
349 350 351 352 353 354 |
|