Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
Kye committed Jul 4, 2023
1 parent baf5985 commit aedc595
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 3 deletions.
4 changes: 4 additions & 0 deletions DOCS/MONETIZATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,10 @@ By offering a variety of services and payment models, Swarms.AI will be able to

* Partnerships with enterprises, massive contracts with performance based fee

* Have discord bot and or slack bot with users personal data, charge subscription.

* each user gets a dedicated ocean instance of all their data so the swarm can query it as needed.

*


3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,8 @@ Here is the detailed roadmap of our priorities and planned features for the near

* Develop Conversational UI with Gradio

* Develop hosted paid API so anybody can use hostedly.
* Integrate omni agent as a worker tool


1. **Multi-Agent Debate Integration**: Integrate multi-agent debate frameworks ([Multi Agent debate](https://github.com/Skytliang/Multi-Agents-Debate) and [Multi agent2 debate](https://github.com/composable-models/llm_multiagent_debate)) to improve decision-making.

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
setup(
name = 'swarms',
packages = find_packages(exclude=[]),
version = '0.3.6',
version = '0.3.7',
license='MIT',
description = 'Swarms - Pytorch',
author = 'Kye Gomez',
Expand Down
2 changes: 1 addition & 1 deletion swarms/agents/swarms.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

# from swarms.agents.workers.auto_agent import MultiModalVisualAgent
# from swarms.agents.workers import multimodal_agent_tool
from swarms.tools.main import Terminal, CodeWriter, CodeEditor, process_csv, WebpageQATool
from swarms.tools import Terminal, CodeWriter, CodeEditor, process_csv, WebpageQATool
from swarms.tools.main import math_tool


Expand Down
2 changes: 2 additions & 0 deletions swarms/tools/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# from swarms.agents.workers import multimodal_agent_tool
from swarms.tools.main import Terminal, CodeWriter, CodeEditor, process_csv, WebpageQATool, math_tool, HumanInputRun, ReadFileTool, WriteFileTool, BaseTool, DuckDuckGoSearchRun
5 changes: 5 additions & 0 deletions swarms/tools/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2276,3 +2276,8 @@ async def _arun(
),


#####==========================================================================> TOOLS
from langchain.tools.human.tool import HumanInputRun
from langchain.tools.file_management.read import ReadFileTool
from langchain.tools.file_management.write import WriteFileTool
from langchain.tools import BaseTool, DuckDuckGoSearchRun

0 comments on commit aedc595

Please sign in to comment.