跳到内容

Tablestore

TablestoreChatStore #

基类: BaseChatStore

Tablestore 聊天存储。

参数

名称 类型 描述 默认值
tablestore_client OTSClient

外部 Tablestore(OTS) 客户端。如果设置此参数,将忽略以下 endpoint/instance_name/access_key_id/access_key_secret。

endpoint str

Tablestore 实例端点。

instance_name str

Tablestore 实例名称。

access_key_id str

阿里云 Access Key ID。

access_key_secret str

阿里云 Access Key Secret。

table_name str

Tablestore 表名。

'llama_index_chat_store_v1'

返回值

名称 类型 描述
TablestoreChatStore

一个 Tablestore 聊天存储对象。

源码位于 llama-index-integrations/storage/chat_store/llama-index-storage-chat-store-tablestore/llama_index/storage/chat_store/tablestore/base.py
 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
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
class TablestoreChatStore(BaseChatStore):
    """
    Tablestore Chat Store.

    Args:
        tablestore_client (OTSClient, optional): External tablestore(ots) client.
                If this parameter is set, the following endpoint/instance_name/access_key_id/access_key_secret will be ignored.
        endpoint (str, optional): Tablestore instance endpoint.
        instance_name (str, optional): Tablestore instance name.
        access_key_id (str, optional): Aliyun access key id.
        access_key_secret (str, optional): Aliyun access key secret.
        table_name (str, optional): Tablestore table name.

    Returns:
        TablestoreChatStore: A Tablestore chat store object.

    """

    table_name: str
    _primary_key: str = "session_id"
    _history_column: str = "history"
    _tablestore_client: tablestore.OTSClient

    def __init__(
        self,
        tablestore_client: Optional[tablestore.OTSClient] = None,
        endpoint: Optional[str] = None,
        instance_name: Optional[str] = None,
        access_key_id: Optional[str] = None,
        access_key_secret: Optional[str] = None,
        table_name: str = "llama_index_chat_store_v1",
        **kwargs: Any,
    ) -> None:
        super().__init__(
            table_name=table_name,
        )
        if not tablestore_client:
            self._tablestore_client = tablestore.OTSClient(
                endpoint,
                access_key_id,
                access_key_secret,
                instance_name,
                retry_policy=tablestore.WriteRetryPolicy(),
                **kwargs,  # pass additional arguments
            )
        else:
            self._tablestore_client = tablestore_client

    def create_table_if_not_exist(self) -> None:
        """Create table if not exist."""
        table_list = self._tablestore_client.list_table()
        if self.table_name in table_list:
            logger.info(
                f"Tablestore chat store table[{self.table_name}] already exists"
            )
            return
        logger.info(
            f"Tablestore chat store table[{self.table_name}] does not exist, try to create the table."
        )

        table_meta = tablestore.TableMeta(
            self.table_name, [(self._primary_key, "STRING")]
        )
        reserved_throughput = tablestore.ReservedThroughput(
            tablestore.CapacityUnit(0, 0)
        )
        self._tablestore_client.create_table(
            table_meta, tablestore.TableOptions(), reserved_throughput
        )
        logger.info(
            f"Tablestore create chat store table[{self.table_name}] successfully."
        )

    def clear_store(self):
        """Delete all messages."""
        keys = self.get_keys()
        for key in keys:
            self.delete_messages(key)

    @classmethod
    def class_name(self) -> str:
        return "TablestoreChatStore"

    def set_messages(self, key: str, messages: List[ChatMessage]) -> None:
        """
        Assign all provided messages to the row with the given key.
        Any pre-existing messages for that key will be overwritten.

        Args:
            key (str): The key specifying a row.
            messages (List[ChatMessage]): The messages to assign to the key.

        Returns:
            None

        """
        primary_key = [(self._primary_key, key)]
        attribute_columns = [
            (
                self._history_column,
                json.dumps(_messages_to_dict(messages), ensure_ascii=False),
            ),
        ]
        row = tablestore.Row(primary_key, attribute_columns)
        self._tablestore_client.put_row(self.table_name, row)

    def get_messages(self, key: str) -> List[ChatMessage]:
        """
        Retrieve all messages for the given key.

        Args:
            key (str): The key specifying a row.

        Returns:
            List[ChatMessage]: The messages associated with the key.

        """
        primary_key = [(self._primary_key, key)]
        _, row, _ = self._tablestore_client.get_row(
            self.table_name, primary_key, None, None, 1
        )
        history = {}
        if row is not None:
            for col in row.attribute_columns:
                key = col[0]
                val = col[1]
                if key == self._history_column:
                    history = json.loads(val)
                    continue
        return [_dict_to_message(message) for message in history]

    def add_message(self, key: str, message: ChatMessage) -> None:
        """
        Add a message to the end of the chat history for the given key.
        Creates a new row if the key does not exist.

        Args:
            key (str): The key specifying a row.
            message (ChatMessage): The message to add to the chat history.

        Returns:
            None

        """
        current_messages = self.get_messages(key)
        current_messages.append(message)
        self.set_messages(key, current_messages)

    def delete_messages(self, key: str) -> Optional[List[ChatMessage]]:
        """
        Deletes the entire chat history for the given key (i.e. the row).

        Args:
            key (str): The key specifying a row.

        Returns:
            Optional[List[ChatMessage]]: The messages that were deleted. None if the
                deletion failed.

        """
        messages_to_delete = self.get_messages(key)
        primary_key = [(self._primary_key, key)]
        self._tablestore_client.delete_row(self.table_name, primary_key, None)
        return messages_to_delete

    def delete_message(self, key: str, idx: int) -> Optional[ChatMessage]:
        """
        Deletes the message at the given index for the given key.

        Args:
            key (str): The key specifying a row.
            idx (int): The index of the message to delete.

        Returns:
            Optional[ChatMessage]: The message that was deleted. None if the index
                did not exist.

        """
        current_messages = self.get_messages(key)
        try:
            message_to_delete = current_messages[idx]
            del current_messages[idx]
            self.set_messages(key, current_messages)
            return message_to_delete
        except IndexError:
            logger.error(
                IndexError(f"No message exists at index, {idx}, for key {key}")
            )
            return None

    def delete_last_message(self, key: str) -> Optional[ChatMessage]:
        """
        Deletes the last message in the chat history for the given key.

        Args:
            key (str): The key specifying a row.

        Returns:
            Optional[ChatMessage]: The message that was deleted. None if the chat history
                was empty.

        """
        return self.delete_message(key, -1)

    def get_keys(self) -> List[str]:
        """
        Retrieve all keys in the table.

        Returns:
            List[str]: The keys in the table.

        """
        keys = []
        inclusive_start_primary_key = [(self._primary_key, tablestore.INF_MIN)]
        exclusive_end_primary_key = [(self._primary_key, tablestore.INF_MAX)]
        limit = 5000
        columns_to_get = []
        (
            consumed,
            next_start_primary_key,
            row_list,
            next_token,
        ) = self._tablestore_client.get_range(
            self.table_name,
            tablestore.Direction.FORWARD,
            inclusive_start_primary_key,
            exclusive_end_primary_key,
            columns_to_get,
            limit,
            max_version=1,
        )
        if row_list:
            for row in row_list:
                keys.append(row.primary_key[0][1])
        while next_start_primary_key is not None:
            inclusive_start_primary_key = next_start_primary_key
            (
                consumed,
                next_start_primary_key,
                row_list,
                next_token,
            ) = self._tablestore_client.get_range(
                self.table_name,
                tablestore.Direction.FORWARD,
                inclusive_start_primary_key,
                exclusive_end_primary_key,
                columns_to_get,
                limit,
                max_version=1,
            )
            if row_list:
                for row in row_list:
                    keys.append(row.primary_key[0][1])

        return keys

