botrun-hatch 5.3.151__tar.gz → 5.3.172__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: botrun-hatch
3
- Version: 5.3.151
3
+ Version: 5.3.172
4
4
  Summary:
5
5
  Author: sebastian-hsu
6
6
  Author-email: sebastian.hsu@gmail.com
@@ -9,11 +9,13 @@ class Hatch(BaseModel):
9
9
  @user_prompt_prefix: 每次的 user prompt 前面都會加入這段文字
10
10
  @search_domain_filter: 搜尋的網域限制, 目前只有針對 perplexit 有效, 範例:["*.gov.tw", "-*.gov.cn"]
11
11
  @files: 上傳的檔案,這裡存的是 metadata,真正的檔案會存在 gcs,以 user_id/id 為 key來存,目前只會存extract後純文字的內容
12
+ @agent_model_name: 使用 agent 時的 model 名稱
12
13
  """
13
14
 
14
15
  user_id: str
15
16
  id: str
16
17
  model_name: str = ""
18
+ agent_model_name: str = ""
17
19
  prompt_template: str
18
20
  user_prompt_prefix: str = ""
19
21
  name: str = "" # 将 name 设为可选字段,默认为空字符串
@@ -7,3 +7,4 @@ class UserSetting(BaseModel):
7
7
  audio_reply: bool = False
8
8
  search_vendor: str = "Botrun"
9
9
  search_enabled: bool = False
10
+ api_key: str = ""
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "botrun-hatch"
3
- version = "5.3.151"
3
+ version = "5.3.172"
4
4
  description = ""
5
5
  authors = ["sebastian-hsu <sebastian.hsu@gmail.com>"]
6
6
  readme = "README.md"
File without changes