You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
swarms/example.py

22 lines
521 B

1 year ago
from langchain.llms import OpenAIChat
1 year ago
from swarms import Worker
1 year ago
1 year ago
llm = OpenAIChat(
1 year ago
openai_api_key="",
1 year ago
temperature=0.5,
)
1 year ago
node = Worker(
llm=llm,
1 year ago
ai_name="Optimus Prime",
1 year ago
openai_api_key="",
ai_role="Worker in a swarm",
1 year ago
external_tools=None,
human_in_the_loop=False,
temperature=0.5,
1 year ago
)
1 year ago
1 year ago
task = "What were the winning boston marathon times for the past 5 years (ending in 2022)? Generate a table of the year, name, country of origin, and times."
response = node.run(task)
print(response)