Retrieve the results of a batch inference job by its job_id
Download the complete results of a batch inference job. Results can be downloaded in multiple formats optimized for different use cases.Documentation Index
Fetch the complete documentation index at: https://docs.sutro.sh/llms.txt
Use this file to discover all available pages before exploring further.
csv - CSV file (zipped for compression)parquet - Parquet filejson - JSON objectKey YOUR_API_KEYExample: Authorization: Key sk_abc123...inputs, {job_id} outputs, cumulative_logprobs (if requested)json_schema when creating the job), the outputs will be JSON strings that conform to your specified schema.
content: The structured output following your JSON schema (can be a text string or JSON string containing an object matching your schema)reasoning_content: The model’s step-by-step reasoning process (string)json.loads or similar on each output JSON, ie json.loads(outputs[0]) to transform from a string to a dict (or equivalent in other languages).