7 lines
142 B
Python
7 lines
142 B
Python
from typing import Literal
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class LLMMessage(BaseModel):
|
|
role: Literal["user", "system"]
|
|
content: str
|