mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-08-16 07:20:59 +00:00
feat(variables): add api for plugin
This commit is contained in:
@@ -94,6 +94,26 @@ class Query(pydantic.BaseModel):
|
|||||||
class Config:
|
class Config:
|
||||||
arbitrary_types_allowed = True
|
arbitrary_types_allowed = True
|
||||||
|
|
||||||
|
# ========== 插件可调用的 API(请求 API) ==========
|
||||||
|
|
||||||
|
def set_variable(self, key: str, value: typing.Any):
|
||||||
|
"""设置变量"""
|
||||||
|
if self.variables is None:
|
||||||
|
self.variables = {}
|
||||||
|
self.variables[key] = value
|
||||||
|
|
||||||
|
def get_variable(self, key: str) -> typing.Any:
|
||||||
|
"""获取变量"""
|
||||||
|
if self.variables is None:
|
||||||
|
return None
|
||||||
|
return self.variables.get(key)
|
||||||
|
|
||||||
|
def get_variables(self) -> dict[str, typing.Any]:
|
||||||
|
"""获取所有变量"""
|
||||||
|
if self.variables is None:
|
||||||
|
return {}
|
||||||
|
return self.variables
|
||||||
|
|
||||||
|
|
||||||
class Conversation(pydantic.BaseModel):
|
class Conversation(pydantic.BaseModel):
|
||||||
"""对话,包含于 Session 中,一个 Session 可以有多个历史 Conversation,但只有一个当前使用的 Conversation"""
|
"""对话,包含于 Session 中,一个 Session 可以有多个历史 Conversation,但只有一个当前使用的 Conversation"""
|
||||||
|
|||||||
Reference in New Issue
Block a user