-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* perf: login check * doc * perf: llm model config * perf: team clb config
- Loading branch information
Showing
49 changed files
with
1,632 additions
and
1,523 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
packages/service/core/ai/config/embedding/text-embedding-ada-002.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"provider": "OpenAI", | ||
"model": "text-embedding-ada-002", | ||
"name": "text-embedding-ada-002", | ||
|
||
"defaultToken": 512, // 默认分块 token | ||
"maxToken": 3000, // 最大分块 token | ||
"weight": 0, // 权重 | ||
|
||
"charsPointsPrice": 0 // 积分/1k token | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"provider": "OpenAI", | ||
"model": "gpt-4o-mini", | ||
"name": "GPT-4o-mini", // alias | ||
|
||
"maxContext": 125000, // 最大上下文 | ||
"maxResponse": 16000, // 最大回复 | ||
"quoteMaxToken": 60000, // 最大引用 | ||
"maxTemperature": 1.2, // 最大温度 | ||
"presencePenaltyRange": [-2, 2], // 惩罚系数范围 | ||
"frequencyPenaltyRange": [-2, 2], // 频率惩罚系数范围 | ||
"responseFormatList": ["text", "json_object", "json_schema"], // 响应格式 | ||
"showStopSign": true, // 是否显示停止符号 | ||
|
||
"vision": true, // 是否支持图片识别 | ||
"toolChoice": true, // 是否支持工具调用 | ||
"functionCall": false, // 是否支持函数调用(一般都可以 false 了,基本不用了) | ||
"defaultSystemChatPrompt": "", // 默认系统提示 | ||
|
||
"datasetProcess": true, // 用于知识库文本处理 | ||
"usedInClassify": true, // 用于问题分类 | ||
"customCQPrompt": "", // 自定义问题分类提示 | ||
"usedInExtractFields": true, // 用于提取字段 | ||
"customExtractPrompt": "", // 自定义提取提示 | ||
"usedInToolCall": true, // 用于工具调用 | ||
"usedInQueryExtension": true, // 用于问题优化 | ||
|
||
"defaultConfig": {}, // 额外的自定义 body | ||
"fieldMap": {}, // body 字段映射 | ||
|
||
"censor": false, // 是否开启敏感词过滤 | ||
"charsPointsPrice": 0 // n 积分/1k token | ||
} |
6 changes: 6 additions & 0 deletions
6
packages/service/core/ai/config/rerank/bge-reranker-v2-m3.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"provider": "BAAI", | ||
"model": "bge-reranker-v2-m3", | ||
"name": "bge-reranker-v2-m3", | ||
"charsPointsPrice": 0 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"provider": "OpenAI", | ||
"model": "whisper-1", | ||
"name": "whisper-1", | ||
"charsPointsPrice": 0 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"provider": "OpenAI", | ||
"model": "tts-1", | ||
"name": "TTS1", | ||
"charsPointsPrice": 0, | ||
"voices": [ | ||
{ | ||
"label": "Alloy", | ||
"value": "alloy" | ||
}, | ||
{ | ||
"label": "Echo", | ||
"value": "echo" | ||
}, | ||
{ | ||
"label": "Fable", | ||
"value": "fable" | ||
}, | ||
{ | ||
"label": "Onyx", | ||
"value": "onyx" | ||
}, | ||
{ | ||
"label": "Nova", | ||
"value": "nova" | ||
}, | ||
{ | ||
"label": "Shimmer", | ||
"value": "shimmer" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.