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.malt import MALT
|
|
|
|
malt = MALT(
|
|
max_loops=1,
|
|
preset_agents=True,
|
|
)
|
|
|
|
malt.run(
|
|
task="Prove that the sum of the first n natural numbers is n(n+1)/2."
|
|
)
|
|
|
|
print(malt.conversation.return_json())
|