Skip to content
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

fix: DIA-1629: Enforce template fields in refined prompt #292

Merged
merged 3 commits into from
Jan 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion adala/utils/parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,9 @@ class TemplateChunks(TypedDict):
start: int
end: int
type: str


match_fields_regex = re.compile(r"(?<!\{)\{([a-zA-Z0-9_]+)\}(?!})")


def parse_template(string, include_texts=True) -> List[TemplateChunks]:
Expand All @@ -135,7 +138,7 @@ def parse_template(string, include_texts=True) -> List[TemplateChunks]:
chunks: List[TemplateChunks] = []
last_index = 0

for match in re.finditer(r"(?<!\{)\{(.*?)\}(?!})", string):
for match in match_fields_regex.finditer(string):
# for match in re.finditer(r'\{(.*?)\}', string):
# Text before field
if last_index < match.start() and include_texts:
Expand Down
Loading
Loading