Files
microsoft--semantic-kernel/prompt_template_samples/GroundingPlugin/ReferenceCheckEntities/config.json
T
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
855 B
JSON

{
"schema": 1,
"description": "Check to see if a given list of entities is grounded in a reference context. Any of the items which are not supported by the reference context will be returned as a bulleted list.",
"execution_settings": {
"default": {
"max_tokens": 2048,
"temperature": 0.0,
"top_p": 0.1,
"presence_penalty": 0.0,
"frequency_penalty": 0.0
}
},
"input_variables": [
{
"name": "input",
"description": "The list of entities which are to be checked against the reference context.",
"default": "",
"is_required": true
},
{
"name": "reference_context",
"description": "The reference context to be used to ground the entities. Only those missing from the reference_context will be returned",
"default": "",
"is_required": true
}
]
}