-
-
Notifications
You must be signed in to change notification settings - Fork 234
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Your Name
committed
Nov 4, 2024
1 parent
e927669
commit 94c7125
Showing
4 changed files
with
74 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# Swarms 6.0.0 - Performance & Reliability Update 🚀 | ||
|
||
We're excited to announce the release of Swarms 6.0.0, bringing significant improvements to performance, reliability, and developer experience. This release focuses on streamlining core functionalities while enhancing the overall stability of the framework. | ||
|
||
## 📦 Installation | ||
|
||
```bash | ||
pip3 install -U swarms | ||
``` | ||
|
||
## 🌟 Highlights | ||
|
||
### Agent Enhancements | ||
- **Improved RAG Performance**: Significant improvements to Retrieval-Augmented Generation capabilities | ||
- **Enhanced Prompt Generation**: Auto-generate prompt now incorporates name, description, and system prompt for more contextual interactions | ||
- **Streamlined Architecture**: Cleaned up unused code for better performance and maintainability | ||
- **Simplified State Management**: Consolidated state management methods into a single `load()` function | ||
|
||
### Tools & Execution | ||
- **Optimized Environment Management**: Fixed multiple environment instantiation issue | ||
- Environments now initialize once during `__init__` | ||
- **New SwarmRouter Function**: Simplified routing mechanism | ||
- Returns consolidated string output from all agents | ||
- Improved coordination between swarm components | ||
|
||
## 💪 Performance Improvements | ||
- Faster execution times | ||
- Reduced memory footprint | ||
- More reliable logging system | ||
- Lightweight and efficient codebase | ||
|
||
## 🤝 Join Our Community | ||
|
||
### We're Hiring! | ||
Join our growing team! We're currently looking for: | ||
- Agent Engineers | ||
- Developer Relations | ||
- Infrastructure Engineers | ||
- And more! | ||
|
||
### Get Involved | ||
- ⭐ Star our repository | ||
- 🔄 Fork the project | ||
- 🛠 Submit pull requests | ||
- 🐛 Report issues | ||
- 💡 Share your ideas | ||
|
||
### Contact & Support | ||
- 📧 Email: [email protected] | ||
- 🔗 Issues: [GitHub Issues](https://github.com/kyegomez/swarms/issues) | ||
|
||
## 🔜 What's Next? | ||
Have ideas for features, bug fixes, or improvements? We'd love to hear from you! Reach out through our GitHub issues or email us directly. | ||
|
||
--- | ||
|
||
*Thank you to all our contributors and users who make Swarms better every day. Together, we're building the future of swarm intelligence.* | ||
|
||
#SwarmAI #OpenSource #AI #MachineLearning |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" | |
|
||
[tool.poetry] | ||
name = "swarms" | ||
version = "6.0.0" | ||
version = "6.0.1" | ||
description = "Swarms - Pytorch" | ||
license = "MIT" | ||
authors = ["Kye Gomez <[email protected]>"] | ||
|
@@ -78,6 +78,7 @@ aiofiles = "*" | |
swarm-models = "*" | ||
clusterops = "*" | ||
chromadb = "*" | ||
uvloop = "*" | ||
reportlab = "*" | ||
|
||
[tool.poetry.scripts] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters