Skip to content
This repository has been archived by the owner on Jun 3, 2024. It is now read-only.

Commit

Permalink
fix: Added missing 'config' argument in ChromaVectorStore instantiation
Browse files Browse the repository at this point in the history
- Added the 'config' argument to the instantiation of ChromaVectorStore to prevent exceptions and ensure proper initialization.
  • Loading branch information
teleprint-me committed Sep 18, 2023
1 parent 727eef1 commit a11330c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pygptprompt/chat.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ def main(session_name, config_path, prompt, chat, embed, provider, database_path
vector_store: ChromaVectorStore = ChromaVectorStore(
collection_name=session_name,
database_path=database_path,
config=config,
chat_model=chat_model,
)

Expand Down

0 comments on commit a11330c

Please sign in to comment.