Skip to content

Commit

Permalink
swarms
Browse files Browse the repository at this point in the history
Former-commit-id: 62a4135
  • Loading branch information
kyegomez committed Nov 7, 2023
1 parent e01f25a commit 427c5af
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 47 deletions.
48 changes: 1 addition & 47 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
```

------
Expand Down Expand Up @@ -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")

```

---

Expand All @@ -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
Expand Down
File renamed without changes.

0 comments on commit 427c5af

Please sign in to comment.