Skip to content

Commit b0e61fa

Browse files
feat(api): Switch default environment to production (#188)
1 parent 95efbc5 commit b0e61fa

File tree

4 files changed

+1168
-16
lines changed

4 files changed

+1168
-16
lines changed

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 52
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/julep-ai-inc-dash%2Fjulep-ea124be3fdbca158d246aecc6f6870c5ca44a27a7a27543b29c1bcaeb93e51bc.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/julep-ai-inc-dash%2Fjulep-a707ace7212c4b8c3a63c93c36a42e1f77d7ca0969d1c2258560d0021c473a8a.yml

src/resources/agents/tools.ts

Lines changed: 144 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ export interface ToolListResponse {
136136
| ToolListResponse.BrowserbaseGetSessionIntegrationDef
137137
| ToolListResponse.BrowserbaseCompleteSessionIntegrationDef
138138
| ToolListResponse.BrowserbaseGetSessionLiveURLsIntegrationDef
139+
| ToolListResponse.BrowserbaseGetSessionConnectURLIntegrationDef
139140
| ToolListResponse.RemoteBrowserIntegrationDef
140141
| ToolListResponse.LlamaParseIntegrationDef
141142
| ToolListResponse.FfmpegIntegrationDef
@@ -666,6 +667,41 @@ export namespace ToolListResponse {
666667
}
667668
}
668669

670+
/**
671+
* browserbase get session connect url integration definition
672+
*/
673+
export interface BrowserbaseGetSessionConnectURLIntegrationDef {
674+
arguments?: BrowserbaseGetSessionConnectURLIntegrationDef.Arguments | null;
675+
676+
method?: 'get_connect_url';
677+
678+
provider?: 'browserbase';
679+
680+
/**
681+
* The setup parameters for the browserbase integration
682+
*/
683+
setup?: BrowserbaseGetSessionConnectURLIntegrationDef.Setup | null;
684+
}
685+
686+
export namespace BrowserbaseGetSessionConnectURLIntegrationDef {
687+
export interface Arguments {
688+
id: string;
689+
}
690+
691+
/**
692+
* The setup parameters for the browserbase integration
693+
*/
694+
export interface Setup {
695+
api_key: string;
696+
697+
project_id: string;
698+
699+
api_url?: string | null;
700+
701+
connect_url?: string | null;
702+
}
703+
}
704+
669705
/**
670706
* The integration definition for the remote browser
671707
*/
@@ -1002,6 +1038,7 @@ export interface ToolCreateParams {
10021038
| ToolCreateParams.BrowserbaseGetSessionIntegrationDef
10031039
| ToolCreateParams.BrowserbaseCompleteSessionIntegrationDef
10041040
| ToolCreateParams.BrowserbaseGetSessionLiveURLsIntegrationDef
1041+
| ToolCreateParams.BrowserbaseGetSessionConnectURLIntegrationDef
10051042
| ToolCreateParams.RemoteBrowserIntegrationDef
10061043
| ToolCreateParams.LlamaParseIntegrationDef
10071044
| ToolCreateParams.FfmpegIntegrationDef
@@ -1532,6 +1569,41 @@ export namespace ToolCreateParams {
15321569
}
15331570
}
15341571

1572+
/**
1573+
* browserbase get session connect url integration definition
1574+
*/
1575+
export interface BrowserbaseGetSessionConnectURLIntegrationDef {
1576+
arguments?: BrowserbaseGetSessionConnectURLIntegrationDef.Arguments | null;
1577+
1578+
method?: 'get_connect_url';
1579+
1580+
provider?: 'browserbase';
1581+
1582+
/**
1583+
* The setup parameters for the browserbase integration
1584+
*/
1585+
setup?: BrowserbaseGetSessionConnectURLIntegrationDef.Setup | null;
1586+
}
1587+
1588+
export namespace BrowserbaseGetSessionConnectURLIntegrationDef {
1589+
export interface Arguments {
1590+
id: string;
1591+
}
1592+
1593+
/**
1594+
* The setup parameters for the browserbase integration
1595+
*/
1596+
export interface Setup {
1597+
api_key: string;
1598+
1599+
project_id: string;
1600+
1601+
api_url?: string | null;
1602+
1603+
connect_url?: string | null;
1604+
}
1605+
}
1606+
15351607
/**
15361608
* The integration definition for the remote browser
15371609
*/
@@ -1857,6 +1929,7 @@ export interface ToolUpdateParams {
18571929
| ToolUpdateParams.BrowserbaseGetSessionIntegrationDefUpdate
18581930
| ToolUpdateParams.BrowserbaseCompleteSessionIntegrationDefUpdate
18591931
| ToolUpdateParams.BrowserbaseGetSessionLiveURLsIntegrationDefUpdate
1932+
| ToolUpdateParams.BrowserbaseGetSessionConnectURLIntegrationDefUpdate
18601933
| ToolUpdateParams.RemoteBrowserIntegrationDefUpdate
18611934
| ToolUpdateParams.LlamaParseIntegrationDefUpdate
18621935
| ToolUpdateParams.FfmpegIntegrationDefUpdate
@@ -2399,6 +2472,41 @@ export namespace ToolUpdateParams {
23992472
}
24002473
}
24012474

2475+
/**
2476+
* browserbase get session connect url integration definition
2477+
*/
2478+
export interface BrowserbaseGetSessionConnectURLIntegrationDefUpdate {
2479+
arguments?: BrowserbaseGetSessionConnectURLIntegrationDefUpdate.Arguments | null;
2480+
2481+
method?: 'get_connect_url';
2482+
2483+
provider?: 'browserbase';
2484+
2485+
/**
2486+
* The setup parameters for the browserbase integration
2487+
*/
2488+
setup?: BrowserbaseGetSessionConnectURLIntegrationDefUpdate.Setup | null;
2489+
}
2490+
2491+
export namespace BrowserbaseGetSessionConnectURLIntegrationDefUpdate {
2492+
export interface Arguments {
2493+
id?: string | null;
2494+
}
2495+
2496+
/**
2497+
* The setup parameters for the browserbase integration
2498+
*/
2499+
export interface Setup {
2500+
api_key?: string | null;
2501+
2502+
api_url?: string | null;
2503+
2504+
connect_url?: string | null;
2505+
2506+
project_id?: string | null;
2507+
}
2508+
}
2509+
24022510
/**
24032511
* The integration definition for the remote browser
24042512
*/
@@ -2743,6 +2851,7 @@ export interface ToolResetParams {
27432851
| ToolResetParams.BrowserbaseGetSessionIntegrationDef
27442852
| ToolResetParams.BrowserbaseCompleteSessionIntegrationDef
27452853
| ToolResetParams.BrowserbaseGetSessionLiveURLsIntegrationDef
2854+
| ToolResetParams.BrowserbaseGetSessionConnectURLIntegrationDef
27462855
| ToolResetParams.RemoteBrowserIntegrationDef
27472856
| ToolResetParams.LlamaParseIntegrationDef
27482857
| ToolResetParams.FfmpegIntegrationDef
@@ -3273,6 +3382,41 @@ export namespace ToolResetParams {
32733382
}
32743383
}
32753384

3385+
/**
3386+
* browserbase get session connect url integration definition
3387+
*/
3388+
export interface BrowserbaseGetSessionConnectURLIntegrationDef {
3389+
arguments?: BrowserbaseGetSessionConnectURLIntegrationDef.Arguments | null;
3390+
3391+
method?: 'get_connect_url';
3392+
3393+
provider?: 'browserbase';
3394+
3395+
/**
3396+
* The setup parameters for the browserbase integration
3397+
*/
3398+
setup?: BrowserbaseGetSessionConnectURLIntegrationDef.Setup | null;
3399+
}
3400+
3401+
export namespace BrowserbaseGetSessionConnectURLIntegrationDef {
3402+
export interface Arguments {
3403+
id: string;
3404+
}
3405+
3406+
/**
3407+
* The setup parameters for the browserbase integration
3408+
*/
3409+
export interface Setup {
3410+
api_key: string;
3411+
3412+
project_id: string;
3413+
3414+
api_url?: string | null;
3415+
3416+
connect_url?: string | null;
3417+
}
3418+
}
3419+
32763420
/**
32773421
* The integration definition for the remote browser
32783422
*/

0 commit comments

Comments
 (0)