generated from amazon-archives/__template_Apache-2.0
-
Notifications
You must be signed in to change notification settings - Fork 1k
feat: Amazon SageMaker HyperPod MCP Server #1208
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 10 commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
98c2acb
feat: hyperpod mcp server full implementation
aaeca16
docs: add documentation page for hyperpod mcp server
a7b1d1e
Merge branch 'awslabs:main' into main
jade710 67d6262
chore: use sequential try-catch blocks for update_hp_cluster tool
00c50ee
chore: revise stack handler fallback instructions
f7240a6
chore: update deployment time to better reflect real-world deployment…
e53d2ca
chore: remove docker support for now
93b74c4
chore: update server namespace to sagemaker-hyperpod-mcp-server
aa76239
chore: update main README for new sagemaker-hyperpod-mcp-server
b8cecad
chore: add instruction for param file naming
c8f417e
Merge branch 'awslabs:main' into main
jade710 f4b6862
fix: address pyright build issues
c6b24e3
fix: update uv version to 0.8.10
0a2248b
fix: more fixing for pyright build
8a75220
fix: code cleanups for pyright build
923949e
chore: revise README for functionalities
465f970
Merge branch 'main' into main
jade710 74ab7a5
chore: revise readme
42fda28
Merge branch 'main' into main
krokoko 7bf5ff9
Merge branch 'awslabs:main' into main
jade710 ff84be4
feat: add Slurm orchestrator option in create cluster
164c4a4
chore: remove knowledge base tool for now
f3ef3c9
chore: revise unit tests accordingly
5a280c7
chore: address review comments
9e96583
Merge branch 'awslabs:main' into main
jade710 8be514b
Merge branch 'main' into main
krokoko 9847ba2
Merge branch 'main' into main
krokoko 339e238
Merge branch 'main' into main
krokoko a2413de
chore: remove precommit notes from readme
9a7d2fd
chore: add sagemaker-hyperpod-mcp-server code owners
69dbf46
chore: address more comments
e4d5394
Merge branch 'main' into main
krokoko File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| --- | ||
| title: Amazon SageMaker HyperPod MCP Server | ||
| --- | ||
|
|
||
| import ReadmeContent from "../../../src/sagemaker-hyperpod-mcp-server/README.md"; | ||
|
|
||
| <div className="readme-content"> | ||
| <style> | ||
| {` | ||
| .readme-content h1:first-of-type { | ||
| display: none; | ||
| } | ||
| `} | ||
| </style> | ||
| <ReadmeContent /> | ||
| </div> |
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,63 @@ | ||
| # Python | ||
| __pycache__/ | ||
| *.py[cod] | ||
| *$py.class | ||
| *.so | ||
| .Python | ||
| build/ | ||
| develop-eggs/ | ||
| dist/ | ||
| downloads/ | ||
| eggs/ | ||
| .eggs/ | ||
| lib/ | ||
| lib64/ | ||
| parts/ | ||
| sdist/ | ||
| var/ | ||
| wheels/ | ||
| share/python-wheels/ | ||
| *.egg-info/ | ||
| .installed.cfg | ||
| *.egg | ||
| MANIFEST | ||
|
|
||
| # Virtual environments | ||
| .venv | ||
| env/ | ||
| venv/ | ||
| ENV/ | ||
|
|
||
| # IDE | ||
| .idea/ | ||
| .vscode/ | ||
| *.swp | ||
| *.swo | ||
|
|
||
| # Testing | ||
| .tox/ | ||
| .coverage | ||
| .coverage.* | ||
| htmlcov/ | ||
| .pytest_cache/ | ||
|
|
||
| # Ruff | ||
| .ruff_cache/ | ||
|
|
||
| # Build | ||
| *.manifest | ||
| *.spec | ||
| .pybuilder/ | ||
| target/ | ||
| build | ||
|
|
||
| # Environments | ||
| .env | ||
| .env.local | ||
| .env.*.local | ||
|
|
||
| # PyPI | ||
| .pypirc | ||
|
|
||
| # MCP param | ||
| *-params.json |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| 3.10 |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| # Changelog | ||
|
|
||
| All notable changes to this project will be documented in this file. | ||
|
|
||
| The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
| and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
|
||
| ## Unreleased | ||
|
|
||
| ### Added | ||
|
|
||
| - Initial project setup |
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.