forked from cardosofelipe/fast-next-template
Create AgentType entity and CRUD operations #24
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Description
Implement the AgentType entity representing agent templates.
Requirements
Entity Fields
CRUD Operations
create(db, obj_in: AgentTypeCreate) -> AgentTypeget(db, id: UUID) -> Optional[AgentType]get_by_slug(db, slug: str) -> Optional[AgentType]get_all_active(db) -> List[AgentType]update(db, db_obj: AgentType, obj_in: AgentTypeUpdate) -> AgentTypedelete(db, id: UUID) -> None(soft delete via is_active)Seed Data
Create initial agent types:
Tests
Acceptance Criteria
Technical Notes
model_paramsshould be validated against known LLM parametersAssignable To
backend-engineer agent