Files
letta-server/letta/schemas/prompt.py
2025-07-22 13:59:52 -07:00

10 lines
363 B
Python

from pydantic import Field
from letta.schemas.letta_base import OrmMetadataBase
class Prompt(OrmMetadataBase):
id: str = Field(..., description="The id of the agent. Assigned by the database.")
project_id: str | None = Field(None, description="The associated project id.")
prompt: str = Field(..., description="The string contents of the prompt.")