Skip to content

Commit 2143a4c

Browse files
moonbox3glorious-beard
authored andcommitted
Python: Add release_candidate decorator (microsoft#11368)
### Motivation and Context Add release_candidate decorator for AzureAssistantAgent. <!-- 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 Add release_candidate decorator for AzureAssistantAgent. <!-- 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 😄
1 parent 7d3cc28 commit 2143a4c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

python/semantic_kernel/agents/open_ai/azure_assistant_agent.py

+2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@
1111
from semantic_kernel.connectors.ai.open_ai.settings.azure_open_ai_settings import AzureOpenAISettings
1212
from semantic_kernel.exceptions.agent_exceptions import AgentInitializationException
1313
from semantic_kernel.utils.authentication.entra_id_authentication import get_entra_auth_token
14+
from semantic_kernel.utils.feature_stage_decorator import release_candidate
1415
from semantic_kernel.utils.telemetry.user_agent import APP_INFO, prepend_semantic_kernel_to_user_agent
1516

1617

18+
@release_candidate
1719
class AzureAssistantAgent(OpenAIAssistantAgent):
1820
"""An Azure Assistant Agent class that extends the OpenAI Assistant Agent class."""
1921

0 commit comments

Comments
 (0)