diff --git a/main/manager-api/src/main/resources/db/changelog/202509191739.sql b/main/manager-api/src/main/resources/db/changelog/202509220958.sql similarity index 63% rename from main/manager-api/src/main/resources/db/changelog/202509191739.sql rename to main/manager-api/src/main/resources/db/changelog/202509220958.sql index 94d267ea..7b79dfd4 100644 --- a/main/manager-api/src/main/resources/db/changelog/202509191739.sql +++ b/main/manager-api/src/main/resources/db/changelog/202509220958.sql @@ -1,20 +1,19 @@ delete from `ai_model_config` where id = 'LLM_XunfeiSparkLLM'; -INSERT INTO `ai_model_config` VALUES ('LLM_XunfeiSparkLLM', 'LLM', '讯飞星火认知大模型', '讯飞星火认知大模型', 0, 1, '{"type": "openai", "model_name": "generalv3.5", "base_url": "https://spark-api-open.xf-yun.com/v1", "api_key": "你的api_key", "temperature": 0.5, "max_tokens": 2048, "top_p": 1.0, "frequency_penalty": 0.0}', 'https://www.xfyun.cn/doc/spark/HTTP%E8%B0%83%E7%94%A8%E6%96%87%E6%A1%A3.html', '讯飞星火认知大模型,支持多轮对话、文本生成等功能', 14, NULL, NULL, NULL, NULL); +INSERT INTO `ai_model_config` VALUES ('LLM_XunfeiSparkLLM', 'LLM', '讯飞星火认知大模型', '讯飞星火认知大模型', 0, 1, '{"type": "openai", "model_name": "generalv3.5", "base_url": "https://spark-api-open.xf-yun.com/v1", "api_password": "你的api_password", "temperature": 0.5, "max_tokens": 2048, "top_p": 1.0, "frequency_penalty": 0.0}', 'https://www.xfyun.cn/doc/spark/HTTP%E8%B0%83%E7%94%A8%E6%96%87%E6%A1%A3.html', '讯飞星火认知大模型,支持多轮对话、文本生成等功能', 14, NULL, NULL, NULL, NULL); -- 更新讯飞星火认知大模型配置的说明文档 UPDATE `ai_model_config` SET `doc_link` = 'https://www.xfyun.cn/doc/spark/HTTP%E8%B0%83%E7%94%A8%E6%96%87%E6%A1%A3.html', `remark` = '讯飞星火认知大模型配置说明: 1. 登录讯飞开放平台 https://www.xfyun.cn/ -2. 创建星火认知大模型应用获取API Key +2. 创建星火认知大模型应用获取API Password 3. 参数说明: - - api_key: API密钥,在讯飞开放平台创建应用后获得 + - api_password: API Password,在讯飞开放平台创建应用后获得 - model_name: 模型名称,支持generalv3.5、generalv3等版本 - base_url: API地址,默认https://spark-api-open.xf-yun.com/v1 - temperature: 温度参数,控制生成随机性,范围0-1,默认0.5 - max_tokens: 最大输出token数,默认2048 - top_p: 核心采样参数,控制词汇多样性,默认1.0 - frequency_penalty: 频率惩罚,降低重复内容,默认0.0 -4. 支持多轮对话、文本生成、知识问答等功能 -5. 兼容OpenAI接口格式,可直接使用现有的OpenAI Provider +4. 每一个模型对应每一个api_password,更改模型时需要查看对应模型的api_password。 ' WHERE `id` = 'LLM_XunfeiSparkLLM'; \ No newline at end of file diff --git a/main/manager-api/src/main/resources/db/changelog/db.changelog-master.yaml b/main/manager-api/src/main/resources/db/changelog/db.changelog-master.yaml index e9f0243c..b5163d92 100755 --- a/main/manager-api/src/main/resources/db/changelog/db.changelog-master.yaml +++ b/main/manager-api/src/main/resources/db/changelog/db.changelog-master.yaml @@ -367,13 +367,6 @@ databaseChangeLog: encoding: utf8 path: classpath:db/changelog/202509191545.sql - - changeSet: - id: 202509191739 - author: fyb - changes: - - sqlFile: - encoding: utf8 - path: classpath:db/changelog/202509191739.sql - changeSet: id: 202509220926 @@ -382,3 +375,11 @@ databaseChangeLog: - sqlFile: encoding: utf8 path: classpath:db/changelog/202509220926.sql + + - changeSet: + id: 202509220958 + author: fyb + changes: + - sqlFile: + encoding: utf8 + path: classpath:db/changelog/202509220958.sql \ No newline at end of file