Skip to content

Commit

Permalink
[CLEANUP]
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Nov 5, 2024
1 parent cd418b6 commit 32b0af6
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,3 +192,10 @@ for response in responses:
Swarm Models is released under the [MIT License](https://github.com/The-Swarm-Corporation/swarm-models/LICENSE).

---


# Todo

- [ ] Add cohere models command r
- [ ] Add gemini and google ai studio
- [ ] Integrate ollama extensively
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "swarm-models"
version = "0.1.1"
version = "0.1.3"
description = "Swarm Models - Pytorch"
license = "MIT"
authors = ["Kye Gomez <kye@apac.ai>"]
Expand All @@ -23,14 +23,14 @@ classifiers = [

[tool.poetry.dependencies]
python = "^3.10"
swarms = "*"
torch = "*"
transformers = "*"
diffusers = "*"
loguru = "*"
pydantic = "*"
langchain-community = "0.0.29"
together = "*"
python-dotenv = "*"



Expand Down
4 changes: 2 additions & 2 deletions swarm_models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from swarm_models.base_llm import BaseLLM # noqa: E402
from swarm_models.base_multimodal_model import BaseMultiModalModel
from swarm_models.fuyu import Fuyu # noqa: E402
# from swarm_models.fuyu import Fuyu # noqa: E402
from swarm_models.gpt4_vision_api import GPT4VisionAPI # noqa: E402
from swarm_models.huggingface import HuggingfaceLLM # noqa: E402
from swarm_models.idefics import Idefics # noqa: E402
Expand Down Expand Up @@ -46,7 +46,7 @@
__all__ = [
"BaseLLM",
"BaseMultiModalModel",
"Fuyu",
# "Fuyu",
"GPT4VisionAPI",
"HuggingfaceLLM",
"Idefics",
Expand Down

0 comments on commit 32b0af6

Please sign in to comment.