create_table_if_not_exist #

create_table_if_not_exist() -> None

如果表不存在则创建。

源码位于 llama-index-integrations/storage/chat_store/llama-index-storage-chat-store-tablestore/llama_index/storage/chat_store/tablestore/base.py
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
def create_table_if_not_exist(self) -> None:
    """Create table if not exist."""
    table_list = self._tablestore_client.list_table()
    if self.table_name in table_list:
        logger.info(
            f"Tablestore chat store table[{self.table_name}] already exists"
        )
        return
    logger.info(
        f"Tablestore chat store table[{self.table_name}] does not exist, try to create the table."
    )

    table_meta = tablestore.TableMeta(
        self.table_name, [(self._primary_key, "STRING")]
    )
    reserved_throughput = tablestore.ReservedThroughput(
        tablestore.CapacityUnit(0, 0)
    )
    self._tablestore_client.create_table(
        table_meta, tablestore.TableOptions(), reserved_throughput
    )
    logger.info(
        f"Tablestore create chat store table[{self.table_name}] successfully."
    )

clear_store #

clear_store()

删除所有消息。

源码位于 llama-index-integrations/storage/chat_store/llama-index-storage-chat-store-tablestore/llama_index/storage/chat_store/tablestore/base.py
100
101
102
103
104
def clear_store(self):
    """Delete all messages."""
    keys = self.get_keys()
    for key in keys:
        self.delete_messages(key)

