AI工作流优化

This commit is contained in:
zhang
2026-02-13 18:14:39 +08:00
parent afa3c78180
commit 885d46a4aa
59 changed files with 863 additions and 287 deletions

View File

@@ -61,6 +61,20 @@
<artifactId>s3-transfer-manager</artifactId>
</dependency>
<!-- OpenAI Java SDK -->
<dependency>
<groupId>com.openai</groupId>
<artifactId>openai-java</artifactId>
<version>4.8.0</version>
</dependency>
<!-- OkHttp -->
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>4.12.0</version>
</dependency>
</dependencies>
</project>

View File

@@ -37,4 +37,16 @@ public interface OssConstant {
*/
String IS_HTTPS = "Y";
// 文档解析前缀
String FILE_ID_PREFIX = "fileid://";
// 服务名称
String DASH_SCOPE = "Qwen";
// apiKey 配置名称
String CONFIG_NAME_KEY = "file.api.key";
// apiHost 配置名称
String CONFIG_NAME_URL = "file.api.host";
}