botrun-hatch 5.6.54__tar.gz → 5.6.61__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.
- {botrun_hatch-5.6.54 → botrun_hatch-5.6.61}/PKG-INFO +1 -1
- {botrun_hatch-5.6.54 → botrun_hatch-5.6.61}/botrun_hatch/models/hatch.py +2 -0
- {botrun_hatch-5.6.54 → botrun_hatch-5.6.61}/pyproject.toml +1 -1
- {botrun_hatch-5.6.54 → botrun_hatch-5.6.61}/README.md +0 -0
- {botrun_hatch-5.6.54 → botrun_hatch-5.6.61}/botrun_hatch/__init__.py +0 -0
- {botrun_hatch-5.6.54 → botrun_hatch-5.6.61}/botrun_hatch/models/__init__.py +0 -0
- {botrun_hatch-5.6.54 → botrun_hatch-5.6.61}/botrun_hatch/models/hatch_sharing.py +0 -0
- {botrun_hatch-5.6.54 → botrun_hatch-5.6.61}/botrun_hatch/models/hatch_webhook.py +0 -0
- {botrun_hatch-5.6.54 → botrun_hatch-5.6.61}/botrun_hatch/models/upload_file.py +0 -0
- {botrun_hatch-5.6.54 → botrun_hatch-5.6.61}/botrun_hatch/models/user_setting.py +0 -0
@@ -16,6 +16,7 @@ class Hatch(BaseModel):
|
|
16
16
|
prompt_template (str, optional): 這個就是 system prompt,預設為空字串。
|
17
17
|
google_doc_link (str, optional): 如果 google_doc_link 啟動,會將 google doc 的內容放在 prompt_template 裡面,預設為空字串。
|
18
18
|
enable_google_doc_link (bool, optional): 是否啟用 Google Doc 搜尋,預設為 False。
|
19
|
+
last_sync_gdoc_time (Optional[str], optional): 上一次同步 Google Doc 的 UTC 時間,預設為 None。
|
19
20
|
user_prompt_prefix (str, optional): User prompt 前綴。
|
20
21
|
name (str, optional):
|
21
22
|
is_default (bool, optional):
|
@@ -35,6 +36,7 @@ class Hatch(BaseModel):
|
|
35
36
|
prompt_template: str = ""
|
36
37
|
google_doc_link: str = ""
|
37
38
|
enable_google_doc_link: bool = False
|
39
|
+
last_sync_gdoc_time: Optional[str] = None
|
38
40
|
user_prompt_prefix: str = ""
|
39
41
|
name: str = "" # 将 name 设为可选字段,默认为空字符串
|
40
42
|
is_default: bool = False
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|