mirror of
https://github.com/LouisShark/chatgpt_system_prompt.git
synced 2025-07-06 06:40:28 -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.
|
# Description of the fields supported by GPT markdown files.
|
||||||
SUPPORTED_FIELDS = {
|
SUPPORTED_FIELDS = {
|
||||||
'url': GptFieldInfo(0, 'URL'),
|
'url': GptFieldInfo(10, 'URL'),
|
||||||
'title': GptFieldInfo(1, 'Title'),
|
'title': GptFieldInfo(20, 'Title'),
|
||||||
'description': GptFieldInfo(2, 'Description'),
|
'description': GptFieldInfo(30, 'Description'),
|
||||||
'logo': GptFieldInfo(3, 'Logo'),
|
'logo': GptFieldInfo(40, 'Logo'),
|
||||||
'instructions': GptFieldInfo(4, 'Instructions'),
|
'verif_status': GptFieldInfo(50, 'Verification Status'),
|
||||||
'actions': GptFieldInfo(5, 'Actions'),
|
'instructions': GptFieldInfo(60, 'Instructions'),
|
||||||
'verif_status': GptFieldInfo(6, 'Verification Status'),
|
'actions': GptFieldInfo(70, 'Actions'),
|
||||||
'kb_files_list': GptFieldInfo(6, 'KB Files List'),
|
'kb_files_list': GptFieldInfo(80, 'KB Files List'),
|
||||||
'extras': GptFieldInfo(7, 'Extras')
|
'extras': GptFieldInfo(90, 'Extras')
|
||||||
}
|
}
|
||||||
"""
|
"""
|
||||||
Dictionary of the fields supported by GPT markdown files:
|
Dictionary of the fields supported by GPT markdown files:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue