Former-commit-id: 15d31f53df
pull/88/head
Kye 1 year ago
parent fc484d2d37
commit 359198e665

2
.gitignore vendored

@ -17,7 +17,7 @@ venv
swarms/agents/.DS_Store swarms/agents/.DS_Store
_build _build
stderr_log.txt
.DS_STORE .DS_STORE
# Byte-compiled / optimized / DLL files # Byte-compiled / optimized / DLL files

@ -161,21 +161,13 @@ agent.run("Create a video of a swarm of fish")
# Documentation # Documentation
- For documentation, go here, [swarms.apac.ai](https://swarms.apac.ai) - 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).
### Optimization Priorities
1. **Reliability**: Increase the reliability of the swarm - obtaining the desired output with a basic and un-detailed input.
2. **Speed**: Reduce the time it takes for the swarm to accomplish tasks by improving the communication layer, critiquing, and self-alignment with meta prompting.
3. **Scalability**: Ensure that the system is asynchronous, concurrent, and self-healing to support scalability. ## Contribute
Our goal is to continuously improve Swarms by following this roadmap, while also being adaptable to new needs and opportunities as they arise.
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).
# License # License
MIT MIT

@ -121,7 +121,7 @@ nav:
- Worker: - Worker:
- Basic: "examples/worker.md" - Basic: "examples/worker.md"
- StackedWorker: "examples/stacked_worker.md" - StackedWorker: "examples/stacked_worker.md"
- Applications: - Applications:
- CustomerSupport: - CustomerSupport:
- Overview: "applications/customer_support.md" - Overview: "applications/customer_support.md"

File diff suppressed because one or more lines are too long

@ -16,7 +16,6 @@ from langchain_experimental.autonomous_agents import AutoGPT
from swarms.agents.message import Message from swarms.agents.message import Message
from swarms.tools.autogpt import ( from swarms.tools.autogpt import (
WebpageQATool, WebpageQATool,
# compile,
process_csv, process_csv,
) )
from swarms.utils.decorators import error_decorator, timing_decorator from swarms.utils.decorators import error_decorator, timing_decorator

Loading…
Cancel
Save