from src.sdk import Shard# Initialize the clientclient = Shard("your_api_key_here")# Interpret a videoresponse = client.interpret("/absolute/path/to/video.mp4")print("Interpretation:", response)
# Analyze how well a video matches a promptprompt = "A person explaining machine learning concepts"analysis = client.gauge_prompt_adherance("/absolute/path/to/video.mp4", prompt)print("Prompt adherence analysis:", analysis)