├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.yml ├── dependabot.yml ├── labeler.yml └── workflows │ ├── code_quality_control.yml │ ├── cos_integration.yml │ ├── docs.yml │ ├── docs_test.yml │ ├── label.yml │ ├── lints.yml │ ├── pr_request_checks.yml │ ├── pull-request-links.yml │ ├── pylint.yml │ ├── python-publish.yml │ ├── quality.yml │ ├── ruff.yml │ ├── run_test.yml │ ├── stale.yml │ ├── test.yml │ ├── testing.yml │ ├── unit-test.yml │ └── welcome.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── cookbook ├── enterprise │ ├── accounting │ │ └── multi_agent │ │ │ ├── accounting_agent_rearrange_book.ipynb │ │ │ └── accounting_agents_for_moa.ipynb │ ├── finance │ │ └── multi_agent │ │ │ ├── Swarms_Cookbook_CryptoAgent.ipynb │ │ │ ├── Swarms_Cookbook_Tickr_Agent.ipynb │ │ │ ├── swarms_finance_10k_analysis_agentrearrange.ipynb │ │ │ └── swarms_finance_10k_analysis_custom.ipynb │ ├── marketing │ │ ├── content_generation │ │ │ └── swarms_spreadsheet_analysis_walkthrough.ipynb │ │ └── news │ │ │ ├── Swarms_Cookbook_NewsAgent.ipynb │ │ │ └── main.py │ └── medical │ │ └── physical_therapy │ │ ├── Swarms_Cookbook_MedInsight_Pro.ipynb │ │ └── swarms_diagnosis_treatment_extreme_athletics.ipynb └── workshops │ └── sep_6_workshop │ ├── 305_fights_tv.py │ ├── agent_example.py │ ├── agent_workspace │ ├── Financial-Analysis-Agent_sas_chicken_eej_state.json │ ├── Spreedsheet-Swarm │ │ └── 305FightsTV-Social-Media-Swarm │ │ │ └── spreedsheet-swarm-spreadsheet_swarm_run_2024-09-06T19:25:59.463407_metadata.json │ └── error.txt │ ├── art_therapy_agent.py │ ├── data.csv │ ├── discord_tool.py │ ├── fight_night.csv │ ├── gptuesday_swarm.py │ ├── groq_agent.py │ ├── ig_tool.py │ ├── model.py │ └── test_rearrange.py └── swarms_logo.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [kyegomez] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry 13 | custom: #Nothing 14 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a detailed report on the bug and it's root cause. Conduct root cause error analysis 4 | title: "[BUG] " 5 | labels: bug 6 | assignees: kyegomez 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is and what the main root cause error is. Test very thoroughly before submitting. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Additional context** 27 | Add any other context about the problem here. 28 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: 'kyegomez' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.yml: -------------------------------------------------------------------------------- 1 |