mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-02-03 19:35:15 -05: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
|