scribe-llm 0.4.0__py3-none-any.whl

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 (57) hide show
  1. scribe/__init__.py +15 -0
  2. scribe/cli.py +785 -0
  3. scribe/compare.py +89 -0
  4. scribe/config.py +362 -0
  5. scribe/discovery.py +102 -0
  6. scribe/documents.py +229 -0
  7. scribe/evolve/__init__.py +1 -0
  8. scribe/evolve/evaluate.py +317 -0
  9. scribe/evolve/spi.py +181 -0
  10. scribe/grammar.py +173 -0
  11. scribe/llm_adapter.py +877 -0
  12. scribe/mail.py +276 -0
  13. scribe/memory/__init__.py +29 -0
  14. scribe/memory/hybrid.py +102 -0
  15. scribe/memory/rag.py +394 -0
  16. scribe/memory/sme.py +364 -0
  17. scribe/prompts.py +311 -0
  18. scribe/pulse.py +111 -0
  19. scribe/reasoning_gate.py +72 -0
  20. scribe/seed/constitution.md +17 -0
  21. scribe/seed/eval/MANIFEST.sha256 +2 -0
  22. scribe/seed/eval/grounded.jsonl +8 -0
  23. scribe/seed/eval/tasks.jsonl +20 -0
  24. scribe/session.py +380 -0
  25. scribe/skills/__init__.py +21 -0
  26. scribe/skills/deep-research/SKILL.md +68 -0
  27. scribe/skills/wiki-memory/SKILL.md +86 -0
  28. scribe/skills/writer/SKILL.md +63 -0
  29. scribe/skills_executor.py +285 -0
  30. scribe/static/.gitkeep +0 -0
  31. scribe/status.py +137 -0
  32. scribe/templates/editor.html +636 -0
  33. scribe/templates/index.html +632 -0
  34. scribe/templates/print.html +43 -0
  35. scribe/tools/__init__.py +103 -0
  36. scribe/tools/checkpoint.py +190 -0
  37. scribe/tools/fs.py +207 -0
  38. scribe/tools/sandbox.py +162 -0
  39. scribe/tools/shell.py +129 -0
  40. scribe/tools/web.py +364 -0
  41. scribe/trace.py +84 -0
  42. scribe/tui.py +1075 -0
  43. scribe/tui_app.py +415 -0
  44. scribe/ui/__init__.py +22 -0
  45. scribe/ui/console.py +139 -0
  46. scribe/ui/logo.py +31 -0
  47. scribe/ui/progress.py +144 -0
  48. scribe/ui/theme.py +77 -0
  49. scribe/vault.py +80 -0
  50. scribe/web.py +643 -0
  51. scribe/wiki.py +482 -0
  52. scribe/worldmodel.py +104 -0
  53. scribe_llm-0.4.0.dist-info/METADATA +266 -0
  54. scribe_llm-0.4.0.dist-info/RECORD +57 -0
  55. scribe_llm-0.4.0.dist-info/WHEEL +4 -0
  56. scribe_llm-0.4.0.dist-info/entry_points.txt +2 -0
  57. scribe_llm-0.4.0.dist-info/licenses/LICENSE +21 -0
scribe/__init__.py ADDED
@@ -0,0 +1,15 @@
1
+ """
2
+ Scribe - Autonomous Research & Writing Agent
3
+
4
+ Universal TUI agent that connects to any llama.cpp server and uses
5
+ RAG + semantic memory to research, write, and remember across sessions.
6
+ """
7
+
8
+ __version__ = "0.3.0"
9
+ __author__ = "Peterofovik"
10
+
11
+ from scribe.config import ScribeConfig
12
+ from scribe.llm_adapter import LLMAdapter
13
+ from scribe.session import SessionManager
14
+
15
+ __all__ = ["LLMAdapter", "ScribeConfig", "SessionManager"]