Selaa lähdekoodia

fix: disable template variables in prompt

Timothy J. Baek 1 vuosi sitten
vanhempi
commit
af1d8470cd
1 muutettua tiedostoa jossa 2 lisäystä ja 0 poistoa
  1. 2 0
      src/lib/utils/index.ts

+ 2 - 0
src/lib/utils/index.ts

@@ -473,6 +473,8 @@ export const blobToFile = (blob, fileName) => {
 };
 };
 
 
 export const promptTemplate = (template: string, prompt: string) => {
 export const promptTemplate = (template: string, prompt: string) => {
+	prompt = prompt.replace(/{{prompt}}|{{prompt:start:\d+}}|{{prompt:end:\d+}}/g, '');
+
 	template = template.replace(/{{prompt}}/g, prompt);
 	template = template.replace(/{{prompt}}/g, prompt);
 
 
 	// Replace all instances of {{prompt:start:<length>}} with the first <length> characters of the prompt
 	// Replace all instances of {{prompt:start:<length>}} with the first <length> characters of the prompt