| 14 | import { useT } from "@/lib/i18n-client"; |
| 15 | |
| 16 | interface Props { |
| 17 | provider: string; |
| 18 | model: string; |
| 19 | system: string; |
| 20 | toolBudget: number; |
| 21 | mode: QueryMode; |
| 22 | /** 要查询的 workspace(自动识别得来);null = 让 web 用默认库 */ |
| 23 | workspace: string | null; |
| 24 | onOpenRef: (ref: WikiRef) => void; |
| 25 | onOpenNode: (node: FlowNodeData) => void; |
| 26 | } |
| 27 | |
| 28 | type IncomingEvent = |
| 29 | | { kind: "text-delta"; text: string } |
nothing calls this directly
no outgoing calls
no test coverage detected