File size: 12,305 Bytes
e5d8d3a 3cd2062 e5d8d3a 033070f e5d8d3a 033070f e5d8d3a 605cef2 e5d8d3a 033070f e5d8d3a 033070f e5d8d3a 033070f e5d8d3a 033070f e5d8d3a 033070f e5d8d3a 033070f e5d8d3a 033070f e5d8d3a 033070f e5d8d3a 7025ec7 e5d8d3a 2b3577d c8f3989 e5d8d3a 7025ec7 e5d8d3a 7025ec7 e5d8d3a 7025ec7 e5d8d3a 7025ec7 e5d8d3a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 |
/*
Attn API and Types
*/
import * as d3 from "d3";
import URLHandler from "../utils/URLHandler";
import {cleanSpecials} from "../utils/Util";
import {AnalyzeResponse, AnalyzeResult, TokenWithOffset} from "./generatedSchemas";
export type FrontendToken = TokenWithOffset & { bpe_merged?: boolean };
export interface FrontendAnalyzeResult extends AnalyzeResult {
bpe_strings: FrontendToken[];
originalTokens: FrontendToken[];
mergedTokens: FrontendToken[];
originalToMergedMap: number[];
originalText: string; // 前端注入的原始文本(来自 request.text)
}
// AnalyzedText 已废弃,请使用 FrontendAnalyzeResult
export type AnalyzedText = FrontendAnalyzeResult; // @deprecated 使用 FrontendAnalyzeResult
// 类型别名:AnalysisData 用于 demo 存储场景(保存后的数据),AnalyzeResponse 用于 API 分析场景(保存前的数据)
export type AnalysisData = AnalyzeResponse;
export type { AnalyzeResponse, TokenWithOffset };
export class TextAnalysisAPI {
private adminToken: string | null = null;
constructor(private baseURL: string = null) {
if (this.baseURL == null) {
this.baseURL = URLHandler.basicURL();
}
}
/**
* 设置admin token
*/
public setAdminToken(token: string | null): void {
this.adminToken = token;
}
/**
* 获取请求头(如果有admin token,自动添加到请求头)
*/
private getHeaders(additionalHeaders?: Record<string, string>): Record<string, string> {
const headers: Record<string, string> = {
"Content-type": "application/json; charset=UTF-8",
...additionalHeaders
};
// 如果有admin token,自动添加
if (this.adminToken) {
headers['X-Admin-Token'] = this.adminToken;
}
return headers;
}
public list_demos(path?: string): Promise<{ path: string, items: Array<{type: 'folder'|'file', name: string, path: string}> }> {
const url = this.baseURL + '/api/list_demos' + (path ? `?path=${encodeURIComponent(path)}` : '');
return d3.json(url);
}
public save_demo(name: string, data: AnalyzeResponse, path: string = '/', overwrite: boolean = false): Promise<{ success: boolean, exists?: boolean, message?: string, file?: string }> {
return d3.json(this.baseURL + '/api/save_demo', {
method: "POST",
body: JSON.stringify({ name, data, path, overwrite }),
headers: this.getHeaders()
});
}
public delete_demo(file: string): Promise<{ success: boolean, message?: string }> {
return d3.json(this.baseURL + '/api/delete_demo', {
method: "POST",
body: JSON.stringify({ file }),
headers: this.getHeaders()
});
}
public move_demo(file: string, targetPath: string): Promise<{ success: boolean, message?: string }> {
return d3.json(this.baseURL + '/api/move_demo', {
method: "POST",
body: JSON.stringify({ file, target_path: targetPath }),
headers: this.getHeaders()
});
}
public move_folder(path: string, targetPath: string): Promise<{ success: boolean, message?: string }> {
return d3.json(this.baseURL + '/api/move_demo', {
method: "POST",
body: JSON.stringify({ path, target_path: targetPath }),
headers: this.getHeaders()
});
}
public rename_demo(file: string, newName: string): Promise<{ success: boolean, message?: string }> {
return d3.json(this.baseURL + '/api/rename_demo', {
method: "POST",
body: JSON.stringify({ file, new_name: newName }),
headers: this.getHeaders()
});
}
public rename_folder(path: string, newName: string): Promise<{ success: boolean, message?: string }> {
return d3.json(this.baseURL + '/api/rename_folder', {
method: "POST",
body: JSON.stringify({ path, new_name: newName }),
headers: this.getHeaders()
});
}
public delete_folder(path: string): Promise<{ success: boolean, message?: string }> {
return d3.json(this.baseURL + '/api/delete_folder', {
method: "POST",
body: JSON.stringify({ path }),
headers: this.getHeaders()
});
}
public list_all_folders(): Promise<{ folders: string[] }> {
return d3.json(this.baseURL + '/api/list_all_folders');
}
public create_folder(parentPath: string, folderName: string): Promise<{ success: boolean, message?: string }> {
return d3.json(this.baseURL + '/api/create_folder', {
method: "POST",
body: JSON.stringify({ parent_path: parentPath, folder_name: folderName }),
headers: this.getHeaders()
});
}
/**
* 构建分析请求的 payload
*/
private buildAnalyzePayload(
model: string,
text: string,
bitmask: number[] = null,
stream: boolean = false
): any {
const payload: any = {
model,
text: cleanSpecials(text)
};
if (bitmask) {
payload['bitmask'] = bitmask;
}
if (stream) {
payload['stream'] = true;
}
return payload;
}
public analyze(
model: string,
text: string,
bitmask: number[] = null,
stream: boolean = false,
onProgress?: (step: number, totalSteps: number, stage: string, percentage?: number) => void
): Promise<AnalyzeResponse> {
// 如果启用流式响应,使用SSE方式
if (stream) {
return this.analyzeWithProgress(model, text, onProgress);
}
// 否则使用传统的JSON响应
const payload = this.buildAnalyzePayload(model, text, bitmask, stream);
return d3.json(this.baseURL + '/api/analyze', {
method: "POST",
body: JSON.stringify(payload),
headers: {
"Content-type": "application/json; charset=UTF-8"
}
}).then((response: any) => {
// 检查统一的错误格式
if (response && response.success === false) {
throw new Error(response.message || '分析失败');
}
return response as AnalyzeResponse;
});
}
/**
* 从 URL 提取文本内容
*
* @param url 要提取文本的 URL
* @returns Promise<{success: boolean, text?: string, url?: string, char_count?: number, message?: string}>
*/
public fetchUrlText(url: string): Promise<{success: boolean, text?: string, url?: string, char_count?: number, message?: string}> {
return d3.json(this.baseURL + '/api/fetch_url', {
method: "POST",
body: JSON.stringify({ url }),
headers: {
"Content-type": "application/json; charset=UTF-8"
}
}).then((response: any) => {
// 检查统一的错误格式
if (response && response.success === false) {
throw new Error(response.message || 'URL 文本提取失败');
}
return response;
});
}
/**
* 获取可用模型列表
*/
public getAvailableModels(): Promise<{ success: boolean, models: string[] }> {
return d3.json(this.baseURL + '/api/available_models');
}
/**
* 获取当前模型
*/
public getCurrentModel(): Promise<{
success: boolean,
model: string,
loading: boolean,
device_type: 'cpu' | 'cuda' | 'mps',
use_int8: boolean,
use_bfloat16: boolean
}> {
return d3.json(this.baseURL + '/api/current_model');
}
/**
* 切换模型(需要管理员权限)
*/
public switchModel(
model: string,
use_int8?: boolean,
use_bfloat16?: boolean
): Promise<{ success: boolean, message?: string, model?: string }> {
return d3.json(this.baseURL + '/api/switch_model', {
method: "POST",
body: JSON.stringify({
model,
use_int8: use_int8 || false,
use_bfloat16: use_bfloat16 || false
}),
headers: this.getHeaders()
});
}
/**
* 使用SSE流式分析文本,支持进度回调(内部方法)
*
* @param model 模型名称
* @param text 要分析的文本
* @param onProgress 进度回调函数,接收 (step: number, totalSteps: number, stage: string, percentage?: number) 参数
* @returns Promise<AnalyzeResponse>
*/
private analyzeWithProgress(
model: string,
text: string,
onProgress?: (step: number, totalSteps: number, stage: string, percentage?: number) => void
): Promise<AnalyzeResponse> {
return new Promise((resolve, reject) => {
const payload = this.buildAnalyzePayload(model, text, null, true);
// 使用fetch发送POST请求,然后通过ReadableStream接收SSE
fetch(this.baseURL + '/api/analyze', {
method: 'POST',
headers: {
'Content-Type': 'application/json; charset=UTF-8'
},
body: JSON.stringify(payload)
}).then(response => {
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
const reader = response.body.getReader();
const decoder = new TextDecoder();
let buffer = '';
const readChunk = (): Promise<void> => {
return reader.read().then(({ done, value }) => {
if (done) {
if (buffer.trim()) {
// 处理剩余的缓冲区数据
this.processSSEMessage(buffer, onProgress, resolve, reject);
}
return;
}
buffer += decoder.decode(value, { stream: true });
const lines = buffer.split('\n');
buffer = lines.pop() || ''; // 保留最后不完整的行
for (const line of lines) {
if (line.startsWith('data: ')) {
const data = line.slice(6); // 移除 'data: ' 前缀
this.processSSEMessage(data, onProgress, resolve, reject);
}
}
return readChunk();
});
};
return readChunk();
}).catch(error => {
reject(error);
});
});
}
/**
* 处理SSE消息
*/
private processSSEMessage(
data: string,
onProgress: (step: number, totalSteps: number, stage: string, percentage?: number) => void,
resolve: (value: AnalyzeResponse) => void,
reject: (reason?: any) => void
): void {
try {
const parsed = JSON.parse(data);
if (parsed.type === 'progress') {
// 进度更新
if (onProgress) {
onProgress(parsed.step, parsed.total_steps, parsed.stage, parsed.percentage);
}
} else if (parsed.type === 'result') {
// 最终结果,检查统一的错误格式
const resultData = parsed.data;
if (resultData && resultData.success === false) {
reject(new Error(resultData.message || '分析失败'));
} else {
resolve(resultData as AnalyzeResponse);
}
} else if (parsed.type === 'error') {
// 错误
reject(new Error(parsed.message || '分析失败'));
}
} catch (e) {
// 忽略解析错误(可能是部分数据)
console.warn('Failed to parse SSE message:', e, data);
}
}
}
|