Skip to content

Commit 9ee8a61

Browse files
committed
fix(fern/apis/api/openapi.json): Update model and provider field types and values
This commit makes changes to the `openapi.json` file in the `fern/apis/api` directory. Specifically, it updates the schema of the `model` and `provider` fields. The `model` field type is changed from `string` to `object`, and an enum of possible model values is added, including various versions of "Gemini" and "Google". The `provider` field now has an enum specifying "google" as the only possible value.
1 parent db957b1 commit 9ee8a61

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

fern/apis/api/openapi.json

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19492,11 +19492,27 @@
1949219492
"provider": {
1949319493
"type": "string",
1949419494
"description": "The provider of the knowledge base",
19495+
"enum": [
19496+
"google"
19497+
],
1949519498
"example": "google"
1949619499
},
1949719500
"model": {
19498-
"type": "string",
19501+
"type": "object",
1949919502
"description": "The model to use for the knowledge base",
19503+
"enum": [
19504+
"gemini-2.0-flash-thinking-exp",
19505+
"gemini-2.0-pro-exp-02-05",
19506+
"gemini-2.0-flash",
19507+
"gemini-2.0-flash-lite-preview-02-05",
19508+
"gemini-2.0-flash-exp",
19509+
"gemini-2.0-flash-realtime-exp",
19510+
"gemini-1.5-flash",
19511+
"gemini-1.5-flash-002",
19512+
"gemini-1.5-pro",
19513+
"gemini-1.5-pro-002",
19514+
"gemini-1.0-pro"
19515+
],
1950019516
"example": "gemini-1.5-flash"
1950119517
},
1950219518
"description": {

0 commit comments

Comments
 (0)