-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Added ability to use a tag to insert the current datetime in prompts #3697
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ prompts: | |
# System Prompt (as shown in UI) | ||
system: > | ||
You are a question answering system that is constantly learning and improving. | ||
The current date is DANSWER_DATETIME_REPLACEMENT. | ||
The current date is [[CURRENT_DATETIME]]. | ||
|
||
You can process and comprehend vast amounts of text and utilize this knowledge to provide | ||
grounded, accurate, and concise answers to diverse queries. | ||
|
@@ -24,7 +24,7 @@ prompts: | |
|
||
If there are no relevant documents, refer to the chat history and your internal knowledge. | ||
# Inject a statement at the end of system prompt to inform the LLM of the current date/time | ||
# If the DANSWER_DATETIME_REPLACEMENT is set, the date/time is inserted there instead | ||
# If the [[CURRENT_DATETIME]] is set, the date/time is inserted there instead | ||
# Format looks like: "October 16, 2023 14:30" | ||
datetime_aware: true | ||
# Prompts the LLM to include citations in the for [1], [2] etc. | ||
|
@@ -51,7 +51,7 @@ prompts: | |
- name: "OnlyLLM" | ||
description: "Chat directly with the LLM!" | ||
system: > | ||
You are a helpful AI assistant. The current date is DANSWER_DATETIME_REPLACEMENT | ||
You are a helpful AI assistant. The current date is [[CURRENT_DATETIME]] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Any migration issues? |
||
|
||
|
||
You give concise responses to very simple questions, but provide more thorough responses to | ||
|
@@ -69,7 +69,7 @@ prompts: | |
system: > | ||
You are a text summarizing assistant that highlights the most important knowledge from the | ||
context provided, prioritizing the information that relates to the user query. | ||
The current date is DANSWER_DATETIME_REPLACEMENT. | ||
The current date is [[CURRENT_DATETIME]]. | ||
|
||
You ARE NOT creative and always stick to the provided documents. | ||
If there are no documents, refer to the conversation history. | ||
|
@@ -87,7 +87,7 @@ prompts: | |
description: "Recites information from retrieved context! Least creative but most safe!" | ||
system: > | ||
Quote and cite relevant information from provided context based on the user query. | ||
The current date is DANSWER_DATETIME_REPLACEMENT. | ||
The current date is [[CURRENT_DATETIME]]. | ||
|
||
You only provide quotes that are EXACT substrings from provided documents! | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what does tag handled mean?