mirror of
https://github.com/VectifyAI/PageIndex.git
synced 2026-05-09 14:52:36 +02:00
10 lines
249 B
Python
10 lines
249 B
Python
|
|
from dataclasses import dataclass
|
||
|
|
from typing import Literal, Any
|
||
|
|
|
||
|
|
|
||
|
|
@dataclass
|
||
|
|
class QueryEvent:
|
||
|
|
"""Event emitted during streaming query."""
|
||
|
|
type: Literal["reasoning", "tool_call", "tool_result", "answer_delta", "answer_done"]
|
||
|
|
data: Any
|