You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Python: Add incomplete details reason to AzureAIAgent error message (#12796)
### Motivation and Context
When errors occur processing a run of an AzureAIAgent, we surface the
error message but not the incomplete_details reason if it exists.
<!-- Thank you for your contribution to the semantic-kernel repo!
Please help reviewers and future users, providing the following
information:
1. Why is this change required?
2. What problem does it solve?
3. What scenario does it contribute to?
4. If it fixes an open issue, please link to the issue here.
-->
### Description
This PR adds handling for the incomplete details reason, if it exists,
so it can be passed back via the error message.
- Closes#12752
<!-- Describe your changes, the overall approach, the underlying design.
These notes will help understanding how your code works. Thanks! -->
### Contribution Checklist
<!-- Before submitting this PR, please make sure: -->
- [X] The code builds clean without any errors or warnings
- [X] The PR follows the [SK Contribution
Guidelines](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md)
and the [pre-submission formatting
script](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md#development-scripts)
raises no violations
- [X] All unit tests pass, and I have added new tests where possible
- [X] I didn't break anyone 😄
Copy file name to clipboardExpand all lines: python/samples/getting_started_with_agents/openai_responses/README.md
+1-6Lines changed: 1 addition & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,12 +15,7 @@ In Semantic Kernel, we don't currently support the Computer User Agent Tool. Thi
15
15
The Semantic Kernel Azure Responses Agent leverages Azure OpenAI's new stateful API.
16
16
It brings together the best capabilities from the chat completions and assistants API in one unified experience.
17
17
18
-
Right now, there is no support with the `AzureResponsesAgent` for:
19
-
20
-
- Structured outputs
21
-
- tool_choice
22
-
- image_url pointing to an internet address
23
-
- The web search tool is also not supported, and is not part of the 2025-03-01-preview API.
18
+
For `AzureResponsesAgent` limitations, please see the latest [Azure OpenAI Responses API Docs](https://learn.microsoft.com/en-us/azure/ai-foundry/openai/how-to/responses?tabs=python-secure).
0 commit comments