mirror of
https://github.com/LouisShark/chatgpt_system_prompt.git
synced 2025-07-05 14:20:33 -04:00
Update gptparser.py
updated field ordering
This commit is contained in:
parent
e69f29744d
commit
ca599e94e5
1 changed files with 9 additions and 9 deletions
|
@ -19,15 +19,15 @@ GptIdentifier = namedtuple('GptIdentifier', ['id', 'name'])
|
|||
|
||||
# Description of the fields supported by GPT markdown files.
|
||||
SUPPORTED_FIELDS = {
|
||||
'url': GptFieldInfo(0, 'URL'),
|
||||
'title': GptFieldInfo(1, 'Title'),
|
||||
'description': GptFieldInfo(2, 'Description'),
|
||||
'logo': GptFieldInfo(3, 'Logo'),
|
||||
'instructions': GptFieldInfo(4, 'Instructions'),
|
||||
'actions': GptFieldInfo(5, 'Actions'),
|
||||
'verif_status': GptFieldInfo(6, 'Verification Status'),
|
||||
'kb_files_list': GptFieldInfo(6, 'KB Files List'),
|
||||
'extras': GptFieldInfo(7, 'Extras')
|
||||
'url': GptFieldInfo(10, 'URL'),
|
||||
'title': GptFieldInfo(20, 'Title'),
|
||||
'description': GptFieldInfo(30, 'Description'),
|
||||
'logo': GptFieldInfo(40, 'Logo'),
|
||||
'verif_status': GptFieldInfo(50, 'Verification Status'),
|
||||
'instructions': GptFieldInfo(60, 'Instructions'),
|
||||
'actions': GptFieldInfo(70, 'Actions'),
|
||||
'kb_files_list': GptFieldInfo(80, 'KB Files List'),
|
||||
'extras': GptFieldInfo(90, 'Extras')
|
||||
}
|
||||
"""
|
||||
Dictionary of the fields supported by GPT markdown files:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue