修复知识库文件解析和删除异常

This commit is contained in:
baiyanyun
2026-07-13 09:08:07 +08:00
parent f8ee4023ff
commit a69bb4b8a8
10 changed files with 175 additions and 62 deletions

View File

@@ -1,5 +1,8 @@
package com.xspaceagi.file.sdk;
import java.io.IOException;
import java.io.InputStream;
public interface IFileAccessService {
String getFileUrlWithAk(String fileUrl);
@@ -9,4 +12,6 @@ public interface IFileAccessService {
void checkFileUrlAk(String uri, String ak);
void checkFileUrlAk0(String uri, String ak);
InputStream openFileStream(String fileUrl) throws IOException;
}