refactor: move detect_image_mime to utils/helpers for reuse

This commit is contained in:
Re-bin
2026-03-06 06:49:09 +00:00
parent 91b3ccee96
commit 3a01fe536a
2 changed files with 15 additions and 14 deletions

View File

@@ -10,19 +10,7 @@ from typing import Any
from nanobot.agent.memory import MemoryStore from nanobot.agent.memory import MemoryStore
from nanobot.agent.skills import SkillsLoader from nanobot.agent.skills import SkillsLoader
from nanobot.utils.helpers import detect_image_mime
def _detect_image_mime(data: bytes) -> str | None:
"""Detect image MIME type from magic bytes, ignoring file extension."""
if data[:8] == b"\x89PNG\r\n\x1a\n":
return "image/png"
if data[:3] == b"\xff\xd8\xff":
return "image/jpeg"
if data[:6] in (b"GIF87a", b"GIF89a"):
return "image/gif"
if data[:4] == b"RIFF" and data[8:12] == b"WEBP":
return "image/webp"
return None
class ContextBuilder: class ContextBuilder:
@@ -153,7 +141,7 @@ Reply directly with text for conversations. Only use the 'message' tool to send
continue continue
raw = p.read_bytes() raw = p.read_bytes()
# Detect real MIME type from magic bytes; fallback to filename guess # Detect real MIME type from magic bytes; fallback to filename guess
mime = _detect_image_mime(raw) or mimetypes.guess_type(path)[0] mime = detect_image_mime(raw) or mimetypes.guess_type(path)[0]
if not mime or not mime.startswith("image/"): if not mime or not mime.startswith("image/"):
continue continue
b64 = base64.b64encode(raw).decode() b64 = base64.b64encode(raw).decode()

View File

@@ -5,6 +5,19 @@ from datetime import datetime
from pathlib import Path from pathlib import Path
def detect_image_mime(data: bytes) -> str | None:
"""Detect image MIME type from magic bytes, ignoring file extension."""
if data[:8] == b"\x89PNG\r\n\x1a\n":
return "image/png"
if data[:3] == b"\xff\xd8\xff":
return "image/jpeg"
if data[:6] in (b"GIF87a", b"GIF89a"):
return "image/gif"
if data[:4] == b"RIFF" and data[8:12] == b"WEBP":
return "image/webp"
return None
def ensure_dir(path: Path) -> Path: def ensure_dir(path: Path) -> Path:
"""Ensure directory exists, return it.""" """Ensure directory exists, return it."""
path.mkdir(parents=True, exist_ok=True) path.mkdir(parents=True, exist_ok=True)