fix variable invalid when key only one character (#2377)

This commit is contained in:
takatost 2024-02-04 18:15:13 +08:00 committed by GitHub
parent 1ebf740908
commit 556d1d0390
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,6 +1,6 @@
import re import re
REGEX = re.compile(r"\{\{([a-zA-Z_][a-zA-Z0-9_]{1,29}|#histories#|#query#|#context#)\}\}") REGEX = re.compile(r"\{\{([a-zA-Z_][a-zA-Z0-9_]{0,29}|#histories#|#query#|#context#)\}\}")
class PromptTemplateParser: class PromptTemplateParser: