gitllm / lib /entities.py
heaversm's picture
initial commit - command line only.
449cbf5
raw
history blame
446 Bytes
from enum import Enum
from langchain_core.pydantic_v1 import BaseModel, Field
class AccuracyEnum(str, Enum):
accurate = "accurate"
inaccurate = "inaccurate"
class LLMEvalResult(BaseModel):
accuracy: AccuracyEnum = Field(description="Label indicating if the answer is accurate or inaccurate.")
feedback: str = Field(description="Explanation of why the specific label was assigned. Must be concise and not more than 2 sentences.")