set_messages #

set_messages(key: str, messages: List[ChatMessage]) -> None

将所有提供的消息分配到指定键的行。该键的任何预先存在的消息都将被覆盖。

参数

名称 类型 描述 默认值
key str

指定行的键。

必需
消息 List[ChatMessage]

要分配给键的消息。

必需

返回值

类型 描述

源码位于 llama-index-integrations/storage/chat_store/llama-index-storage-chat-store-tablestore/llama_index/storage/chat_store/tablestore/base.py
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
def set_messages(self, key: str, messages: List[ChatMessage]) -> None:
    """
    Assign all provided messages to the row with the given key.
    Any pre-existing messages for that key will be overwritten.

    Args:
        key (str): The key specifying a row.
        messages (List[ChatMessage]): The messages to assign to the key.

    Returns:
        None

    """
    primary_key = [(self._primary_key, key)]
    attribute_columns = [
        (
            self._history_column,
            json.dumps(_messages_to_dict(messages), ensure_ascii=False),
        ),
    ]
    row = tablestore.Row(primary_key, attribute_columns)
    self._tablestore_client.put_row(self.table_name, row)

get_messages #

get_messages(key: str) -> List[ChatMessage]

检索指定键的所有消息。

参数

名称 类型 描述 默认值
key str

指定行的键。

必需

返回值

类型 描述
List[ChatMessage]

List[ChatMessage]: 与键关联的消息。

源码位于 llama-index-integrations/storage/chat_store/llama-index-storage-chat-store-tablestore/llama_index/storage/chat_store/tablestore/base.py
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
def get_messages(self, key: str) -> List[ChatMessage]:
    """
    Retrieve all messages for the given key.

    Args:
        key (str): The key specifying a row.

    Returns:
        List[ChatMessage]: The messages associated with the key.

    """
    primary_key = [(self._primary_key, key)]
    _, row, _ = self._tablestore_client.get_row(
        self.table_name, primary_key, None, None, 1
    )
    history = {}
    if row is not None:
        for col in row.attribute_columns:
            key = col[0]
            val = col[1]
            if key == self._history_column:
                history = json.loads(val)
                continue
    return [_dict_to_message(message) for message in history]

add_message #

add_message(key: str, message: ChatMessage) -> None

向指定键的聊天记录末尾添加一条消息。如果键不存在,则创建新行。

参数

名称 类型 描述 默认值
key str

指定行的键。

必需
message ChatMessage

要添加到聊天记录的消息。

必需

返回值

类型 描述

源码位于 llama-index-integrations/storage/chat_store/llama-index-storage-chat-store-tablestore/llama_index/storage/chat_store/tablestore/base.py
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
def add_message(self, key: str, message: ChatMessage) -> None:
    """
    Add a message to the end of the chat history for the given key.
    Creates a new row if the key does not exist.

    Args:
        key (str): The key specifying a row.
        message (ChatMessage): The message to add to the chat history.

    Returns:
        None

    """
    current_messages = self.get_messages(key)
    current_messages.append(message)
    self.set_messages(key, current_messages)

delete_messages #

delete_messages(key: str) -> Optional[List[ChatMessage]]

删除指定键的整个聊天记录(即该行)。

参数

名称 类型 描述 默认值
key str

指定行的键。

必需

返回值

类型 描述
Optional[List[ChatMessage]]

Optional[List[ChatMessage]]: 被删除的消息。如果删除失败,则为 None。

