Fix "Agent365" references to be "Agent 365" instead#51
Merged
pontemonti merged 28 commits intomainfrom Nov 14, 2025
Merged
Conversation
Updated the document to reflect the Microsoft branding for the Agent 365 Python SDK and made minor formatting adjustments.
Updated the module docstring and improved comments for clarity.
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR updates references from "Agent365" to "Microsoft Agent 365" throughout the Python SDK to align with proper Microsoft branding. The changes primarily affect documentation strings, comments, and user-facing messages.
- Updated docstrings and comments to use "Microsoft Agent 365" instead of "Agent365"
- Modified print statements and error messages for consistent branding
- Adjusted function documentation to reflect the official product name
Reviewed Changes
Copilot reviewed 25 out of 27 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| versioning/helper/setup_utils.py | Updated module docstring to include "Microsoft" prefix |
| versioning/helper/init.py | Updated module docstring to include "Microsoft" prefix |
| tests/usage_example.py | Updated demo function docstring and print statement |
| tests/observability/extensions/semantickernel/test_wrapper_semantic_kernel.py | Updated setup comment for consistency |
| tests/observability/extensions/openai/test_wrapper_openaiagents.py | Updated class docstrings, comments, and print statements |
| tests/observability/extensions/openai/integration/conftest.py | Updated fixture docstring |
| tests/observability/extensions/openai/integration/init.py | Updated module docstring |
| tests/observability/extensions/langchain/test_wrapper_langchain.py | Updated test docstrings, assertions, and print statements |
| tests/observability/extensions/agentframework/integration/conftest.py | Updated fixture docstring |
| tests/observability/extensions/agentframework/integration/init.py | Updated module docstring |
| tests/observability/core/test_invoke_agent_scope.py | Updated setup comment |
| tests/observability/core/test_inference_scope.py | Updated setup comment |
| tests/observability/core/test_execute_tool_scope.py | Updated setup comment |
| tests/observability/core/test_baggage_builder.py | Updated comment referencing span processor |
| tests/observability/core/test_alignment.py | Updated print statement |
| tests/observability/core/test_agent365.py | Updated function docstring and print statement |
| libraries/microsoft-agents-a365-runtime/microsoft_agents_a365/runtime/version_utils.py | Updated module docstring |
| libraries/microsoft-agents-a365-observability-extensions-semantickernel/microsoft_agents_a365/observability/extensions/semantickernel/trace_instrumentor.py | Updated error message |
| libraries/microsoft-agents-a365-observability-extensions-openai/microsoft_agents_a365/observability/extensions/openai/trace_instrumentor.py | Updated class docstring, comments, and error messages |
| libraries/microsoft-agents-a365-observability-extensions-openai/microsoft_agents_a365/observability/extensions/openai/init.py | Updated module docstring |
| libraries/microsoft-agents-a365-observability-extensions-langchain/microsoft_agents_a365/observability/extensions/langchain/tracer_instrumentor.py | Updated comment |
| libraries/microsoft-agents-a365-observability-extensions-agentframework/microsoft_agents_a365/observability/extensions/agentframework/trace_instrumentor.py | Updated error message |
| libraries/microsoft-agents-a365-observability-core/microsoft_agents_a365/observability/core/middleware/init.py | Updated comment |
| libraries/microsoft-agents-a365-observability-core/microsoft_agents_a365/observability/core/exporters/utils.py | Updated function docstring |
| libraries/microsoft-agents-a365-observability-core/microsoft_agents_a365/observability/core/exporters/agent365_exporter.py | Updated class docstring |
| libraries/microsoft-agents-a365-observability-core/microsoft_agents_a365/observability/core/init.py | Updated comment |
| HOW_TO_SET_A_VERSION.md | Updated document description |
Comments suppressed due to low confidence (1)
libraries/microsoft-agents-a365-observability-extensions-openai/microsoft_agents_a365/observability/extensions/openai/trace_instrumentor.py:65
- The variable name 'agent365_tracer' should be updated to 'agent_365_tracer' to maintain consistency with the branding update that uses 'Agent 365' with a space throughout the codebase.
agent365_tracer = cast(Tracer, tracer)
mrunalhirve128
approved these changes
Nov 14, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Updated the document to reflect the Microsoft branding for the Agent 365 Python SDK and made minor formatting adjustments.