Files
agentic-studio/zipit/rest_api_check/prompts/3_coder_schemas.py.md
2026-04-12 18:48:14 +03:00

425 B

3 — Coder (coder) — schemas.py

Malli: template

System Prompt

(template pipeline — ei LLM-promptia)

Syöte

Generated from spec: ["User"]

Tulos

from pydantic import BaseModel

class UserCreate(BaseModel):
    UserID: int
    Username: str
    Email: str
    PasswordHash: str

class UserResponse(UserCreate):
    id: int

    class Config:
        from_attributes = True