Files
wehub-resource-sync b957a53def
CodeQL / Analyze (csharp) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run
chore: import upstream snapshot with attribution
2026-07-13 13:21:23 +08:00

28 lines
727 B
JSON

{
"schema": 1,
"description": "Remove a list of ungrounded entities from a given text in a coherent manner. Returns the input text without the ungrounded entities in the list",
"execution_settings": {
"default": {
"max_tokens": 1024,
"temperature": 0.1,
"top_p": 0.1,
"presence_penalty": 0.0,
"frequency_penalty": 0.0
}
},
"input_variables": [
{
"name": "input",
"description": "The text from which the entities are to be removed",
"default": "",
"is_required": true
},
{
"name": "ungrounded_entities",
"description": "The entities to remove. This is a list of strings.",
"default": "",
"is_required": true
}
]
}