From 427c5af0e133a00a55d548480b4310442c17c228 Mon Sep 17 00:00:00 2001 From: Kye Date: Mon, 6 Nov 2023 19:18:13 -0500 Subject: [PATCH] swarms Former-commit-id: 62a413579cedbc8e7a0378ed6850454ee42cebe5 --- README.md | 48 +----------------------- positive_med.py => demos/positive_med.py | 0 2 files changed, 1 insertion(+), 47 deletions(-) rename positive_med.py => demos/positive_med.py (100%) diff --git a/README.md b/README.md index a80a307aa..289a4c222 100644 --- a/README.md +++ b/README.md @@ -81,35 +81,6 @@ out = flow.run("Generate a 10,000 word blog on health and wellness.") -``` - - -## `GodMode` -- A powerful tool for concurrent execution of tasks using multiple Language Model (LLM) instances. - -```python -from swarms.swarms import GodMode -from swarms.models import OpenAIChat - -api_key = "" - -llm = OpenAIChat( - openai_api_key=api_key -) - - -llms = [ - llm, - llm, - llm -] - -god_mode = GodMode(llms) - -task = 'Generate a 10,000 word blog on health and wellness.' - -out = god_mode.run(task) -god_mode.print_responses(task) ``` ------ @@ -159,22 +130,6 @@ for task in workflow.tasks: ``` -### `OmniModalAgent` -- OmniModal Agent is an LLM that access to 10+ multi-modal encoders and diffusers! It can generate images, videos, speech, music and so much more, get started with: - -```python -from swarms.models import OpenAIChat -from swarms.agents import OmniModalAgent - -api_key = "SK-" - -llm = OpenAIChat(model_name="gpt-4", openai_api_key=api_key) - -agent = OmniModalAgent(llm) - -agent.run("Create a video of a swarm of fish") - -``` --- @@ -183,8 +138,7 @@ agent.run("Create a video of a swarm of fish") ## 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) and our [contributing board](https://github.com/users/kyegomez/projects/1) +- 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 diff --git a/positive_med.py b/demos/positive_med.py similarity index 100% rename from positive_med.py rename to demos/positive_med.py