Remove options from GreatAI.create
This commit is contained in:
parent
612f3ac5e1
commit
b6c7a4b7ca
9 changed files with 24 additions and 83 deletions
|
|
@ -7,5 +7,6 @@ from .health_check_response import HealthCheckResponse
|
|||
from .model import Model
|
||||
from .operators import operators
|
||||
from .query import Query
|
||||
from .route_config import RouteConfig
|
||||
from .sort_by import SortBy
|
||||
from .trace import Trace
|
||||
|
|
|
|||
10
great_ai/views/route_config.py
Normal file
10
great_ai/views/route_config.py
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
from pydantic import BaseModel
|
||||
|
||||
|
||||
class RouteConfig(BaseModel):
|
||||
prediction_endpoint_enabled: bool = True
|
||||
docs_endpoints_enabled: bool = True
|
||||
dashboard_enabled: bool = True
|
||||
feedback_endpoints_enabled: bool = True
|
||||
trace_endpoints_enabled: bool = True
|
||||
meta_endpoints_enabled: bool = True
|
||||
Loading…
Add table
Add a link
Reference in a new issue