Files
gpt-pilot/pilot/database/models/project_description.py
2023-09-11 10:08:57 +07:00

11 lines
238 B
Python

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