Files
gpt-pilot/pilot/database/models/project_description.py
2023-09-09 11:44:19 +10:00

11 lines
240 B
Python

from peewee import *
from database.models.components.progress_step import ProgressStep
class ProjectDescription(ProgressStep):
prompt = TextField()
summary = TextField()
class Meta:
table_name = 'project_description'