Skip to content

Commit

Permalink
feat(llamabot)πŸ“š: Add new document store components
Browse files Browse the repository at this point in the history
- Include BM25DocStore, LanceDBDocStore, and ChromaDBDocStore in the components module.
- Expose new document stores in the public API.
  • Loading branch information
ericmjl committed Dec 16, 2024
1 parent 2099e6b commit ebe6adf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions llamabot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
from .recorder import PromptRecorder
from .components.messages import user, system
from .components.tools import tool
from .components.docstore import BM25DocStore, LanceDBDocStore, ChromaDBDocStore


# Configure logger
Expand Down Expand Up @@ -61,6 +62,9 @@
"tool",
"user",
"system",
"BM25DocStore",
"LanceDBDocStore",
"ChromaDBDocStore",
]

# Ensure ~/.llamabot directory exists
Expand Down

0 comments on commit ebe6adf

Please sign in to comment.