docs: document dynamic port assignment and remove hardcoded 5272 references#447
Merged
MaanavD merged 1 commit intomicrosoft:mainfrom Feb 19, 2026
Merged
Conversation
…rences Foundry Local assigns a dynamic port on each service start. This commit: - Replaces hardcoded localhost:5272 in the architecture diagram and BYOK table - Updates code comments to note the port is dynamically assigned - Adds an IMPORTANT callout in the README SDK section about dynamic ports - Documents 'foundry service status' as the CLI discovery method Related to microsoft#424
|
@MaanavD is attempting to deploy a commit to the MSFT-AIP Team on Vercel. A member of the Team first needs to authorize it. |
bmehta001
approved these changes
Feb 19, 2026
bmehta001
approved these changes
Feb 19, 2026
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.
Summary
Foundry Local assigns a dynamic port each time the service starts, but several docs and examples hardcode
localhost:5272, which misleads users into thinking the port is fixed.This PR:
docs/copilot-sdk-integration.md: Replaces hardcodedlocalhost:5272in the architecture diagram, Quick Start code comment, and BYOK reference table with dynamic port guidancesamples/js/copilot-sdk-foundry-local/README.md: Updates BYOK code comment to note the port is dynamically assignedREADME.md: Adds an[!IMPORTANT]callout in the SDK integration section explaining that the port is dynamic and how to discover it (manager.endpointorfoundry service status)Related to #424