-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
describegpt
: add a --prompt-file option
#1085
Comments
@jqnatividad Is there a default format that's expected for the prompt file? For example: {
"dictionary_prompt": "...",
"description_prompt": "...",
"tags_prompt": "..."
} We can then check if the Also should we specify that prompt file format anywhere? |
@rzmk , add some metadata attributes: {
"name": "...",
"description": "...",
"author": "...",
"version": "...",
"tokens": 10,
"dictionary_prompt": "...",
"description_prompt": "..",
"tags_promt": "..."
} the tokens attribute will be used unless As for specifying the |
@jqnatividad How should we identify where to input the stats, frequency, and json_add string within these prompts? If we can do this then we could consider moving the current prompt functions into a default prompt file. |
describegpt: add --prompt-file option (resolves #1085)
The prompt file is a json file specifying the dictionary prompt, description prompt and the tags prompt to use.
If specified, it will load the prompts from the json file instead of using the default prompts.
The text was updated successfully, but these errors were encountered: