update:1.更新AI生成角色/组织实现自动建立关系 2.新增AI续写大纲智能引入角色功能

This commit is contained in:
xiamuceer
2025-12-11 12:43:28 +08:00
parent 9fcc06055c
commit 02bd2a2529
17 changed files with 2356 additions and 430 deletions
+27 -4
View File
@@ -17,6 +17,7 @@ export interface SSEClientOptions {
onError?: (error: string, code?: number) => void;
onComplete?: () => void;
onConnectionError?: (error: Event) => void;
onCharacterConfirmation?: (data: any) => void; // 新增:角色确认回调
}
export class SSEClient {
@@ -34,7 +35,7 @@ export class SSEClient {
return new Promise((resolve, reject) => {
try {
this.eventSource = new EventSource(this.url);
this.eventSource.onmessage = (event) => {
try {
const message: SSEMessage = JSON.parse(event.data);
@@ -160,6 +161,7 @@ export class SSEPostClient {
}
let buffer = '';
let currentEvent = ''; // 跟踪当前事件类型
while (true) {
const { done, value } = await reader.read();
@@ -169,7 +171,7 @@ export class SSEPostClient {
}
buffer += decoder.decode(value, { stream: true });
const lines = buffer.split('\n\n');
buffer = lines.pop() || '';
@@ -179,10 +181,31 @@ export class SSEPostClient {
}
try {
// 检查是否有事件类型
const eventMatch = line.match(/^event: (.+)$/m);
if (eventMatch) {
currentEvent = eventMatch[1];
}
// 解析数据
const dataMatch = line.match(/^data: (.+)$/m);
if (dataMatch) {
const message: SSEMessage = JSON.parse(dataMatch[1]);
await this.handleMessage(message, resolve, reject);
const data = JSON.parse(dataMatch[1]);
// 根据事件类型处理
if (currentEvent === 'character_confirmation_required') {
// 处理角色确认事件
if (this.options.onCharacterConfirmation) {
this.options.onCharacterConfirmation(data);
}
currentEvent = ''; // 重置事件类型
return; // 暂停流程,等待用户确认
} else {
// 标准消息处理
const message: SSEMessage = data;
await this.handleMessage(message, resolve, reject);
currentEvent = ''; // 重置事件类型
}
}
} catch (error) {
console.error('解析SSE消息失败:', error, line);