biblemate 0.2.62__tar.gz → 0.2.63__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.
- {biblemate-0.2.62 → biblemate-0.2.63}/PKG-INFO +1 -1
- {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/core/systems.py +3 -1
- {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/main.py +1 -1
- biblemate-0.2.63/biblemate/version.txt +1 -0
- {biblemate-0.2.62 → biblemate-0.2.63}/biblemate.egg-info/PKG-INFO +1 -1
- {biblemate-0.2.62 → biblemate-0.2.63}/setup.py +1 -1
- biblemate-0.2.62/biblemate/version.txt +0 -1
- {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/README.md +0 -0
- {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/__init__.py +0 -0
- {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/api/add_vector.py +0 -0
- {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/api/api.py +0 -0
- {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/api/bible.py +0 -0
- {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/api/dialogs.py +0 -0
- {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/api/search.py +0 -0
- {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/bible_study_mcp.py +0 -0
- {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/biblematemcp.py +0 -0
- {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/config.py +0 -0
- {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/etextedit/README.md +0 -0
- {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/etextedit/plugins/Extract Bible References.py +0 -0
- {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/etextedit/plugins/Insert Bible Text.py +0 -0
- {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/package_name.txt +0 -0
- {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/requirements.txt +0 -0
- {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/ui/info.py +0 -0
- {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/ui/prompts.py +0 -0
- {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/ui/selection_dialog.py +0 -0
- {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/ui/text_area.py +0 -0
- {biblemate-0.2.62 → biblemate-0.2.63}/biblemate.egg-info/SOURCES.txt +0 -0
- {biblemate-0.2.62 → biblemate-0.2.63}/biblemate.egg-info/dependency_links.txt +0 -0
- {biblemate-0.2.62 → biblemate-0.2.63}/biblemate.egg-info/entry_points.txt +0 -0
- {biblemate-0.2.62 → biblemate-0.2.63}/biblemate.egg-info/requires.txt +0 -0
- {biblemate-0.2.62 → biblemate-0.2.63}/biblemate.egg-info/top_level.txt +0 -0
- {biblemate-0.2.62 → biblemate-0.2.63}/setup.cfg +0 -0
|
@@ -50,7 +50,9 @@ def get_system_master_plan() -> str:
|
|
|
50
50
|
"""
|
|
51
51
|
possible_system_file_path_2 = os.path.join(PACKAGE_PATH, "systems", "create_action_plan.md")
|
|
52
52
|
possible_system_file_path_1 = os.path.join(AGENTMAKE_USER_DIR, "systems", "create_action_plan.md")
|
|
53
|
-
|
|
53
|
+
system_content = readTextFile(possible_system_file_path_2 if os.path.isfile(possible_system_file_path_2) else possible_system_file_path_1)
|
|
54
|
+
return system_content+"""\n
|
|
55
|
+
- Avoid specifying particular Bible versions (e.g., KJV, NIV) or copyrighted materials unless explicitly supported by the tool's documentation. When retrieving Bible verses or materials is required, simply prompt the tools to retrieve them and defer version selection to the tool's native configuration. To maintain a seamless experience, do not solicit version preferences from the user."""
|
|
54
56
|
|
|
55
57
|
def get_system_improve_prompt_2() -> str:
|
|
56
58
|
"""
|
|
@@ -1330,7 +1330,7 @@ Press `Ctrl+C` once or twice until the running process is cancelled, while you a
|
|
|
1330
1330
|
result = await client.get_prompt(specified_prompt[1:], structured_output)
|
|
1331
1331
|
#print(result, "\n\n")
|
|
1332
1332
|
master_plan = result.messages[0].content.text
|
|
1333
|
-
# display info
|
|
1333
|
+
# display info
|
|
1334
1334
|
display_info(console, Markdown(user_request), title="User Request", border_style=get_border_style())
|
|
1335
1335
|
display_info(console, Markdown(master_plan), title="Master Plan", border_style=get_border_style())
|
|
1336
1336
|
else:
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.2.63
|
|
@@ -2,7 +2,7 @@ from setuptools import setup
|
|
|
2
2
|
from setuptools.command.install import install
|
|
3
3
|
import os, shutil, platform, sys
|
|
4
4
|
|
|
5
|
-
version = "0.2.
|
|
5
|
+
version = "0.2.63"
|
|
6
6
|
with open(os.path.join("biblemate", "version.txt"), "w", encoding="utf-8") as fileObj:
|
|
7
7
|
fileObj.write(version)
|
|
8
8
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
0.2.62
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{biblemate-0.2.62 → biblemate-0.2.63}/biblemate/etextedit/plugins/Extract Bible References.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|