├── .devcontainer └── devcontainer.json ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ └── main.yml ├── .gitignore ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── semantic-kernel-in-action-1-fundamentals-3836112.sln └── src ├── 02_05b ├── .vscode │ └── snippets_02_05b.code-snippets ├── 02_05b.csproj └── Program.cs ├── 02_05e ├── .vscode │ └── snippets_02_05.code-snippets ├── 02_05.csproj ├── Program.cs └── TryingOutTheKernel.cs ├── 03_03b ├── .vscode │ └── 03_03.code-snippets ├── 03_03b.csproj └── Program.cs ├── 03_03e ├── .vscode │ └── 03_03.code-snippets ├── 03_03e.csproj ├── Program.cs ├── PromptFunction.cs └── plugins │ └── SummarizePlugin │ └── Summarize │ ├── config.json │ └── skprompt.txt ├── 03_05b ├── .vscode │ └── snippets.code-snippets ├── 03_05b.csproj └── Program.cs ├── 03_05e ├── .vscode │ └── snippets.code-snippets ├── 03_05e.csproj ├── NativeFunction.cs ├── Program.cs └── plugins │ └── MyMathPlugin.cs ├── 03_08b ├── .vscode │ └── snippets.code-snippets ├── 03_08b.csproj └── Program.cs ├── 03_08e ├── .vscode │ └── snippets.code-snippets ├── 03_08e.csproj ├── HandlebarsPromptTemplate.cs ├── Program.cs └── plugins │ └── WhatTimeIsIt.cs ├── 03_10b ├── .vscode │ └── snippets.code-snippets ├── 03_10b.csproj └── Program.cs ├── 03_10e ├── .vscode │ └── snippets.code-snippets ├── 03_10e.csproj ├── HandlebarsChainingFunctions.cs ├── Program.cs └── plugins │ └── RoleTalk │ ├── RespondAsPoliceman │ ├── config.json │ └── skprompt.txt │ └── RespondAsScientist │ ├── config.json │ └── skprompt.txt ├── 04_03b ├── .vscode │ └── snippets.code-snippets ├── 04_03b.csproj └── Program.cs ├── 04_03e ├── .vscode │ └── snippets.code-snippets ├── 04_03e.csproj ├── FunctionCalling.cs ├── Program.cs └── plugins │ └── WhatDateIsIt.cs ├── 04_05b ├── .vscode │ └── snippets.code-snippets ├── 04_05b.csproj └── Program.cs ├── 04_05e ├── .vscode │ └── snippets.code-snippets ├── 04_05e.csproj ├── HandlebarsPlannerPractice.cs └── Program.cs ├── 04_07b ├── .vscode │ └── snippets.code-snippets ├── 04_07b.csproj └── Program.cs ├── 04_07e ├── .vscode │ └── snippets.code-snippets ├── 04_07e.csproj ├── Program.cs └── StepwisePlannerPractice.cs ├── 05_03b ├── .vscode │ └── snippets.code-snippets ├── 05_03b.csproj ├── Agent.txt └── Program.cs ├── 05_03e ├── .vscode │ └── snippets.code-snippets ├── 05_03e.csproj ├── AgentCraftingPractice.cs ├── Agents │ └── ParrotAgent.yaml └── Program.cs ├── 05_05b ├── .vscode │ └── snippets.code-snippets ├── 05_05b.csproj ├── Agents.txt └── Program.cs ├── 05_05e ├── .vscode │ └── snippets.code-snippets ├── 05_05e.csproj ├── AgentDelegationPractice.cs ├── Agents │ ├── ParrotAgent.yaml │ └── ToolAgent.yaml ├── Program.cs └── plugins │ └── MenuPlugin.cs ├── 05_07b ├── .vscode │ └── snippets.code-snippets ├── 05_07b.csproj └── Program.cs ├── 05_07e ├── .vscode │ └── snippets.code-snippets ├── 05_07e.csproj ├── AgentCollaborationPractice.cs └── Program.cs ├── 06_04b ├── .vscode │ └── snippets.code-snippets ├── 06_04b.csproj └── Program.cs ├── 06_04e ├── .vscode │ └── snippets.code-snippets ├── 06_04e.csproj ├── ImplementingMemoriesPractice.cs └── Program.cs ├── 07_02b ├── .vscode │ └── snippets.code-snippets ├── 07_02b.csproj └── Program.cs ├── 07_02e ├── .vscode │ └── snippets.code-snippets ├── 07_02e.csproj ├── Program.cs ├── ResearcherProject.cs └── plugins │ └── WebSearch │ ├── WebSearchPlugin.cs │ └── WebSearchResult.cs ├── 07_03e ├── .vscode │ └── snippets.code-snippets ├── 07_02e.csproj ├── Program.cs ├── ResearcherProject.cs ├── plugins │ └── WebSearch │ │ ├── WebSearchPlugin.cs │ │ └── WebSearchResult.cs └── searchResults.json ├── 07_04e ├── .vscode │ └── snippets.code-snippets ├── 07_02e.csproj ├── Program.cs ├── ResearcherProject.cs ├── plugins │ └── WebSearch │ │ ├── WebSearchPlugin.cs │ │ └── WebSearchResult.cs └── searchResults.json └── 07_05e ├── .vscode └── snippets.code-snippets ├── 07_02e.csproj ├── Program.cs ├── ResearcherProject.cs ├── plugins └── WebSearch │ ├── WebSearchPlugin.cs │ └── WebSearchResult.cs ├── searchResults.json └── searchResultsSummarized.txt /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/README.md -------------------------------------------------------------------------------- /semantic-kernel-in-action-1-fundamentals-3836112.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/semantic-kernel-in-action-1-fundamentals-3836112.sln -------------------------------------------------------------------------------- /src/02_05b/.vscode/snippets_02_05b.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/02_05b/.vscode/snippets_02_05b.code-snippets -------------------------------------------------------------------------------- /src/02_05b/02_05b.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/02_05b/02_05b.csproj -------------------------------------------------------------------------------- /src/02_05b/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/02_05b/Program.cs -------------------------------------------------------------------------------- /src/02_05e/.vscode/snippets_02_05.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/02_05e/.vscode/snippets_02_05.code-snippets -------------------------------------------------------------------------------- /src/02_05e/02_05.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/02_05e/02_05.csproj -------------------------------------------------------------------------------- /src/02_05e/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/02_05e/Program.cs -------------------------------------------------------------------------------- /src/02_05e/TryingOutTheKernel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/02_05e/TryingOutTheKernel.cs -------------------------------------------------------------------------------- /src/03_03b/.vscode/03_03.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_03b/.vscode/03_03.code-snippets -------------------------------------------------------------------------------- /src/03_03b/03_03b.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_03b/03_03b.csproj -------------------------------------------------------------------------------- /src/03_03b/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_03b/Program.cs -------------------------------------------------------------------------------- /src/03_03e/.vscode/03_03.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_03e/.vscode/03_03.code-snippets -------------------------------------------------------------------------------- /src/03_03e/03_03e.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_03e/03_03e.csproj -------------------------------------------------------------------------------- /src/03_03e/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_03e/Program.cs -------------------------------------------------------------------------------- /src/03_03e/PromptFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_03e/PromptFunction.cs -------------------------------------------------------------------------------- /src/03_03e/plugins/SummarizePlugin/Summarize/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_03e/plugins/SummarizePlugin/Summarize/config.json -------------------------------------------------------------------------------- /src/03_03e/plugins/SummarizePlugin/Summarize/skprompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_03e/plugins/SummarizePlugin/Summarize/skprompt.txt -------------------------------------------------------------------------------- /src/03_05b/.vscode/snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_05b/.vscode/snippets.code-snippets -------------------------------------------------------------------------------- /src/03_05b/03_05b.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_05b/03_05b.csproj -------------------------------------------------------------------------------- /src/03_05b/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_05b/Program.cs -------------------------------------------------------------------------------- /src/03_05e/.vscode/snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_05e/.vscode/snippets.code-snippets -------------------------------------------------------------------------------- /src/03_05e/03_05e.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_05e/03_05e.csproj -------------------------------------------------------------------------------- /src/03_05e/NativeFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_05e/NativeFunction.cs -------------------------------------------------------------------------------- /src/03_05e/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_05e/Program.cs -------------------------------------------------------------------------------- /src/03_05e/plugins/MyMathPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_05e/plugins/MyMathPlugin.cs -------------------------------------------------------------------------------- /src/03_08b/.vscode/snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_08b/.vscode/snippets.code-snippets -------------------------------------------------------------------------------- /src/03_08b/03_08b.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_08b/03_08b.csproj -------------------------------------------------------------------------------- /src/03_08b/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_08b/Program.cs -------------------------------------------------------------------------------- /src/03_08e/.vscode/snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_08e/.vscode/snippets.code-snippets -------------------------------------------------------------------------------- /src/03_08e/03_08e.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_08e/03_08e.csproj -------------------------------------------------------------------------------- /src/03_08e/HandlebarsPromptTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_08e/HandlebarsPromptTemplate.cs -------------------------------------------------------------------------------- /src/03_08e/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_08e/Program.cs -------------------------------------------------------------------------------- /src/03_08e/plugins/WhatTimeIsIt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_08e/plugins/WhatTimeIsIt.cs -------------------------------------------------------------------------------- /src/03_10b/.vscode/snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_10b/.vscode/snippets.code-snippets -------------------------------------------------------------------------------- /src/03_10b/03_10b.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_10b/03_10b.csproj -------------------------------------------------------------------------------- /src/03_10b/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_10b/Program.cs -------------------------------------------------------------------------------- /src/03_10e/.vscode/snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_10e/.vscode/snippets.code-snippets -------------------------------------------------------------------------------- /src/03_10e/03_10e.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_10e/03_10e.csproj -------------------------------------------------------------------------------- /src/03_10e/HandlebarsChainingFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_10e/HandlebarsChainingFunctions.cs -------------------------------------------------------------------------------- /src/03_10e/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_10e/Program.cs -------------------------------------------------------------------------------- /src/03_10e/plugins/RoleTalk/RespondAsPoliceman/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_10e/plugins/RoleTalk/RespondAsPoliceman/config.json -------------------------------------------------------------------------------- /src/03_10e/plugins/RoleTalk/RespondAsPoliceman/skprompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_10e/plugins/RoleTalk/RespondAsPoliceman/skprompt.txt -------------------------------------------------------------------------------- /src/03_10e/plugins/RoleTalk/RespondAsScientist/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_10e/plugins/RoleTalk/RespondAsScientist/config.json -------------------------------------------------------------------------------- /src/03_10e/plugins/RoleTalk/RespondAsScientist/skprompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/03_10e/plugins/RoleTalk/RespondAsScientist/skprompt.txt -------------------------------------------------------------------------------- /src/04_03b/.vscode/snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/04_03b/.vscode/snippets.code-snippets -------------------------------------------------------------------------------- /src/04_03b/04_03b.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/04_03b/04_03b.csproj -------------------------------------------------------------------------------- /src/04_03b/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/04_03b/Program.cs -------------------------------------------------------------------------------- /src/04_03e/.vscode/snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/04_03e/.vscode/snippets.code-snippets -------------------------------------------------------------------------------- /src/04_03e/04_03e.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/04_03e/04_03e.csproj -------------------------------------------------------------------------------- /src/04_03e/FunctionCalling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/04_03e/FunctionCalling.cs -------------------------------------------------------------------------------- /src/04_03e/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/04_03e/Program.cs -------------------------------------------------------------------------------- /src/04_03e/plugins/WhatDateIsIt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/04_03e/plugins/WhatDateIsIt.cs -------------------------------------------------------------------------------- /src/04_05b/.vscode/snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/04_05b/.vscode/snippets.code-snippets -------------------------------------------------------------------------------- /src/04_05b/04_05b.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/04_05b/04_05b.csproj -------------------------------------------------------------------------------- /src/04_05b/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/04_05b/Program.cs -------------------------------------------------------------------------------- /src/04_05e/.vscode/snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/04_05e/.vscode/snippets.code-snippets -------------------------------------------------------------------------------- /src/04_05e/04_05e.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/04_05e/04_05e.csproj -------------------------------------------------------------------------------- /src/04_05e/HandlebarsPlannerPractice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/04_05e/HandlebarsPlannerPractice.cs -------------------------------------------------------------------------------- /src/04_05e/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/04_05e/Program.cs -------------------------------------------------------------------------------- /src/04_07b/.vscode/snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/04_07b/.vscode/snippets.code-snippets -------------------------------------------------------------------------------- /src/04_07b/04_07b.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/04_07b/04_07b.csproj -------------------------------------------------------------------------------- /src/04_07b/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/04_07b/Program.cs -------------------------------------------------------------------------------- /src/04_07e/.vscode/snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/04_07e/.vscode/snippets.code-snippets -------------------------------------------------------------------------------- /src/04_07e/04_07e.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/04_07e/04_07e.csproj -------------------------------------------------------------------------------- /src/04_07e/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/04_07e/Program.cs -------------------------------------------------------------------------------- /src/04_07e/StepwisePlannerPractice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/04_07e/StepwisePlannerPractice.cs -------------------------------------------------------------------------------- /src/05_03b/.vscode/snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/05_03b/.vscode/snippets.code-snippets -------------------------------------------------------------------------------- /src/05_03b/05_03b.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/05_03b/05_03b.csproj -------------------------------------------------------------------------------- /src/05_03b/Agent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/05_03b/Agent.txt -------------------------------------------------------------------------------- /src/05_03b/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/05_03b/Program.cs -------------------------------------------------------------------------------- /src/05_03e/.vscode/snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/05_03e/.vscode/snippets.code-snippets -------------------------------------------------------------------------------- /src/05_03e/05_03e.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/05_03e/05_03e.csproj -------------------------------------------------------------------------------- /src/05_03e/AgentCraftingPractice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/05_03e/AgentCraftingPractice.cs -------------------------------------------------------------------------------- /src/05_03e/Agents/ParrotAgent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/05_03e/Agents/ParrotAgent.yaml -------------------------------------------------------------------------------- /src/05_03e/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/05_03e/Program.cs -------------------------------------------------------------------------------- /src/05_05b/.vscode/snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/05_05b/.vscode/snippets.code-snippets -------------------------------------------------------------------------------- /src/05_05b/05_05b.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/05_05b/05_05b.csproj -------------------------------------------------------------------------------- /src/05_05b/Agents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/05_05b/Agents.txt -------------------------------------------------------------------------------- /src/05_05b/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/05_05b/Program.cs -------------------------------------------------------------------------------- /src/05_05e/.vscode/snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/05_05e/.vscode/snippets.code-snippets -------------------------------------------------------------------------------- /src/05_05e/05_05e.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/05_05e/05_05e.csproj -------------------------------------------------------------------------------- /src/05_05e/AgentDelegationPractice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/05_05e/AgentDelegationPractice.cs -------------------------------------------------------------------------------- /src/05_05e/Agents/ParrotAgent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/05_05e/Agents/ParrotAgent.yaml -------------------------------------------------------------------------------- /src/05_05e/Agents/ToolAgent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/05_05e/Agents/ToolAgent.yaml -------------------------------------------------------------------------------- /src/05_05e/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/05_05e/Program.cs -------------------------------------------------------------------------------- /src/05_05e/plugins/MenuPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/05_05e/plugins/MenuPlugin.cs -------------------------------------------------------------------------------- /src/05_07b/.vscode/snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/05_07b/.vscode/snippets.code-snippets -------------------------------------------------------------------------------- /src/05_07b/05_07b.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/05_07b/05_07b.csproj -------------------------------------------------------------------------------- /src/05_07b/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/05_07b/Program.cs -------------------------------------------------------------------------------- /src/05_07e/.vscode/snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/05_07e/.vscode/snippets.code-snippets -------------------------------------------------------------------------------- /src/05_07e/05_07e.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/05_07e/05_07e.csproj -------------------------------------------------------------------------------- /src/05_07e/AgentCollaborationPractice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/05_07e/AgentCollaborationPractice.cs -------------------------------------------------------------------------------- /src/05_07e/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/05_07e/Program.cs -------------------------------------------------------------------------------- /src/06_04b/.vscode/snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/06_04b/.vscode/snippets.code-snippets -------------------------------------------------------------------------------- /src/06_04b/06_04b.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/06_04b/06_04b.csproj -------------------------------------------------------------------------------- /src/06_04b/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/06_04b/Program.cs -------------------------------------------------------------------------------- /src/06_04e/.vscode/snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/06_04e/.vscode/snippets.code-snippets -------------------------------------------------------------------------------- /src/06_04e/06_04e.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/06_04e/06_04e.csproj -------------------------------------------------------------------------------- /src/06_04e/ImplementingMemoriesPractice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/06_04e/ImplementingMemoriesPractice.cs -------------------------------------------------------------------------------- /src/06_04e/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/06_04e/Program.cs -------------------------------------------------------------------------------- /src/07_02b/.vscode/snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/07_02b/.vscode/snippets.code-snippets -------------------------------------------------------------------------------- /src/07_02b/07_02b.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/07_02b/07_02b.csproj -------------------------------------------------------------------------------- /src/07_02b/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/07_02b/Program.cs -------------------------------------------------------------------------------- /src/07_02e/.vscode/snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/07_02e/.vscode/snippets.code-snippets -------------------------------------------------------------------------------- /src/07_02e/07_02e.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/07_02e/07_02e.csproj -------------------------------------------------------------------------------- /src/07_02e/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/07_02e/Program.cs -------------------------------------------------------------------------------- /src/07_02e/ResearcherProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/07_02e/ResearcherProject.cs -------------------------------------------------------------------------------- /src/07_02e/plugins/WebSearch/WebSearchPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/07_02e/plugins/WebSearch/WebSearchPlugin.cs -------------------------------------------------------------------------------- /src/07_02e/plugins/WebSearch/WebSearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/07_02e/plugins/WebSearch/WebSearchResult.cs -------------------------------------------------------------------------------- /src/07_03e/.vscode/snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/07_03e/.vscode/snippets.code-snippets -------------------------------------------------------------------------------- /src/07_03e/07_02e.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/07_03e/07_02e.csproj -------------------------------------------------------------------------------- /src/07_03e/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/07_03e/Program.cs -------------------------------------------------------------------------------- /src/07_03e/ResearcherProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/07_03e/ResearcherProject.cs -------------------------------------------------------------------------------- /src/07_03e/plugins/WebSearch/WebSearchPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/07_03e/plugins/WebSearch/WebSearchPlugin.cs -------------------------------------------------------------------------------- /src/07_03e/plugins/WebSearch/WebSearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/07_03e/plugins/WebSearch/WebSearchResult.cs -------------------------------------------------------------------------------- /src/07_03e/searchResults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/07_03e/searchResults.json -------------------------------------------------------------------------------- /src/07_04e/.vscode/snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/07_04e/.vscode/snippets.code-snippets -------------------------------------------------------------------------------- /src/07_04e/07_02e.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/07_04e/07_02e.csproj -------------------------------------------------------------------------------- /src/07_04e/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/07_04e/Program.cs -------------------------------------------------------------------------------- /src/07_04e/ResearcherProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/07_04e/ResearcherProject.cs -------------------------------------------------------------------------------- /src/07_04e/plugins/WebSearch/WebSearchPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/07_04e/plugins/WebSearch/WebSearchPlugin.cs -------------------------------------------------------------------------------- /src/07_04e/plugins/WebSearch/WebSearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/07_04e/plugins/WebSearch/WebSearchResult.cs -------------------------------------------------------------------------------- /src/07_04e/searchResults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/07_04e/searchResults.json -------------------------------------------------------------------------------- /src/07_05e/.vscode/snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/07_05e/.vscode/snippets.code-snippets -------------------------------------------------------------------------------- /src/07_05e/07_02e.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/07_05e/07_02e.csproj -------------------------------------------------------------------------------- /src/07_05e/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/07_05e/Program.cs -------------------------------------------------------------------------------- /src/07_05e/ResearcherProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/07_05e/ResearcherProject.cs -------------------------------------------------------------------------------- /src/07_05e/plugins/WebSearch/WebSearchPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/07_05e/plugins/WebSearch/WebSearchPlugin.cs -------------------------------------------------------------------------------- /src/07_05e/plugins/WebSearch/WebSearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/07_05e/plugins/WebSearch/WebSearchResult.cs -------------------------------------------------------------------------------- /src/07_05e/searchResults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/07_05e/searchResults.json -------------------------------------------------------------------------------- /src/07_05e/searchResultsSummarized.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/semantic-kernel-in-action-1-fundamentals-3836112/HEAD/src/07_05e/searchResultsSummarized.txt --------------------------------------------------------------------------------