源码位于 llama-index-integrations/storage/chat_store/llama-index-storage-chat-store-tablestore/llama_index/storage/chat_store/tablestore/base.py
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
def delete_messages(self, key: str) -> Optional[List[ChatMessage]]:
    """
    Deletes the entire chat history for the given key (i.e. the row).

    Args:
        key (str): The key specifying a row.

    Returns:
        Optional[List[ChatMessage]]: The messages that were deleted. None if the
            deletion failed.

    """
    messages_to_delete = self.get_messages(key)
    primary_key = [(self._primary_key, key)]
    self._tablestore_client.delete_row(self.table_name, primary_key, None)
    return messages_to_delete

delete_message #

delete_message(key: str, idx: int) -> Optional[ChatMessage]

删除指定键上指定索引处的消息。

参数

名称 类型 描述 默认值
key str

指定行的键。

必需
idx int

要删除的消息的索引。

必需

返回值

类型 描述
Optional[ChatMessage]]

Optional[ChatMessage]: 被删除的消息。如果索引不存在,则为 None。

源码位于 llama-index-integrations/storage/chat_store/llama-index-storage-chat-store-tablestore/llama_index/storage/chat_store/tablestore/base.py
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
def delete_message(self, key: str, idx: int) -> Optional[ChatMessage]:
    """
    Deletes the message at the given index for the given key.

    Args:
        key (str): The key specifying a row.
        idx (int): The index of the message to delete.

    Returns:
        Optional[ChatMessage]: The message that was deleted. None if the index
            did not exist.

    """
    current_messages = self.get_messages(key)
    try:
        message_to_delete = current_messages[idx]
        del current_messages[idx]
        self.set_messages(key, current_messages)
        return message_to_delete
    except IndexError:
        logger.error(
            IndexError(f"No message exists at index, {idx}, for key {key}")
        )
        return None

delete_last_message #

delete_last_message(key: str) -> Optional[ChatMessage]

删除指定键的聊天记录中的最后一条消息。

参数

名称 类型 描述 默认值
key str

指定行的键。

必需

返回值

类型 描述
Optional[ChatMessage]]

Optional[ChatMessage]: 被删除的消息。如果聊天记录为空,则为 None。

源码位于 llama-index-integrations/storage/chat_store/llama-index-storage-chat-store-tablestore/llama_index/storage/chat_store/tablestore/base.py
217
218
219
220
221
222
223
224
225
226
227
228
229
def delete_last_message(self, key: str) -> Optional[ChatMessage]:
    """
    Deletes the last message in the chat history for the given key.

    Args:
        key (str): The key specifying a row.

    Returns:
        Optional[ChatMessage]: The message that was deleted. None if the chat history
            was empty.

    """
    return self.delete_message(key, -1)

get_keys #

get_keys() -> List[str]

检索表中的所有键。

返回值

类型 描述
List[str]

List[str]: 表中的键。

源码位于 llama-index-integrations/storage/chat_store/llama-index-storage-chat-store-tablestore/llama_index/storage/chat_store/tablestore/base.py
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
def get_keys(self) -> List[str]:
    """
    Retrieve all keys in the table.

    Returns:
        List[str]: The keys in the table.

    """
    keys = []
    inclusive_start_primary_key = [(self._primary_key, tablestore.INF_MIN)]
    exclusive_end_primary_key = [(self._primary_key, tablestore.INF_MAX)]
    limit = 5000
    columns_to_get = []
    (
        consumed,
        next_start_primary_key,
        row_list,
        next_token,
    ) = self._tablestore_client.get_range(
        self.table_name,
        tablestore.Direction.FORWARD,
        inclusive_start_primary_key,
        exclusive_end_primary_key,
        columns_to_get,
        limit,
        max_version=1,
    )
    if row_list:
        for row in row_list:
            keys.append(row.primary_key[0][1])
    while next_start_primary_key is not None:
        inclusive_start_primary_key = next_start_primary_key
        (
            consumed,
            next_start_primary_key,
            row_list,
            next_token,
        ) = self._tablestore_client.get_range(
            self.table_name,
            tablestore.Direction.FORWARD,
            inclusive_start_primary_key,
            exclusive_end_primary_key,
            columns_to_get,
            limit,
            max_version=1,
        )
        if row_list:
            for row in row_list:
                keys.append(row.primary_key[0][1])

    return keys