feat: add experimental.text.complete plugin hook (#4962)

This commit is contained in:
franlol
2025-12-08 02:44:04 +01:00
committed by GitHub
parent 935970317d
commit c47e33e3ed
2 changed files with 15 additions and 0 deletions
+4
View File
@@ -175,4 +175,8 @@ export interface Hooks {
metadata: any
},
) => Promise<void>
"experimental.text.complete"?: (
input: { sessionID: string; messageID: string; partID: string },
output: { text: string },
) => Promise<void>
}