Skip to content

Commit

Permalink
remove poetry dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bboynton97 committed Oct 11, 2024
1 parent e6b9f6a commit 919e0a4
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions agentstack/templates/crewai/tools/mem0.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
from mem0 import Memory
from dotenv import load_dotenv

load_dotenv()

config = {
"vector_store": {
"provider": "chroma",
"config": {
"collection_name": "chatbot_memory",
"path": "./chroma_db",
},
},
}

memory = Memory.from_config(config)
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ requires-python = ">=3.11"
[project.urls]
"Homepage" = "https://your-repo-url"

[tool.poetry.dependencies]
[project.dependencies]
python = "^3.11"
typer = "^0.12.5"
inquirer = "^3.4.0"
Expand Down

0 comments on commit 919e0a4

Please sign in to comment.