Fucius's picture
Upload 422 files
df6c67d verified
raw
history blame contribute delete
No virus
300 Bytes
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)