Add AGENTS.md documentation for AI agent guidance
This commit is contained in:
31
app/models/__init__.py
Normal file
31
app/models/__init__.py
Normal file
@@ -0,0 +1,31 @@
|
||||
"""OpenAI-compatible data models."""
|
||||
|
||||
from app.models.openai_models import (
|
||||
ChatMessage,
|
||||
ChatCompletionRequest,
|
||||
ChatCompletionResponse,
|
||||
ChatCompletionChunk,
|
||||
CompletionRequest,
|
||||
CompletionResponse,
|
||||
EmbeddingRequest,
|
||||
EmbeddingResponse,
|
||||
ModelsResponse,
|
||||
ModelInfo,
|
||||
ErrorResponse,
|
||||
ErrorDetail,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"ChatMessage",
|
||||
"ChatCompletionRequest",
|
||||
"ChatCompletionResponse",
|
||||
"ChatCompletionChunk",
|
||||
"CompletionRequest",
|
||||
"CompletionResponse",
|
||||
"EmbeddingRequest",
|
||||
"EmbeddingResponse",
|
||||
"ModelsResponse",
|
||||
"ModelInfo",
|
||||
"ErrorResponse",
|
||||
"ErrorDetail",
|
||||
]
|
||||
Reference in New Issue
Block a user