Skip to content

Commit

Permalink
[CLEANUP]
Browse files Browse the repository at this point in the history
  • Loading branch information
Kye committed Mar 21, 2024
1 parent c90ba1c commit 633ae81
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions full_stack_agent.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from swarms import Agent, AnthropicChat, tool
from swarms import Agent, Anthropic, tool


# Tool
Expand All @@ -17,7 +17,7 @@ def search_api(query: str, max_results: int = 10):
"Generate a transcript for a youtube video on what swarms"
" are!"
),
llm=AnthropicChat(),
llm=Anthropic(),
max_loops="auto",
autosave=True,
dashboard=False,
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion swarms/tools/tool.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from langchain.tools import (
BaseTool,
StructuredTool,
Tool,
StructuredTool,
tool,
) # noqa F401

0 comments on commit 633ae81

Please sign in to comment.