mirror of
https://github.com/langbot-app/LangBot.git
synced 2025-11-25 19:37:36 +08:00
17 lines
275 B
Python
17 lines
275 B
Python
from __future__ import annotations
|
|
|
|
import typing
|
|
import pydantic.v1 as pydantic
|
|
|
|
from ...provider import entities
|
|
|
|
|
|
class Prompt(pydantic.BaseModel):
|
|
"""供AI使用的Prompt"""
|
|
|
|
name: str
|
|
"""名称"""
|
|
|
|
messages: list[entities.Message]
|
|
"""消息列表"""
|