diff --git a/src/index.ts b/src/index.ts index 6001e5e..c62b836 100644 --- a/src/index.ts +++ b/src/index.ts @@ -90,7 +90,7 @@ export class RunwayML extends Core.APIClient { * API Client for interfacing with the RunwayML API. * * @param {string | undefined} [opts.apiKey=process.env['RUNWAYML_API_SECRET'] ?? undefined] - * @param {string | undefined} [opts.runwayVersion=2024-09-13] + * @param {string | undefined} [opts.runwayVersion=2024-11-06] * @param {string} [opts.baseURL=process.env['RUNWAYML_BASE_URL'] ?? https://api.dev.runwayml.com] - Override the default base URL for the API. * @param {number} [opts.timeout=1 minute] - The maximum amount of time (in milliseconds) the client will wait for a response before timing out. * @param {number} [opts.httpAgent] - An HTTP agent used to manage HTTP(s) connections. @@ -102,7 +102,7 @@ export class RunwayML extends Core.APIClient { constructor({ baseURL = Core.readEnv('RUNWAYML_BASE_URL'), apiKey = Core.readEnv('RUNWAYML_API_SECRET'), - runwayVersion = '2024-09-13', + runwayVersion = '2024-11-06', ...opts }: ClientOptions = {}) { if (apiKey === undefined) {