Skip to content

Commit

Permalink
mention #984, fix UI Zarf variable string
Browse files Browse the repository at this point in the history
  • Loading branch information
justinthelaw committed Sep 5, 2024
1 parent fb56b56 commit 1b4df8e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .hadolint.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
failure-threshold: error
# TODO: slowly burn down these lower priority container issues
# TODO: slowly burn down these lower priority container warnings and errors, issue #984
ignored:
- DL3007 # use of latest image
- DL3042 # pip --no-cache-dir
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ env:
- name: DEFAULT_MODEL
value: "llama-cpp-python"
- name: DEFAULT_SYSTEM_PROMPT
value: "You may be provided with a list of files and their content in the following structure: `[{\"filename\": \"test.pdf\", \"text\": \"some fake text\"}]``. Using the content of these files as context, you should refer to specific files by their filename when relevant and use the text content to provide detailed, accurate, and relevant information or answers. If the user asks questions that can be answered based on the content of the provided files, use the appropriate files text in your response. If the user requests clarification, further details, or specific information about a file, respond using the most relevant file or files. If necessary, combine information from multiple files to form a comprehensive response."
value: "You may be provided with a list of files and their content in the following structure: [{filename: test.pdf, text: some fake text}]. Using the content of these files as context, you should refer to specific files by their filename when relevant and use the text content to provide detailed, accurate, and relevant information or answers. If the user asks questions that can be answered based on the content of the provided files, use the appropriate files text in your response. If the user requests clarification, further details, or specific information about a file, respond using the most relevant file or files. If necessary, combine information from multiple files to form a comprehensive response."
- name: DEFAULT_TEMPERATURE
value: "0.1"
- name: OPENAI_API_KEY
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/zarf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ variables:
sensitive: false
- name: SYSTEM_PROMPT
description: The default system prompt to use for the LLM
default: "You may be provided with a list of files and their content in the following structure: `[{\"filename\": \"test.pdf\", \"text\": \"some fake text\"}]``. Using the content of these files as context, you should refer to specific files by their filename when relevant and use the text content to provide detailed, accurate, and relevant information or answers. If the user asks questions that can be answered based on the content of the provided files, use the appropriate files text in your response. If the user requests clarification, further details, or specific information about a file, respond using the most relevant file or files. If necessary, combine information from multiple files to form a comprehensive response."
default: "You may be provided with a list of files and their content in the following structure: [{filename: test.pdf, text: some fake text}]. Using the content of these files as context, you should refer to specific files by their filename when relevant and use the text content to provide detailed, accurate, and relevant information or answers. If the user asks questions that can be answered based on the content of the provided files, use the appropriate files text in your response. If the user requests clarification, further details, or specific information about a file, respond using the most relevant file or files. If necessary, combine information from multiple files to form a comprehensive response."
prompt: true
sensitive: false
- name: TEMPERATURE
Expand Down

0 comments on commit 1b4df8e

Please sign in to comment.