mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-06-27 16:10:30 +08:00
12 lines
237 B
Python
12 lines
237 B
Python
# -*- coding: utf-8 -*-
|
|
from app.crud.base import CRUDBase
|
|
from app.models.prompt import Prompt
|
|
from app.schemas.prompt import PromptCreate
|
|
|
|
|
|
class CRUDPrompt(CRUDBase[Prompt, PromptCreate, None]):
|
|
pass
|
|
|
|
|
|
prompt = CRUDPrompt(Prompt)
|