Skip to content

Commit

Permalink
Name change
Browse files Browse the repository at this point in the history
  • Loading branch information
adithya-aiplanet authored and tarun-aiplanet committed May 27, 2024
1 parent f77bc7d commit ce885b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/beyondllm/llms/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
from .azurechat import AzureOpenAIModel
from .ollama import OllamaModel
from .multimodal import GeminiMultiModal
from .gpt4o import GPT4OpenAIModel
from .gpt4o import GPT4oOpenAIModel
4 changes: 2 additions & 2 deletions src/beyondllm/llms/gpt4o.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
import subprocess, sys

@dataclass
class GPT4OpenAIModel:
class GPT4oOpenAIModel:
"""
Class representing a Chat Language Model (LLM) model using OpenAI GPT-4 with Vision capabilities
Class representing a Chat Language Model (LLM) model using OpenAI GPT-4o with Vision capabilities
Example:
from beyondllm.llms import GPT4OpenAIModel
llm = GPT4OpenAIModel(model="gpt-4o", api_key = "", model_kwargs = {"max_tokens":512,"temperature":0.1})
Expand Down

0 comments on commit ce885b1

Please sign in to comment.