Skip to content
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 API GitHub Plugin Skill + Frontend Auth (MSAL + Basic / PAT) #641

Merged
merged 47 commits into from
May 1, 2023
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
9f901ef
MSAL and token auth providers
gitri-ms Apr 18, 2023
9b7d454
Add basic, rename bearer auth provider
gitri-ms Apr 19, 2023
f1db573
Renaming bug fix
gitri-ms Apr 19, 2023
b51aaac
Fix camel case, add resource uri param
gitri-ms Apr 19, 2023
7532774
Merge branch 'main' into openapi-auth-new
gitri-ms Apr 19, 2023
ae1e6bf
Remove Azure auth provider
gitri-ms Apr 19, 2023
72a8702
Documentation comments
gitri-ms Apr 19, 2023
501b477
Merge branch 'main' into openapi-auth-new
gitri-ms Apr 19, 2023
c9fb443
Merge branch 'main' into openapi-auth-new
gitri-ms Apr 19, 2023
88a9c35
Formatting
gitri-ms Apr 19, 2023
8370672
Merge branch 'main' into openapi-auth-new
gitri-ms Apr 19, 2023
7d73b8e
Address PR comments
gitri-ms Apr 20, 2023
b701c97
Update OpenAPI example to use MSAL, add unit tests
gitri-ms Apr 20, 2023
c956fd4
Merge branch 'main' into openapi-auth-new
gitri-ms Apr 20, 2023
95dc1d7
formatting
gitri-ms Apr 20, 2023
64e8da6
Merge branch 'main' of https://github.com/teresaqhoang/semantic-kerne…
teresaqhoang Apr 20, 2023
bef0e05
GitHub Open API Skill example
teresaqhoang Apr 21, 2023
5462469
merge
teresaqhoang Apr 24, 2023
f3dae56
removing random comma causing scrollbar
teresaqhoang Apr 24, 2023
c937161
Adding GitHub Swagger + hooking up basic plugin auth in Copilot Chat
teresaqhoang Apr 25, 2023
205b84d
Updating UX and addressing PR comments
teresaqhoang Apr 26, 2023
28536ec
addressing comments
teresaqhoang Apr 26, 2023
18dc551
fixing merge conflicts and adding more comments
teresaqhoang Apr 26, 2023
a35bea0
renaming plugins -> OpenApiSkills in server
teresaqhoang Apr 26, 2023
1b323fc
Merge branch 'main' into openapi-github-pr-skill
teresaqhoang Apr 26, 2023
db42051
formatting + addressing comments
teresaqhoang Apr 26, 2023
f32fc8d
Merge branch 'main' into openapi-github-pr-skill
teresaqhoang Apr 26, 2023
402db58
fixing merge conflicts / format
teresaqhoang Apr 26, 2023
5b47d89
merge
teresaqhoang Apr 26, 2023
563d018
Merge branch 'main' into openapi-github-pr-skill
adrianwyatt Apr 27, 2023
a046d86
Merge branch 'main' into openapi-github-pr-skill
adrianwyatt Apr 27, 2023
cc97f7d
merge main
teresaqhoang Apr 28, 2023
3a9ba9c
Making User Agent optional header value, adding support for additiona…
teresaqhoang Apr 28, 2023
66c1a24
unit test
teresaqhoang Apr 28, 2023
ecb8d03
Merge branch 'main' into openapi-github-pr-skill
teresaqhoang Apr 28, 2023
ef4c5ea
Converting invalid operation ids to compliant SK Function names
teresaqhoang Apr 28, 2023
b833916
Official brand icons
teresaqhoang Apr 28, 2023
f7db7fd
Merge branch 'main' into openapi-github-pr-skill
teresaqhoang Apr 28, 2023
19c9ace
dotnet format fix
teresaqhoang Apr 28, 2023
d70ebcd
Merge branch 'openapi-github-pr-skill' of https://github.com/teresaqh…
teresaqhoang Apr 28, 2023
eee92b6
updating console log
teresaqhoang Apr 28, 2023
801ecba
addressing comments
teresaqhoang Apr 28, 2023
4229bcd
addressing comments
teresaqhoang Apr 28, 2023
c6caa5a
Addressing comments
teresaqhoang May 1, 2023
305b76e
merge + comments
teresaqhoang May 1, 2023
a3a822a
Merge branch 'main' into openapi-github-pr-skill
teresaqhoang May 1, 2023
fa09cb9
Merge branch 'main' into openapi-github-pr-skill
teresaqhoang May 1, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ public RestApiOperationRunner(HttpClient httpClient, AuthenticateRequestAsyncCal
requestMessage.Content = payload;
}

requestMessage.Headers.Add("User-Agent", "semantic-kernel");
teresaqhoang marked this conversation as resolved.
Show resolved Hide resolved

if (headers != null)
{
foreach (var header in headers)
Expand Down