import Runloop from '@runloop/api-client';
const client = new Runloop({
bearerToken: process.env['RUNLOOP_API_KEY'], // This is the default and can be omitted
});
const response = await client.scenarios.runs.downloadLogs('id');
console.log(response);
const content = await response.blob();
console.log(content);"<string>"Download a zip file containing all logs for a Scenario run from the associated devbox.
import Runloop from '@runloop/api-client';
const client = new Runloop({
bearerToken: process.env['RUNLOOP_API_KEY'], // This is the default and can be omitted
});
const response = await client.scenarios.runs.downloadLogs('id');
console.log(response);
const content = await response.blob();
console.log(content);"<string>"Documentation Index
Fetch the complete documentation index at: https://docs.runloop.ai/llms.txt
Use this file to discover all available pages before exploring further.
Was this page helpful?