mirror of
https://github.com/RockChinQ/QChatGPT.git
synced 2024-11-16 19:57:04 +08:00
15 lines
220 B
Python
15 lines
220 B
Python
from __future__ import annotations
|
|
|
|
import typing
|
|
import pydantic
|
|
|
|
from ...provider import entities
|
|
|
|
|
|
class Prompt(pydantic.BaseModel):
|
|
"""供AI使用的Prompt"""
|
|
|
|
name: str
|
|
|
|
messages: list[entities.Message]
|