-
Notifications
You must be signed in to change notification settings - Fork 15
feat(lab02): restructure PersonalCareerCopilot as sequential pipeline #lab02 #11
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
Open
ShivamGoyal03
wants to merge
14
commits into
main
Choose a base branch
from
shivam/lab02-personal-career-copilot
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 4 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
25ba779
feat: restructure PersonalCareerCopilot as sequential pipeline
ShivamGoyal03 6dd14e1
chore: update container and VS Code debug configuration
ShivamGoyal03 9711c2a
docs(lab02): update PersonalCareerCopilot README for sequential pipeline
ShivamGoyal03 096fa4c
chore: remove .env.example (replaced by inline instructions in README)
ShivamGoyal03 4993898
fix: apply Copilot review suggestions
ShivamGoyal03 22a33ff
fix: README troubleshooting covers both KeyErrors
ShivamGoyal03 4264cd0
docs(lab02): refresh modules 00-04 with path tabs and streamlined gui…
ShivamGoyal03 8cc41a7
docs(lab02): update modules 05-09 and lab02 readme navigation
ShivamGoyal03 e042862
docs(lab02): normalize mermaid diagrams for reliable rendering
ShivamGoyal03 246d351
docs(lab01): refine module guidance and local test flow
ShivamGoyal03 71fb85f
docs(lab02): sync deploy/config docs and project metadata
ShivamGoyal03 c9bd764
docs(lab02): add scaffold wizard screenshots
ShivamGoyal03 d968873
docs(lab02): resolve copilot review comments and align local run guid…
ShivamGoyal03 def26ee
clean translations
ShivamGoyal03 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| agent.manifest.yaml | ||
| agent.yaml | ||
| .env.example |
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 |
|---|---|---|
|
|
@@ -4,7 +4,4 @@ __pycache__ | |
| *.pyo | ||
| *.pyd | ||
| .Python | ||
| .foundry | ||
| .vscode | ||
| .env | ||
| README.md | ||
9 changes: 0 additions & 9 deletions
9
workshop/lab02-multi-agent/PersonalCareerCopilot/.env.example
This file was deleted.
Oops, something went wrong.
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
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
36 changes: 14 additions & 22 deletions
36
workshop/lab02-multi-agent/PersonalCareerCopilot/agent.yaml
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 |
|---|---|---|
| @@ -1,31 +1,23 @@ | ||
| # yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/AgentSchema/refs/heads/main/schemas/v1.0/ContainerAgent.yaml | ||
|
|
||
| name: PersonalCareerCopilot | ||
| kind: hosted | ||
| name: resume-job-fit-evaluator | ||
| protocols: | ||
| - protocol: responses | ||
| version: 1.0.0 | ||
| environment_variables: | ||
| - name: AZURE_AI_MODEL_DEPLOYMENT_NAME | ||
| value: ${AZURE_AI_MODEL_DEPLOYMENT_NAME} | ||
| description: > | ||
| A multi-agent workflow that evaluates resume-to-job fit. Four agents collaborate: | ||
| Resume Parser, Job Description Agent, Matching Agent, and Gap Analyzer. | ||
| Upload a resume and job description to get a fit score, missing skills, and a | ||
| personalized learning roadmap. | ||
| An Agent Framework workflow hosted by Foundry. | ||
| metadata: | ||
| authors: | ||
| - ShivamGoyal03 | ||
| tags: | ||
| - Agent Framework | ||
| - AI Agent Hosting | ||
| - Azure AI AgentServer | ||
| - Microsoft Agent Framework | ||
| - Multi-Agent Workflow | ||
| - Resume Evaluator | ||
| - Job Fit | ||
| - Learning Roadmap | ||
| protocols: | ||
| - protocol: responses | ||
| version: 1.0.0 | ||
| - Responses Protocol | ||
| - Streaming | ||
| resources: | ||
| cpu: '0.25' | ||
| memory: 0.5Gi | ||
| environment_variables: | ||
| - name: AZURE_AI_PROJECT_ENDPOINT | ||
| value: ${AZURE_AI_PROJECT_ENDPOINT} | ||
| - name: MODEL_DEPLOYMENT_NAME | ||
| value: ${MODEL_DEPLOYMENT_NAME} | ||
| cpu: '0.5' | ||
| memory: 1.0Gi | ||
| dockerfile_path: Dockerfile |
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
7 changes: 5 additions & 2 deletions
7
workshop/lab02-multi-agent/PersonalCareerCopilot/requirements.txt
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 |
|---|---|---|
| @@ -1,4 +1,7 @@ | ||
| agent-framework>=1.1.0 | ||
| # Use the narrow Foundry subpackages to keep dependencies light. | ||
| agent-framework-foundry | ||
| agent-framework-foundry-hosting | ||
| mcp<2,>=1.24.0 | ||
|
|
||
| # debugpy enables local debugging of this agent with the Foundry Toolkit VS Code extension. | ||
| debugpy | ||
| mcp |
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.