mirror of
				https://github.com/langgenius/dify.git
				synced 2025-10-31 10:53:02 +00:00 
			
		
		
		
	 5b9858a8a3
			
		
	
	
		5b9858a8a3
		
			
		
	
	
	
	
		
			
			Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: JzoNg <jzongcode@gmail.com> Co-authored-by: Gillian97 <jinling.sunshine@gmail.com>
		
			
				
	
	
		
			25 lines
		
	
	
		
			815 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			815 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| export const CONTEXT_PLACEHOLDER_TEXT = '{{#context#}}'
 | |
| export const HISTORY_PLACEHOLDER_TEXT = '{{#histories#}}'
 | |
| export const QUERY_PLACEHOLDER_TEXT = '{{#query#}}'
 | |
| export const PRE_PROMPT_PLACEHOLDER_TEXT = '{{#pre_prompt#}}'
 | |
| export const UPDATE_DATASETS_EVENT_EMITTER = 'prompt-editor-context-block-update-datasets'
 | |
| export const UPDATE_HISTORY_EVENT_EMITTER = 'prompt-editor-history-block-update-role'
 | |
| 
 | |
| export const checkHasContextBlock = (text: string) => {
 | |
|   if (!text)
 | |
|     return false
 | |
|   return text.includes(CONTEXT_PLACEHOLDER_TEXT)
 | |
| }
 | |
| 
 | |
| export const checkHasHistoryBlock = (text: string) => {
 | |
|   if (!text)
 | |
|     return false
 | |
|   return text.includes(HISTORY_PLACEHOLDER_TEXT)
 | |
| }
 | |
| 
 | |
| export const checkHasQueryBlock = (text: string) => {
 | |
|   if (!text)
 | |
|     return false
 | |
|   return text.includes(QUERY_PLACEHOLDER_TEXT)
 | |
| }
 |