From eb14fe0f618d0a39c6cb8c5abd88f7a81c12b83e Mon Sep 17 00:00:00 2001 From: sjay8 Date: Sun, 9 Mar 2025 13:55:11 -0700 Subject: [PATCH] typo fixed --- agentic_security/http_spec.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/agentic_security/http_spec.py b/agentic_security/http_spec.py index 89adb3e..8ce45a8 100644 --- a/agentic_security/http_spec.py +++ b/agentic_security/http_spec.py @@ -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