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

12 lines
298 B

from swarms import Worker
2 years ago
node = Worker(
2 years ago
openai_api_key="",
ai_name="Optimus Prime",
2 years ago
)
2 years 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)