Files
letta-server/letta/schemas/prompt.py
Kian Jones b8e9a80d93 merge this (#4759)
* wait I forgot to comit locally

* cp the entire core directory and then rm the .git subdir
2025-09-17 15:47:40 -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.")