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.
|
from swarms.structs.long_agent import LongAgent
|
|
|
|
|
|
if __name__ == "__main__":
|
|
long_agent = LongAgent(
|
|
token_count_per_agent=3000, output_type="final"
|
|
)
|
|
print(long_agent.run([""]))
|