Skip to content

Commit

Permalink
result
Browse files Browse the repository at this point in the history
  • Loading branch information
femto committed Feb 7, 2025
1 parent 41734b6 commit dcd26ab
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
12 changes: 6 additions & 6 deletions config/config.yaml.example
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@ mem0:
on_disk: true
embedding_model_dims: 768

graph_store:
provider: "neo4j"
config:
url: "${NEO4J_URL}"
username: "${NEO4J_USERNAME}"
password: "${NEO4J_PASSWORD}"
# graph_store:
# provider: "neo4j"
# config:
# url: "${NEO4J_URL}"
# username: "${NEO4J_USERNAME}"
# password: "${NEO4J_PASSWORD}"


Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,7 @@ async def solve_question(item):
return answer

model = "gpt-4o"
#model = "claude"
#model = "default"

llm = create_llm_provider(config.models.get(model))
Expand Down
1 change: 1 addition & 0 deletions minion/configs/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ class Config(BaseModel):
llm: LLMConfig
models: Dict[str, LLMConfig]
ell: Dict[str, Any] = Field(default_factory=dict)
mem0: Dict[str, Any] = Field(default_factory=dict)

class Config:
populate_by_name = True
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jinja2
intercode-bench
rpyc
mem0ai
ollama
embedchain>=0.1.120
nltk
matplotlib
Expand Down

0 comments on commit dcd26ab

Please sign in to comment.