Skip to content

Commit

Permalink
feat(api): Switch default environment to production (#188)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] committed Jan 16, 2025
1 parent 95efbc5 commit b0e61fa
Show file tree
Hide file tree
Showing 4 changed files with 1,168 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 52
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/julep-ai-inc-dash%2Fjulep-ea124be3fdbca158d246aecc6f6870c5ca44a27a7a27543b29c1bcaeb93e51bc.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/julep-ai-inc-dash%2Fjulep-a707ace7212c4b8c3a63c93c36a42e1f77d7ca0969d1c2258560d0021c473a8a.yml
144 changes: 144 additions & 0 deletions src/resources/agents/tools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ export interface ToolListResponse {
| ToolListResponse.BrowserbaseGetSessionIntegrationDef
| ToolListResponse.BrowserbaseCompleteSessionIntegrationDef
| ToolListResponse.BrowserbaseGetSessionLiveURLsIntegrationDef
| ToolListResponse.BrowserbaseGetSessionConnectURLIntegrationDef
| ToolListResponse.RemoteBrowserIntegrationDef
| ToolListResponse.LlamaParseIntegrationDef
| ToolListResponse.FfmpegIntegrationDef
Expand Down Expand Up @@ -666,6 +667,41 @@ export namespace ToolListResponse {
}
}

/**
* browserbase get session connect url integration definition
*/
export interface BrowserbaseGetSessionConnectURLIntegrationDef {
arguments?: BrowserbaseGetSessionConnectURLIntegrationDef.Arguments | null;

method?: 'get_connect_url';

provider?: 'browserbase';

/**
* The setup parameters for the browserbase integration
*/
setup?: BrowserbaseGetSessionConnectURLIntegrationDef.Setup | null;
}

export namespace BrowserbaseGetSessionConnectURLIntegrationDef {
export interface Arguments {
id: string;
}

/**
* The setup parameters for the browserbase integration
*/
export interface Setup {
api_key: string;

project_id: string;

api_url?: string | null;

connect_url?: string | null;
}
}

/**
* The integration definition for the remote browser
*/
Expand Down Expand Up @@ -1002,6 +1038,7 @@ export interface ToolCreateParams {
| ToolCreateParams.BrowserbaseGetSessionIntegrationDef
| ToolCreateParams.BrowserbaseCompleteSessionIntegrationDef
| ToolCreateParams.BrowserbaseGetSessionLiveURLsIntegrationDef
| ToolCreateParams.BrowserbaseGetSessionConnectURLIntegrationDef
| ToolCreateParams.RemoteBrowserIntegrationDef
| ToolCreateParams.LlamaParseIntegrationDef
| ToolCreateParams.FfmpegIntegrationDef
Expand Down Expand Up @@ -1532,6 +1569,41 @@ export namespace ToolCreateParams {
}
}

/**
* browserbase get session connect url integration definition
*/
export interface BrowserbaseGetSessionConnectURLIntegrationDef {
arguments?: BrowserbaseGetSessionConnectURLIntegrationDef.Arguments | null;

method?: 'get_connect_url';

provider?: 'browserbase';

/**
* The setup parameters for the browserbase integration
*/
setup?: BrowserbaseGetSessionConnectURLIntegrationDef.Setup | null;
}

export namespace BrowserbaseGetSessionConnectURLIntegrationDef {
export interface Arguments {
id: string;
}

/**
* The setup parameters for the browserbase integration
*/
export interface Setup {
api_key: string;

project_id: string;

api_url?: string | null;

connect_url?: string | null;
}
}

/**
* The integration definition for the remote browser
*/
Expand Down Expand Up @@ -1857,6 +1929,7 @@ export interface ToolUpdateParams {
| ToolUpdateParams.BrowserbaseGetSessionIntegrationDefUpdate
| ToolUpdateParams.BrowserbaseCompleteSessionIntegrationDefUpdate
| ToolUpdateParams.BrowserbaseGetSessionLiveURLsIntegrationDefUpdate
| ToolUpdateParams.BrowserbaseGetSessionConnectURLIntegrationDefUpdate
| ToolUpdateParams.RemoteBrowserIntegrationDefUpdate
| ToolUpdateParams.LlamaParseIntegrationDefUpdate
| ToolUpdateParams.FfmpegIntegrationDefUpdate
Expand Down Expand Up @@ -2399,6 +2472,41 @@ export namespace ToolUpdateParams {
}
}

/**
* browserbase get session connect url integration definition
*/
export interface BrowserbaseGetSessionConnectURLIntegrationDefUpdate {
arguments?: BrowserbaseGetSessionConnectURLIntegrationDefUpdate.Arguments | null;

method?: 'get_connect_url';

provider?: 'browserbase';

/**
* The setup parameters for the browserbase integration
*/
setup?: BrowserbaseGetSessionConnectURLIntegrationDefUpdate.Setup | null;
}

export namespace BrowserbaseGetSessionConnectURLIntegrationDefUpdate {
export interface Arguments {
id?: string | null;
}

/**
* The setup parameters for the browserbase integration
*/
export interface Setup {
api_key?: string | null;

api_url?: string | null;

connect_url?: string | null;

project_id?: string | null;
}
}

/**
* The integration definition for the remote browser
*/
Expand Down Expand Up @@ -2743,6 +2851,7 @@ export interface ToolResetParams {
| ToolResetParams.BrowserbaseGetSessionIntegrationDef
| ToolResetParams.BrowserbaseCompleteSessionIntegrationDef
| ToolResetParams.BrowserbaseGetSessionLiveURLsIntegrationDef
| ToolResetParams.BrowserbaseGetSessionConnectURLIntegrationDef
| ToolResetParams.RemoteBrowserIntegrationDef
| ToolResetParams.LlamaParseIntegrationDef
| ToolResetParams.FfmpegIntegrationDef
Expand Down Expand Up @@ -3273,6 +3382,41 @@ export namespace ToolResetParams {
}
}

/**
* browserbase get session connect url integration definition
*/
export interface BrowserbaseGetSessionConnectURLIntegrationDef {
arguments?: BrowserbaseGetSessionConnectURLIntegrationDef.Arguments | null;

method?: 'get_connect_url';

provider?: 'browserbase';

/**
* The setup parameters for the browserbase integration
*/
setup?: BrowserbaseGetSessionConnectURLIntegrationDef.Setup | null;
}

export namespace BrowserbaseGetSessionConnectURLIntegrationDef {
export interface Arguments {
id: string;
}

/**
* The setup parameters for the browserbase integration
*/
export interface Setup {
api_key: string;

project_id: string;

api_url?: string | null;

connect_url?: string | null;
}
}

/**
* The integration definition for the remote browser
*/
Expand Down
Loading

0 comments on commit b0e61fa

Please sign in to comment.