Azure / Azure/azure-sdk-for-python
[FEATURE REQ] Strip analyzer output to bare minimum using a flag/parameter
- Dominant language
- Python
- Stars
- 5.6k
- Forks
- 3.4k
- Avg merge
- 1d 21h
- Merged PRs (30d)
- 193
Description
## Problem
- Calling content understanding from a copilot studio agent is impossible since a single analysis would congest the context window of the agent.
- Reading the analysis output from a JSON is impossible since the output size is too big.
## Solution
Adding a flag/parameter in the sdk so that we can create an MCP Server that has the possibility of stripping the analyzer output to the bare minimum so have a much smaller waste of tokens inside the context window for copilot studio.
## Additional Context
By bare minimum I mean just the result of the analysis so:
{
"key":"value",
"key":"value",
"key":"value"
}
and also keep the consumed token for the analysis.
Contributor guide
Assessment
This issue has not been assessed yet.