Skip to content

Releases: kyegomez/swarms

0.7.01

06 Jul 22:20
Compare
Choose a tag to compare
clean up toml

0.7.0

06 Jul 22:18
Compare
Choose a tag to compare
verison

0.6.6

06 Jul 22:12
Compare
Choose a tag to compare
clen up requirements

0.6.5

06 Jul 22:09
Compare
Choose a tag to compare
  • swarms/ init clean up

0.6.4

06 Jul 18:32
Compare
Choose a tag to compare
  1. Bug: TypeError: BossNode.__init__() got multiple values for argument 'max_iterations'

    • Root Cause: This error was caused because the BossNode class was incorrectly trying to assign a value to the max_iterations parameter in the BabyAGI initialization.
    • Resolution: Commented out the max_iterations parameter in the BabyAGI initialization inside the BossNode class.
  2. Bug: The same TypeError persisted.

    • Root Cause: The max_iterations parameter was being passed to the BossNode initialization in initialize_boss_node function of Swarms class but it was not handled in the BossNode class.
    • Resolution: Reintroduced the max_iterations parameter in the BossNode class, this time to be used as an attribute of the BossNode itself and not in the BabyAGI initialization.
  3. Bug: AttributeError: 'BossNode' object has no attribute 'create_task'

    • Root Cause: This error was caused because run_swarms method in Swarms class was trying to call a create_task method on a BossNode object, which was not defined in the BossNode class.
    • Resolution: Added a create_task method in BossNode class that returns a dictionary containing the objective.

0.6.0

05 Jul 15:16
Compare
Choose a tag to compare
clean up

0.5.9

05 Jul 14:51
Compare
Choose a tag to compare
clean up

0.5.8

05 Jul 12:31
Compare
Choose a tag to compare
clean uo

0.5.7

05 Jul 12:22
Compare
Choose a tag to compare
clean up

0.5.6

05 Jul 03:53
Compare
Choose a tag to compare
clean up