Spaces:
Runtime error
Runtime error
File size: 300 Bytes
df6c67d |
1 2 3 4 5 6 7 8 9 |
from pydantic import BaseModel, Field, ValidationError
class NotebookStartResponse(BaseModel):
"""Response model for notebook start request"""
success: str = Field(..., description="Status of the request")
message: str = Field(..., description="Message of the request", optional=True)
|