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.
Files changed (32) hide show
  1. {biblemate-0.2.62 → biblemate-0.2.63}/PKG-INFO +1 -1
  2. {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/core/systems.py +3 -1
  3. {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/main.py +1 -1
  4. biblemate-0.2.63/biblemate/version.txt +1 -0
  5. {biblemate-0.2.62 → biblemate-0.2.63}/biblemate.egg-info/PKG-INFO +1 -1
  6. {biblemate-0.2.62 → biblemate-0.2.63}/setup.py +1 -1
  7. biblemate-0.2.62/biblemate/version.txt +0 -1
  8. {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/README.md +0 -0
  9. {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/__init__.py +0 -0
  10. {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/api/add_vector.py +0 -0
  11. {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/api/api.py +0 -0
  12. {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/api/bible.py +0 -0
  13. {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/api/dialogs.py +0 -0
  14. {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/api/search.py +0 -0
  15. {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/bible_study_mcp.py +0 -0
  16. {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/biblematemcp.py +0 -0
  17. {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/config.py +0 -0
  18. {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/etextedit/README.md +0 -0
  19. {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/etextedit/plugins/Extract Bible References.py +0 -0
  20. {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/etextedit/plugins/Insert Bible Text.py +0 -0
  21. {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/package_name.txt +0 -0
  22. {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/requirements.txt +0 -0
  23. {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/ui/info.py +0 -0
  24. {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/ui/prompts.py +0 -0
  25. {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/ui/selection_dialog.py +0 -0
  26. {biblemate-0.2.62 → biblemate-0.2.63}/biblemate/ui/text_area.py +0 -0
  27. {biblemate-0.2.62 → biblemate-0.2.63}/biblemate.egg-info/SOURCES.txt +0 -0
  28. {biblemate-0.2.62 → biblemate-0.2.63}/biblemate.egg-info/dependency_links.txt +0 -0
  29. {biblemate-0.2.62 → biblemate-0.2.63}/biblemate.egg-info/entry_points.txt +0 -0
  30. {biblemate-0.2.62 → biblemate-0.2.63}/biblemate.egg-info/requires.txt +0 -0
  31. {biblemate-0.2.62 → biblemate-0.2.63}/biblemate.egg-info/top_level.txt +0 -0
  32. {biblemate-0.2.62 → biblemate-0.2.63}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: biblemate
3
- Version: 0.2.62
3
+ Version: 0.2.63
4
4
  Summary: BibleMate AI - Automate Your Bible Study
5
5
  Home-page: https://biblemate.ai
6
6
  Author: Eliran Wong
@@ -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
- return readTextFile(possible_system_file_path_2 if os.path.isfile(possible_system_file_path_2) else possible_system_file_path_1)
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# 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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: biblemate
3
- Version: 0.2.62
3
+ Version: 0.2.63
4
4
  Summary: BibleMate AI - Automate Your Bible Study
5
5
  Home-page: https://biblemate.ai
6
6
  Author: Eliran Wong
@@ -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.62"
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