Used 14 / 600 min

NM
Swap source clip Developer guide
rannoch-fieldcut-04.mp4 · 07:12

Instruction

Rank the three strongest moments in this clip and say who each one is for.

temperature 0.2scene index v2

18/375 tokens

View request

Run this exact request from your own stack. Copy the snippet below and paste it into your service, then swap in a clip of your own. Parameters, limits and error codes are listed in the developer guide ↗

Request Response
Python
1import requests
2
3# Variables
4BASE_URL = "https://api.corrour.dev/v2"
5data = {
6 "asset_id": "9f4c2ad71be5",
7 "prompt": "Rank the three strongest moments in this clip, and why",
8 "temperature": 0.2
9}
10
11# Send request
12response = requests.post(
13 BASE_URL + "/reason", json=data,