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.
14 lines
350 B
14 lines
350 B
2 years ago
|
from swarms import Swarms
|
||
|
import os
|
||
|
|
||
|
# Retrieve your API key from the environment or replace with your actual key
|
||
|
api_key = ""
|
||
|
|
||
|
# Initialize Swarms with your API key
|
||
|
swarm = Swarms(api_key)
|
||
|
|
||
|
# Define an objective
|
||
|
objective = "Find 20 potential customers for a Swarms based AI Agent automation infrastructure"
|
||
|
|
||
|
# Run Swarms
|
||
|
swarm.run_swarms(objective)
|