mirror of
https://github.com/VectifyAI/PageIndex.git
synced 2026-05-01 19:12:36 +02:00
9 lines
249 B
Python
9 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
|