okb 1.1.2__tar.gz → 1.1.2a1__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 (48) hide show
  1. {okb-1.1.2 → okb-1.1.2a1}/PKG-INFO +1 -1
  2. {okb-1.1.2 → okb-1.1.2a1}/pyproject.toml +1 -1
  3. {okb-1.1.2 → okb-1.1.2a1}/README.md +0 -0
  4. {okb-1.1.2 → okb-1.1.2a1}/okb/__init__.py +0 -0
  5. {okb-1.1.2 → okb-1.1.2a1}/okb/cli.py +0 -0
  6. {okb-1.1.2 → okb-1.1.2a1}/okb/config.py +0 -0
  7. {okb-1.1.2 → okb-1.1.2a1}/okb/data/init.sql +0 -0
  8. {okb-1.1.2 → okb-1.1.2a1}/okb/http_server.py +0 -0
  9. {okb-1.1.2 → okb-1.1.2a1}/okb/ingest.py +0 -0
  10. {okb-1.1.2 → okb-1.1.2a1}/okb/llm/__init__.py +0 -0
  11. {okb-1.1.2 → okb-1.1.2a1}/okb/llm/analyze.py +0 -0
  12. {okb-1.1.2 → okb-1.1.2a1}/okb/llm/base.py +0 -0
  13. {okb-1.1.2 → okb-1.1.2a1}/okb/llm/cache.py +0 -0
  14. {okb-1.1.2 → okb-1.1.2a1}/okb/llm/consolidate.py +0 -0
  15. {okb-1.1.2 → okb-1.1.2a1}/okb/llm/enrich.py +0 -0
  16. {okb-1.1.2 → okb-1.1.2a1}/okb/llm/extractors/__init__.py +0 -0
  17. {okb-1.1.2 → okb-1.1.2a1}/okb/llm/extractors/base.py +0 -0
  18. {okb-1.1.2 → okb-1.1.2a1}/okb/llm/extractors/cross_doc.py +0 -0
  19. {okb-1.1.2 → okb-1.1.2a1}/okb/llm/extractors/dedup.py +0 -0
  20. {okb-1.1.2 → okb-1.1.2a1}/okb/llm/extractors/entity.py +0 -0
  21. {okb-1.1.2 → okb-1.1.2a1}/okb/llm/extractors/todo.py +0 -0
  22. {okb-1.1.2 → okb-1.1.2a1}/okb/llm/filter.py +0 -0
  23. {okb-1.1.2 → okb-1.1.2a1}/okb/llm/providers.py +0 -0
  24. {okb-1.1.2 → okb-1.1.2a1}/okb/local_embedder.py +0 -0
  25. {okb-1.1.2 → okb-1.1.2a1}/okb/mcp_server.py +0 -0
  26. {okb-1.1.2 → okb-1.1.2a1}/okb/migrate.py +0 -0
  27. {okb-1.1.2 → okb-1.1.2a1}/okb/migrations/0001.initial-schema.sql +0 -0
  28. {okb-1.1.2 → okb-1.1.2a1}/okb/migrations/0002.sync-state.sql +0 -0
  29. {okb-1.1.2 → okb-1.1.2a1}/okb/migrations/0003.structured-fields.sql +0 -0
  30. {okb-1.1.2 → okb-1.1.2a1}/okb/migrations/0004.tokens.sql +0 -0
  31. {okb-1.1.2 → okb-1.1.2a1}/okb/migrations/0005.database-metadata.sql +0 -0
  32. {okb-1.1.2 → okb-1.1.2a1}/okb/migrations/0006.llm-cache.sql +0 -0
  33. {okb-1.1.2 → okb-1.1.2a1}/okb/migrations/0008.enrichment.sql +0 -0
  34. {okb-1.1.2 → okb-1.1.2a1}/okb/migrations/0009.entity-consolidation.sql +0 -0
  35. {okb-1.1.2 → okb-1.1.2a1}/okb/migrations/0010.token-id.sql +0 -0
  36. {okb-1.1.2 → okb-1.1.2a1}/okb/modal_embedder.py +0 -0
  37. {okb-1.1.2 → okb-1.1.2a1}/okb/modal_llm.py +0 -0
  38. {okb-1.1.2 → okb-1.1.2a1}/okb/plugins/__init__.py +0 -0
  39. {okb-1.1.2 → okb-1.1.2a1}/okb/plugins/base.py +0 -0
  40. {okb-1.1.2 → okb-1.1.2a1}/okb/plugins/registry.py +0 -0
  41. {okb-1.1.2 → okb-1.1.2a1}/okb/plugins/sources/__init__.py +0 -0
  42. {okb-1.1.2 → okb-1.1.2a1}/okb/plugins/sources/dropbox_paper.py +0 -0
  43. {okb-1.1.2 → okb-1.1.2a1}/okb/plugins/sources/github.py +0 -0
  44. {okb-1.1.2 → okb-1.1.2a1}/okb/plugins/sources/todoist.py +0 -0
  45. {okb-1.1.2 → okb-1.1.2a1}/okb/rescan.py +0 -0
  46. {okb-1.1.2 → okb-1.1.2a1}/okb/scripts/__init__.py +0 -0
  47. {okb-1.1.2 → okb-1.1.2a1}/okb/scripts/watch.py +0 -0
  48. {okb-1.1.2 → okb-1.1.2a1}/okb/tokens.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: okb
3
- Version: 1.1.2
3
+ Version: 1.1.2a1
4
4
  Summary: Personal knowledge base with semantic search for LLMs
5
5
  Requires-Python: >=3.11
6
6
  Classifier: Programming Language :: Python :: 3
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "okb"
3
- version = "1.1.2"
3
+ version = "1.1.2a1"
4
4
  description = "Personal knowledge base with semantic search for LLMs"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
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
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
File without changes
File without changes
File without changes
File without changes