typo fixed

This commit is contained in:
sjay8
2025-03-09 13:55:11 -07:00
parent b5985bf810
commit eb14fe0f61
+2 -2
View File
@@ -15,7 +15,7 @@ class Modality(Enum):
FILES = 3
MIXED = 4
# encoding the image data fro
def encode_image_base64_by_url(url: str = "https://github.com/fluidicon.png") -> str:
"""Encode image data to base64 from a URL"""
response = httpx.get(url)
@@ -40,7 +40,7 @@ class LLMSpec(BaseModel):
headers: dict
body: str
has_files: bool = False
has_image: bool = Fa
has_image: bool = False
has_audio: bool = False
@classmethod