mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 16:59:40 +02:00
- Update pnpm-lock.yaml with matrix bot dependencies - Add environment variables to generate-env.mjs - Improve mana-llm config and ollama provider Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
32 lines
667 B
Python
32 lines
667 B
Python
"""Pydantic models for OpenAI-compatible API."""
|
|
|
|
from .requests import ChatCompletionRequest, EmbeddingRequest
|
|
from .responses import (
|
|
ChatCompletionResponse,
|
|
ChatCompletionStreamResponse,
|
|
Choice,
|
|
DeltaContent,
|
|
EmbeddingData,
|
|
EmbeddingResponse,
|
|
MessageResponse,
|
|
ModelInfo,
|
|
ModelsResponse,
|
|
StreamChoice,
|
|
Usage,
|
|
)
|
|
|
|
__all__ = [
|
|
"ChatCompletionRequest",
|
|
"ChatCompletionResponse",
|
|
"ChatCompletionStreamResponse",
|
|
"Choice",
|
|
"DeltaContent",
|
|
"EmbeddingData",
|
|
"EmbeddingRequest",
|
|
"EmbeddingResponse",
|
|
"MessageResponse",
|
|
"ModelInfo",
|
|
"ModelsResponse",
|
|
"StreamChoice",
|
|
"Usage",
|
|
]
|