Skip to content

Commit

Permalink
Embedding model to distilbert-base-uncased (#201)
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh-XT authored May 3, 2023
1 parent 9920945 commit 718e5ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AgentLLM.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def __init__(self, agent_name: str = "AgentLLM", primary_objective=None):
else:
self.embedding_function = (
embedding_functions.SentenceTransformerEmbeddingFunction(
model_name="all-MiniLM-L6-v2"
model_name="distilbert-base-uncased"
)
)
self.chroma_persist_dir = f"agents/{agent_name}/memories"
Expand Down

0 comments on commit 718e5ef

Please sign in to comment.