聊天记忆缓冲区
聊天记忆缓冲区 #
基类:EventBaseChatStoreMemory
已弃用:请改用 llama_index.core.memory.Memory。
用于存储聊天历史的简单缓冲区。
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
token_limit
|
int
|
|
required |
tokenizer_fn
|
Callable[list, List]
|
|
<dynamic>
|
workflows/handler.py 中的源代码llama_index/core/memory/chat_memory_buffer.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 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 | |
class_name
classmethod
#
class_name() -> str
获取类名。
workflows/handler.py 中的源代码llama_index/core/memory/chat_memory_buffer.py
32 33 34 35 | |
from_defaults
classmethod
#
from_defaults(chat_history: Optional[List[ChatMessage]] = None, llm: Optional[大语言模型] = None, chat_store: Optional[BaseChatStore] = None, chat_store_key: str = DEFAULT_CHAT_STORE_KEY, token_limit: Optional[int] = None, tokenizer_fn: Optional[Callable[[str], List]] = None, **kwargs: Any) -> ChatMemoryBuffer
从大型语言模型创建一个聊天记忆缓冲区。
workflows/handler.py 中的源代码llama_index/core/memory/chat_memory_buffer.py
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 | |
to_string #
to_string() -> str
将内存转换为字符串。
workflows/handler.py 中的源代码llama_index/core/memory/chat_memory_buffer.py
84 85 86 | |
from_string
classmethod
#
from_string(json_str: str) -> ChatMemoryBuffer
从字符串创建聊天记忆缓冲区。
workflows/handler.py 中的源代码llama_index/core/memory/chat_memory_buffer.py
88 89 90 91 92 | |
to_dict #
to_dict(**kwargs: Any) -> dict
将内存转换为字典。
workflows/handler.py 中的源代码llama_index/core/memory/chat_memory_buffer.py
94 95 96 | |
获取 #
get(input: Optional[str] = None, initial_token_count: int = 0, **kwargs: Any) -> List[ChatMessage]
获取聊天历史记录。
workflows/handler.py 中的源代码llama_index/core/memory/chat_memory_buffer.py
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 | |
智能体
async
#
aget(input: Optional[str] = None, initial_token_count: int = 0, **kwargs: Any) -> List[ChatMessage]
获取聊天历史记录。
workflows/handler.py 中的源代码llama_index/core/memory/chat_memory_buffer.py
153 154 155 156 157 158 159 | |