mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-22 08:24:26 +01:00
8 lines
124 B
Python
8 lines
124 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class Task(BaseModel):
|
|
"""Jsonifiable representation of a task"""
|
|
|
|
user_input: str
|