update knowledge base api (#20426)
This commit is contained in:
parent
55371e5abf
commit
1ea4459d9f
6 changed files with 397 additions and 36 deletions
|
|
@ -937,6 +937,9 @@ class DatasetRetrieval:
|
|||
return metadata_filter_document_ids, metadata_condition
|
||||
|
||||
def _replace_metadata_filter_value(self, text: str, inputs: dict) -> str:
|
||||
if not inputs:
|
||||
return text
|
||||
|
||||
def replacer(match):
|
||||
key = match.group(1)
|
||||
return str(inputs.get(key, f"{{{{{key}}}}}"))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue