biblemate 0.2.58__tar.gz → 0.2.60__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.58 → biblemate-0.2.60}/PKG-INFO +1 -1
  2. {biblemate-0.2.58 → biblemate-0.2.60}/biblemate/bible_study_mcp.py +1 -1
  3. {biblemate-0.2.58 → biblemate-0.2.60}/biblemate/main.py +1 -1
  4. {biblemate-0.2.58 → biblemate-0.2.60}/biblemate/requirements.txt +1 -1
  5. biblemate-0.2.60/biblemate/version.txt +1 -0
  6. {biblemate-0.2.58 → biblemate-0.2.60}/biblemate.egg-info/PKG-INFO +1 -1
  7. {biblemate-0.2.58 → biblemate-0.2.60}/biblemate.egg-info/requires.txt +1 -1
  8. {biblemate-0.2.58 → biblemate-0.2.60}/setup.py +1 -1
  9. biblemate-0.2.58/biblemate/version.txt +0 -1
  10. {biblemate-0.2.58 → biblemate-0.2.60}/biblemate/README.md +0 -0
  11. {biblemate-0.2.58 → biblemate-0.2.60}/biblemate/__init__.py +0 -0
  12. {biblemate-0.2.58 → biblemate-0.2.60}/biblemate/api/add_vector.py +0 -0
  13. {biblemate-0.2.58 → biblemate-0.2.60}/biblemate/api/api.py +0 -0
  14. {biblemate-0.2.58 → biblemate-0.2.60}/biblemate/api/bible.py +0 -0
  15. {biblemate-0.2.58 → biblemate-0.2.60}/biblemate/api/dialogs.py +0 -0
  16. {biblemate-0.2.58 → biblemate-0.2.60}/biblemate/api/search.py +0 -0
  17. {biblemate-0.2.58 → biblemate-0.2.60}/biblemate/biblematemcp.py +0 -0
  18. {biblemate-0.2.58 → biblemate-0.2.60}/biblemate/config.py +0 -0
  19. {biblemate-0.2.58 → biblemate-0.2.60}/biblemate/core/systems.py +0 -0
  20. {biblemate-0.2.58 → biblemate-0.2.60}/biblemate/etextedit/README.md +0 -0
  21. {biblemate-0.2.58 → biblemate-0.2.60}/biblemate/etextedit/plugins/Extract Bible References.py +0 -0
  22. {biblemate-0.2.58 → biblemate-0.2.60}/biblemate/etextedit/plugins/Insert Bible Text.py +0 -0
  23. {biblemate-0.2.58 → biblemate-0.2.60}/biblemate/package_name.txt +0 -0
  24. {biblemate-0.2.58 → biblemate-0.2.60}/biblemate/ui/info.py +0 -0
  25. {biblemate-0.2.58 → biblemate-0.2.60}/biblemate/ui/prompts.py +0 -0
  26. {biblemate-0.2.58 → biblemate-0.2.60}/biblemate/ui/selection_dialog.py +0 -0
  27. {biblemate-0.2.58 → biblemate-0.2.60}/biblemate/ui/text_area.py +0 -0
  28. {biblemate-0.2.58 → biblemate-0.2.60}/biblemate.egg-info/SOURCES.txt +0 -0
  29. {biblemate-0.2.58 → biblemate-0.2.60}/biblemate.egg-info/dependency_links.txt +0 -0
  30. {biblemate-0.2.58 → biblemate-0.2.60}/biblemate.egg-info/entry_points.txt +0 -0
  31. {biblemate-0.2.58 → biblemate-0.2.60}/biblemate.egg-info/top_level.txt +0 -0
  32. {biblemate-0.2.58 → biblemate-0.2.60}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: biblemate
3
- Version: 0.2.58
3
+ Version: 0.2.60
4
4
  Summary: BibleMate AI - Automate Your Bible Study
5
5
  Home-page: https://biblemate.ai
6
6
  Author: Eliran Wong
@@ -1409,7 +1409,7 @@ def simple_bible_study(request:str) -> PromptMessage:
1409
1409
  """Perform a simple bible study task"""
1410
1410
  global PromptMessage, TextContent
1411
1411
  prompt_text = f"""You are a bible study agent. You check the user request, under the `User Request` section, and resolve it with the following steps in order:
1412
- 1. Call tool 'retrieve_english_bible_verses' or `retrieve_bible_chapter` for Bible text,
1412
+ 1. Call tool 'retrieve_bible_verses' or `retrieve_bible_chapter` for Bible text,
1413
1413
  2. Call tool 'retrieve_bible_cross_references' for Bible cross-references,
1414
1414
  3. Call tool 'study_old_testament_themes' for studying old testament themes or 'study_new_testament_themes' for studying new testament themes, and
1415
1415
  4. Call tool 'write_bible_theology' to explain its theology.
@@ -57,7 +57,7 @@ if not sys.stdin.isatty():
57
57
 
58
58
  # write to the `config.py` file temporarily for the MCP server to pick it up
59
59
  config.backend = args.backend if args.backend else os.getenv("DEFAULT_AI_BACKEND") if os.getenv("DEFAULT_AI_BACKEND") else "googleai"
60
- config.model = args.model if args.model else os.getenv("DEFAULT_AI_MODEL") if os.getenv("DEFAULT_AI_MODEL") else "gemini-2.5-flash"
60
+ config.model = args.model if args.model else "gemini-2.5-flash" if not args.backend and not os.getenv("DEFAULT_AI_BACKEND") else None
61
61
  with open(CONFIG_FILE_BACKUP, "a", encoding="utf-8") as fileObj:
62
62
  fileObj.write(f'''\nconfig.backend="{config.backend}"''')
63
63
  fileObj.write(f'''\nconfig.model="{config.model}"''')
@@ -1,4 +1,4 @@
1
- agentmake>=1.1.97
1
+ agentmake>=1.1.99
2
2
  agentmakemcp>=0.0.8
3
3
  fastmcp[cli]
4
4
  rich
@@ -0,0 +1 @@
1
+ 0.2.60
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: biblemate
3
- Version: 0.2.58
3
+ Version: 0.2.60
4
4
  Summary: BibleMate AI - Automate Your Bible Study
5
5
  Home-page: https://biblemate.ai
6
6
  Author: Eliran Wong
@@ -1,4 +1,4 @@
1
- agentmake>=1.1.97
1
+ agentmake>=1.1.99
2
2
  agentmakemcp>=0.0.8
3
3
  alive-progress
4
4
  click
@@ -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.58"
5
+ version = "0.2.60"
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.58
File without changes