mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2026-01-02 13:54:31 +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
|