Skip to content

Commit 0e1e582

Browse files
committed
update snapshots and tests
2 parents 3476d4b + dcf9e6d commit 0e1e582

File tree

73 files changed

+4892
-2342
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+4892
-2342
lines changed

.claude/settings.local.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,10 @@
5555
"Bash(timeout:*)",
5656
"Bash(npx supabase:*)",
5757
"Bash(docker exec:*)",
58-
"WebFetch(domain:ui.shadcn.com)"
58+
"WebFetch(domain:ui.shadcn.com)",
59+
"mcp__playwright__browser_tabs",
60+
"mcp__playwright__browser_close",
61+
"Bash(psql:*)"
5962
],
6063
"deny": []
6164
},

.github/workflows/e2e-test-suite.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ on:
66
- main
77
- justin/get-full-testing-suite
88
- ci/*
9+
pull_request:
10+
branches:
11+
- ci/*
912

1013
jobs:
1114
e2e-tests:

.github/workflows/jawn-deployment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ env:
2222
US_REGION: us-west-2
2323
EU_REGION: eu-west-1
2424
AWS_ACCOUNT_ID: 849596434884
25-
US_TASK_DEFINITION_REVISION: 56
25+
US_TASK_DEFINITION_REVISION: 57
2626
EU_TASK_DEFINITION_REVISION: 31
2727

2828
jobs:

bifrost/lib/clients/jawnTypes/private.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -815,6 +815,7 @@ export interface components {
815815
CreateCloudGatewayCheckoutSessionRequest: {
816816
/** Format: double */
817817
amount: number;
818+
returnUrl?: string;
818819
};
819820
UpgradeToProRequest: {
820821
addons?: {
@@ -16799,9 +16800,11 @@ export interface operations {
1679916800
};
1680016801
MigrateToPro: {
1680116802
responses: {
16802-
/** @description No content */
16803-
204: {
16804-
content: never;
16803+
/** @description Ok */
16804+
200: {
16805+
content: {
16806+
"application/json": unknown;
16807+
};
1680516808
};
1680616809
};
1680716810
};

bifrost/lib/clients/jawnTypes/public.ts

Lines changed: 34 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -395,6 +395,9 @@ export interface paths {
395395
"/v1/trace/log-python": {
396396
post: operations["LogPythonTrace"];
397397
};
398+
"/v1/test/gateway-request": {
399+
post: operations["SendTestRequest"];
400+
};
398401
"/v1/session/has-session": {
399402
get: operations["HasSession"];
400403
};
@@ -2212,6 +2215,7 @@ Json: JsonObject;
22122215
CreateCloudGatewayCheckoutSessionRequest: {
22132216
/** Format: double */
22142217
amount: number;
2218+
returnUrl?: string;
22152219
};
22162220
UpgradeToProRequest: {
22172221
addons?: {
@@ -2400,6 +2404,15 @@ Json: JsonObject;
24002404
};
24012405
}[];
24022406
};
2407+
SendTestRequestResponse: {
2408+
success: boolean;
2409+
response?: string;
2410+
requestId?: string;
2411+
error?: string;
2412+
};
2413+
SendTestRequestRequest: {
2414+
apiKey: string;
2415+
};
24032416
SessionResult: {
24042417
created_at: string;
24052418
latest_request_created_at: string;
@@ -3281,6 +3294,7 @@ Json: JsonObject;
32813294
/** @enum {string} */
32823295
quantization?: "fp4" | "fp8" | "fp16" | "bf16";
32833296
responseFormat?: components["schemas"]["ResponseFormat"];
3297+
requireExplicitRouting?: boolean;
32843298
};
32853299
UserEndpointConfig: {
32863300
region?: string;
@@ -6268,9 +6282,11 @@ export interface operations {
62686282
};
62696283
MigrateToPro: {
62706284
responses: {
6271-
/** @description No content */
6272-
204: {
6273-
content: never;
6285+
/** @description Ok */
6286+
200: {
6287+
content: {
6288+
"application/json": unknown;
6289+
};
62746290
};
62756291
};
62766292
};
@@ -6502,6 +6518,21 @@ export interface operations {
65026518
};
65036519
};
65046520
};
6521+
SendTestRequest: {
6522+
requestBody: {
6523+
content: {
6524+
"application/json": components["schemas"]["SendTestRequestRequest"];
6525+
};
6526+
};
6527+
responses: {
6528+
/** @description Ok */
6529+
200: {
6530+
content: {
6531+
"application/json": components["schemas"]["SendTestRequestResponse"];
6532+
};
6533+
};
6534+
};
6535+
};
65056536
HasSession: {
65066537
responses: {
65076538
/** @description Ok */

docs/docs.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
},
2424
{
2525
"group": "AI Gateway",
26-
"tag": "EARLY ACCESS",
2726
"pages": [
2827
"gateway/overview",
2928
"gateway/provider-routing",
@@ -43,12 +42,14 @@
4342
"group": "Concepts",
4443
"pages": [
4544
"gateway/concepts/prompt-caching",
46-
"gateway/web-search"
45+
"gateway/web-search",
46+
"gateway/concepts/error-handling"
4747
]
4848
},
4949
{
5050
"group": "Integrations",
5151
"pages": [
52+
"gateway/integrations/langchain",
5253
"gateway/integrations/semantic-kernel"
5354
]
5455
}

0 commit comments

Comments
 (0)