Files
cadSet/CADDesigner-Code/web_interface/__init__.py
T
2026-07-22 19:38:36 +08:00

22 lines
417 B
Python

"""
Web Interface module for CADDesigner.
Provides a Web service interface compatible with the OpenAI API specification.
"""
from .server import app
from .models import *
__all__ = [
"app",
"ChatCompletionRequest",
"ChatCompletionResponse",
"ChatMessage",
"ChatChoice",
"Usage",
"DeltaMessage",
"ChatCompletionChunk",
"ModelInfo",
"ModelListResponse",
"ErrorResponse",
]