File size: 4,689 Bytes
fe406e9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 | """Typed Pydantic models for the IndicScriptureQA environment."""
from __future__ import annotations
from enum import Enum
from typing import Dict, List, Optional
from pydantic import BaseModel, Field
# ββ Action Space ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class ActionType(str, Enum):
RETRIEVE = "RETRIEVE" # Retrieve source passages (payload = optional query)
EDIT = "EDIT" # Replace current answer (payload = new answer text)
RESTRUCTURE = "RESTRUCTURE" # Reorganise answer flow (payload = restructured text)
CITE = "CITE" # Attach a citation (payload = e.g. "Bhagavad Gita 2.47")
ACCEPT = "ACCEPT" # Accept answer as final (terminal)
REJECT = "REJECT" # Reject answer entirely (terminal)
class Action(BaseModel):
action_type: ActionType
payload: Optional[str] = None
# ββ Structural metadata (hidden from agent, used by grader) ββββββββββββββββββ
class StructuralMeta(BaseModel):
"""Describes the *expected* semantic structure of a correct answer."""
required_terms: List[str] = Field(
default_factory=list,
description="Sanskrit / domain terms the answer must contain.",
)
required_sections: List[str] = Field(
default_factory=list,
description="Conceptual aspects the answer should cover (order-independent).",
)
expected_order: List[str] = Field(
default_factory=list,
description="Concepts that should appear in this logical sequence.",
)
banned_terms: List[str] = Field(
default_factory=list,
description="Terms that indicate a common misconception if present.",
)
# ββ Observation Space βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class Observation(BaseModel):
question: str
current_answer: str
retrieved_passages: List[str] = Field(default_factory=list)
current_citations: List[str] = Field(default_factory=list)
steps_remaining: int
task_name: str
feedback: Optional[str] = None
# structural hints exposed to the agent (non-spoiler)
structural_hints: List[str] = Field(
default_factory=list,
description="High-level hints about expected answer structure.",
)
# ββ Step Result βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class StepResult(BaseModel):
observation: Observation
reward: float = 0.0
done: bool = False
info: dict = Field(default_factory=dict)
# ββ Internal State (superset of observation + grading internals) ββββββββββββββ
class EnvState(BaseModel):
# observable
question: str
current_answer: str
retrieved_passages: List[str] = Field(default_factory=list)
current_citations: List[str] = Field(default_factory=list)
steps_remaining: int = 0
task_name: str = ""
feedback: Optional[str] = None
structural_hints: List[str] = Field(default_factory=list)
# hidden / grading β factual
original_answer: str = ""
ground_truth_answer: str = ""
ground_truth_citations: List[str] = Field(default_factory=list)
available_passages: List[str] = Field(default_factory=list)
answer_is_correct: bool = False # overall: facts AND structure both OK
factual_is_correct: bool = False # facts alone are OK (structure may be bad)
# hidden / grading β structural
structural_meta: StructuralMeta = Field(default_factory=StructuralMeta)
# episode bookkeeping
step_count: int = 0
max_steps: int = 8
done: bool = False
cumulative_reward: float = 0.0
rewards: List[float] = Field(default_factory=list)
retrieval_count: int = 0
edit_count: int = 0
restructure_count: int = 0
def to_observation(self) -> Observation:
return Observation(
question=self.question,
current_answer=self.current_answer,
retrieved_passages=list(self.retrieved_passages),
current_citations=list(self.current_citations),
steps_remaining=self.steps_remaining,
task_name=self.task_name,
feedback=self.feedback,
structural_hints=list(self.structural_hints),
)
|