We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac88773 commit f0773b8Copy full SHA for f0773b8
src/mocks/msw/handlers.ts
@@ -106,19 +106,7 @@ export const handlers = [
106
() => new HttpResponse(null, { status: 204 }),
107
),
108
http.get(mswEndpoint("/api/v1/workspaces/:workspace_name/muxes"), () =>
109
- HttpResponse.json([
110
- {
111
- provider_id: "openai",
112
- model: "gpt-3.5-turbo",
113
- matcher_type: "file_regex",
114
- matcher: ".*\\.txt",
115
- },
116
117
- provider_id: "anthropic",
118
- model: "davinci",
119
- matcher_type: "catch_all",
120
121
- ]),
+ HttpResponse.json([]),
122
123
http.put(
124
mswEndpoint("/api/v1/workspaces/:workspace_name/muxes"),
0 commit comments