From ce885b133e39855306400b206f6759888e03cc87 Mon Sep 17 00:00:00 2001 From: adithya-aiplanet Date: Fri, 24 May 2024 18:17:45 +0530 Subject: [PATCH] Name change --- src/beyondllm/llms/__init__.py | 2 +- src/beyondllm/llms/gpt4o.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/beyondllm/llms/__init__.py b/src/beyondllm/llms/__init__.py index 5eded8b..58ed340 100644 --- a/src/beyondllm/llms/__init__.py +++ b/src/beyondllm/llms/__init__.py @@ -5,4 +5,4 @@ from .azurechat import AzureOpenAIModel from .ollama import OllamaModel from .multimodal import GeminiMultiModal -from .gpt4o import GPT4OpenAIModel \ No newline at end of file +from .gpt4o import GPT4oOpenAIModel \ No newline at end of file diff --git a/src/beyondllm/llms/gpt4o.py b/src/beyondllm/llms/gpt4o.py index b44bf6c..f69fa27 100644 --- a/src/beyondllm/llms/gpt4o.py +++ b/src/beyondllm/llms/gpt4o.py @@ -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})