Skip to content

Commit 631e87e

Browse files
nit
1 parent cb871c8 commit 631e87e

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

docs/snippets/schemas/v3/index.schema.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1835,7 +1835,7 @@
18351835
"type": "string",
18361836
"format": "url",
18371837
"pattern": "^https?:\\/\\/[^\\s/$.?#].[^\\s]*$",
1838-
"description": "Base URL of the OpenAI-compatible API endpoint.",
1838+
"description": "Base URL of the OpenAI-compatible chat completions API endpoint.",
18391839
"examples": [
18401840
"http://localhost:8080/v1"
18411841
]
@@ -2641,7 +2641,7 @@
26412641
"type": "string",
26422642
"format": "url",
26432643
"pattern": "^https?:\\/\\/[^\\s/$.?#].[^\\s]*$",
2644-
"description": "Base URL of the OpenAI-compatible API endpoint.",
2644+
"description": "Base URL of the OpenAI-compatible chat completions API endpoint.",
26452645
"examples": [
26462646
"http://localhost:8080/v1"
26472647
]

docs/snippets/schemas/v3/languageModel.schema.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,7 @@
673673
"type": "string",
674674
"format": "url",
675675
"pattern": "^https?:\\/\\/[^\\s/$.?#].[^\\s]*$",
676-
"description": "Base URL of the OpenAI-compatible API endpoint.",
676+
"description": "Base URL of the OpenAI-compatible chat completions API endpoint.",
677677
"examples": [
678678
"http://localhost:8080/v1"
679679
]
@@ -1479,7 +1479,7 @@
14791479
"type": "string",
14801480
"format": "url",
14811481
"pattern": "^https?:\\/\\/[^\\s/$.?#].[^\\s]*$",
1482-
"description": "Base URL of the OpenAI-compatible API endpoint.",
1482+
"description": "Base URL of the OpenAI-compatible chat completions API endpoint.",
14831483
"examples": [
14841484
"http://localhost:8080/v1"
14851485
]

packages/schemas/src/v3/index.schema.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1834,7 +1834,7 @@ const schema = {
18341834
"type": "string",
18351835
"format": "url",
18361836
"pattern": "^https?:\\/\\/[^\\s/$.?#].[^\\s]*$",
1837-
"description": "Base URL of the OpenAI-compatible API endpoint.",
1837+
"description": "Base URL of the OpenAI-compatible chat completions API endpoint.",
18381838
"examples": [
18391839
"http://localhost:8080/v1"
18401840
]
@@ -2640,7 +2640,7 @@ const schema = {
26402640
"type": "string",
26412641
"format": "url",
26422642
"pattern": "^https?:\\/\\/[^\\s/$.?#].[^\\s]*$",
2643-
"description": "Base URL of the OpenAI-compatible API endpoint.",
2643+
"description": "Base URL of the OpenAI-compatible chat completions API endpoint.",
26442644
"examples": [
26452645
"http://localhost:8080/v1"
26462646
]

packages/schemas/src/v3/index.type.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -822,7 +822,7 @@ export interface OpenAICompatibleLanguageModel {
822822
env: string;
823823
};
824824
/**
825-
* Base URL of the OpenAI-compatible API endpoint.
825+
* Base URL of the OpenAI-compatible chat completions API endpoint.
826826
*/
827827
baseUrl: string;
828828
}

packages/schemas/src/v3/languageModel.schema.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,7 @@ const schema = {
672672
"type": "string",
673673
"format": "url",
674674
"pattern": "^https?:\\/\\/[^\\s/$.?#].[^\\s]*$",
675-
"description": "Base URL of the OpenAI-compatible API endpoint.",
675+
"description": "Base URL of the OpenAI-compatible chat completions API endpoint.",
676676
"examples": [
677677
"http://localhost:8080/v1"
678678
]
@@ -1478,7 +1478,7 @@ const schema = {
14781478
"type": "string",
14791479
"format": "url",
14801480
"pattern": "^https?:\\/\\/[^\\s/$.?#].[^\\s]*$",
1481-
"description": "Base URL of the OpenAI-compatible API endpoint.",
1481+
"description": "Base URL of the OpenAI-compatible chat completions API endpoint.",
14821482
"examples": [
14831483
"http://localhost:8080/v1"
14841484
]

packages/schemas/src/v3/languageModel.type.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ export interface OpenAICompatibleLanguageModel {
394394
env: string;
395395
};
396396
/**
397-
* Base URL of the OpenAI-compatible API endpoint.
397+
* Base URL of the OpenAI-compatible chat completions API endpoint.
398398
*/
399399
baseUrl: string;
400400
}

schemas/v3/languageModel.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@
374374
"type": "string",
375375
"format": "url",
376376
"pattern": "^https?:\\/\\/[^\\s/$.?#].[^\\s]*$",
377-
"description": "Base URL of the OpenAI-compatible API endpoint.",
377+
"description": "Base URL of the OpenAI-compatible chat completions API endpoint.",
378378
"examples": [
379379
"http://localhost:8080/v1"
380380
]

0 commit comments

Comments
 (0)