File size: 229 Bytes
acf77ab
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
from __future__ import annotations

from pydantic import BaseModel, ConfigDict


class InterrogationResult(BaseModel):
    model_config = ConfigDict(frozen=True)
    questions: tuple[str, ...]
    cited_node_ids: tuple[str, ...]