Files
exo/shared/types/api.py
T
Alex Cheema bb7f1ae994 New worker
Co-authored-by: Matt Beton <matthew.beton@gmail.com>
2025-07-18 10:08:56 +01:00

12 lines
251 B
Python

from typing import Literal
from pydantic import BaseModel
from shared.types.tasks.common import CompletionCreateParams, TaskId
class ChatTask(BaseModel):
task_id: TaskId
kind: Literal["chat"] = "chat"
task_data: CompletionCreateParams