* wait I forgot to comit locally * cp the entire core directory and then rm the .git subdir
10 lines
363 B
Python
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.")
|