Skip to content

Commit c737dd0

Browse files
committed
update Command fields
1 parent 752a2fb commit c737dd0

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

devchat/engine/command_parser.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,13 @@ class Parameter(BaseModel, extra='forbid'):
1010
description: Optional[str]
1111
enum: Optional[List[str]]
1212
default: Optional[str]
13-
required: Optional[bool]
1413

1514

1615
class Command(BaseModel, extra='forbid'):
1716
description: str
17+
hint: Optional[str]
1818
parameters: Optional[Dict[str, Parameter]]
19+
input: Optional[str]
1920
steps: Optional[List[Dict[str, str]]]
2021

2122

0 commit comments

Comments
 (0)