mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2026-02-23 15:49:50 +01:00
Added current high level step to saved command runs, user inputs and dev steps because we skip high level steps in one way and then in the coding step, we skip them with these functions. REFACTOR eventually so that we skip everything with saved steps since the beginning of the project.
This commit is contained in:
@@ -11,6 +11,7 @@ class UserInputs(BaseModel):
|
||||
query = TextField(null=True)
|
||||
user_input = TextField(null=True)
|
||||
previous_step = ForeignKeyField('self', null=True, column_name='previous_step')
|
||||
high_level_step = CharField(null=True)
|
||||
|
||||
class Meta:
|
||||
db_table = 'user_inputs'
|
||||
|
||||
Reference in New Issue
Block a user