pull/506/merge
evelynmitchell 1 year ago committed by GitHub
commit 000d912136
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -103,7 +103,7 @@ llm = OpenAIChat(
agent = Agent(llm=llm, max_loops=1, autosave=True, dashboard=True) agent = Agent(llm=llm, max_loops=1, autosave=True, dashboard=True)
# Run the workflow on a task # Run the workflow on a task
agent.run("Generate a 10,000 word blog on health and wellness.") agent.run("Generate a 10,000 word article on health and wellness for men under 50.")
``` ```
@ -114,7 +114,7 @@ agent.run("Generate a 10,000 word blog on health and wellness.")
import os import os
from dotenv import load_dotenv from dotenv import load_dotenv
from swarms import Agent, OpenAIChat from swarms import Agent, OpenAIChat
from playground.memory.chromadb_example import ChromaDB from swarms.playground.memory.chromadb_example import ChromaDB
import logging import logging
import os import os
import uuid import uuid

@ -0,0 +1,3 @@
from playground.memory import * # noqa: E402, F403

@ -53,7 +53,8 @@ docstring_parser = "0.16"
fastapi = "*" fastapi = "*"
openai = ">=1.30.1,<2.0" openai = ">=1.30.1,<2.0"
termcolor = "*" termcolor = "*"
chromadb = "*"
anthropic = "*"
[tool.poetry.group.lint.dependencies] [tool.poetry.group.lint.dependencies]
black = ">=23.1,<25.0" black = ">=23.1,<25.0"

@ -27,4 +27,6 @@ mypy-protobuf>=3.0.0
pytest>=8.1.1 pytest>=8.1.1
termcolor>=2.4.0 termcolor>=2.4.0
pandas>=2.2.2 pandas>=2.2.2
fastapi>=0.110.1 fastapi>=0.110.1
chromadb
anthropic
Loading…
Cancel
Save