Former-commit-id: 1162271fc6
jojo-group-chat
Kye 1 year ago
parent ac0c91225b
commit f04092ad07

@ -118,14 +118,13 @@ agent.run("Create a video of a swarm of fish")
---
## Documentation
- For documentation, go here, [swarms.apac.ai](https://swarms.apac.ai)
## Contribute
We're always looking for contributors to help us improve and expand this project. If you're interested, please check out our [Contributing Guidelines](CONTRIBUTING.md).
We're always looking for contributors to help us improve and expand this project. If you're interested, please check out our [Contributing Guidelines](CONTRIBUTING.md) and our [contributing board](https://github.com/users/kyegomez/projects/1)
# License
# License
MIT

@ -13,7 +13,7 @@ from typing import Any, Callable, Dict, List, Optional, Tuple, Generator
from termcolor import colored
import inspect
import random
from swarms.tools.tool import BaseTool
# from swarms.tools.tool import BaseTool
# Constants
@ -103,7 +103,7 @@ class Flow:
retry_interval: int = 1,
interactive: bool = False,
dashboard: bool = False,
tools: List[BaseTool] = None,
# tools: List[BaseTool] = None,
dynamic_temperature: bool = False,
**kwargs: Any,
):
@ -121,7 +121,7 @@ class Flow:
self.interactive = interactive
self.dashboard = dashboard
self.dynamic_temperature = dynamic_temperature
self.tools = tools
# self.tools = tools
def provide_feedback(self, feedback: str) -> None:
"""Allow users to provide feedback on the responses."""

Loading…
Cancel
Save