22 lines
417 B
Python
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",
|
|
]
|