Skip to main content
Glama
models.py512 B
"""Pydantic models for frame extraction responses.""" from pydantic import BaseModel class FrameInfo(BaseModel): """Metadata for a single extracted frame.""" path: str timestamp: str scene_score: float duration_until_next: str | None = None class ExtractionResponse(BaseModel): """Response from the frame extraction tool.""" status: str # "success" or "error" video_duration: str | None = None frames_extracted: int = 0 frames: list[FrameInfo] = [] message: str

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Slaycaster/loom-local-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server