refactor(chat): reorganize helper functions and update imports

This commit is contained in:
2026-07-15 10:59:23 +08:00
parent 2b90f90ab0
commit ed3e800245
20 changed files with 27 additions and 29 deletions
+1 -1
View File
@@ -57,6 +57,6 @@ export type ChatEvent =
| { type: "ChatQueuedSendStarted" }
| {
type: "ChatQueuedHttpDone";
output: import("./chat-machine.helpers").HttpSendOutput;
output: import("./helper/send-state").HttpSendOutput;
}
| { type: "ChatQueuedSendError"; content: string; errorMessage: string };