Skip to content

Commit

Permalink
[CLEANUP]
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Nov 28, 2024
1 parent 205032d commit ab103e9
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 23 deletions.
48 changes: 28 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,26 +156,34 @@ for response in responses:

## **Available Models**

| Model Name | Description |
|---------------------------|-------------------------------------------------------|
| `OpenAIChat` | Chat model for OpenAI's GPT-3 and GPT-4 APIs. |
| `Anthropic` | Model for interacting with Anthropic's APIs. |
| `AzureOpenAI` | Azure's implementation of OpenAI's models. |
| `Dalle3` | Model for generating images from text prompts. |
| `NvidiaLlama31B` | Llama model for causal language generation. |
| `Fuyu` | Multi-modal model for image and text processing. |
| `Gemini` | Multi-modal model for vision and language tasks. |
| `Vilt` | Vision-and-Language Transformer for question answering.|
| `TogetherLLM` | Model for collaborative language tasks. |
| `FireWorksAI` | Model for generating creative content. |
| `ReplicateChat` | Chat model for replicating conversations. |
| `HuggingfaceLLM` | Interface for Hugging Face models. |
| `CogVLMMultiModal` | Multi-modal model for vision and language tasks. |
| `LayoutLMDocumentQA` | Model for document question answering. |
| `GPT4VisionAPI` | Model for analyzing images with GPT-4 capabilities. |
| `LlamaForCausalLM` | Causal language model from the Llama family. |
| `GroundedSAMTwo` | Analyzes and track objects in images. GPU Only |

| Model Name | Import Path |
|---------------------------|------------------------------------------------------|
| BaseLLM | `from swarm_models.base_llm import BaseLLM` |
| BaseMultiModalModel | `from swarm_models.base_multimodal_model import BaseMultiModalModel` |
| GPT4VisionAPI | `from swarm_models.gpt4_vision_api import GPT4VisionAPI` |
| HuggingfaceLLM | `from swarm_models.huggingface import HuggingfaceLLM` |
| LayoutLMDocumentQA | `from swarm_models.layoutlm_document_qa import LayoutLMDocumentQA` |
| llama3Hosted | `from swarm_models.llama3_hosted import llama3Hosted` |
| LavaMultiModal | `from swarm_models.llava import LavaMultiModal` |
| Nougat | `from swarm_models.nougat import Nougat` |
| OpenAIEmbeddings | `from swarm_models.openai_embeddings import OpenAIEmbeddings` |
| OpenAITTS | `from swarm_models.openai_tts import OpenAITTS` |
| GooglePalm | `from swarm_models.palm import GooglePalm as Palm` |
| Anthropic | `from swarm_models.popular_llms import Anthropic as Anthropic` |
| AzureOpenAI | `from swarm_models.popular_llms import AzureOpenAILLM as AzureOpenAI` |
| Cohere | `from swarm_models.popular_llms import CohereChat as Cohere` |
| OctoAIChat | `from swarm_models.popular_llms import OctoAIChat` |
| OpenAIChat | `from swarm_models.popular_llms import OpenAIChatLLM as OpenAIChat` |
| OpenAILLM | `from swarm_models.popular_llms import OpenAILLM as OpenAI` |
| Replicate | `from swarm_models.popular_llms import ReplicateChat as Replicate` |
| QwenVLMultiModal | `from swarm_models.qwen import QwenVLMultiModal` |
| FireWorksAI | `from swarm_models.popular_llms import FireWorksAI` |
| Vilt | `from swarm_models.vilt import Vilt` |
| TogetherLLM | `from swarm_models.together_llm import TogetherLLM` |
| LiteLLMModel | `from swarm_models.lite_llm_model import LiteLLMModel` |
| OpenAIFunctionCaller | `from swarm_models.openai_function_caller import OpenAIFunctionCaller` |
| OllamaModel | `from swarm_models.ollama_model import OllamaModel` |
| GroundedSAMTwo | `from swarm_models.sam_two import GroundedSAMTwo` |


---
Expand Down
2 changes: 1 addition & 1 deletion 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.9"
version = "0.2.0"
description = "Swarm Models - Pytorch"
license = "MIT"
authors = ["Kye Gomez <[email protected]>"]
Expand Down
2 changes: 0 additions & 2 deletions swarm_models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,8 @@
__all__ = [
"BaseLLM",
"BaseMultiModalModel",
# "Fuyu",
"GPT4VisionAPI",
"HuggingfaceLLM",
# "Idefics",
"LayoutLMDocumentQA",
"LavaMultiModal",
"Nougat",
Expand Down

0 comments on commit ab103e9

Please sign in to comment.