-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added file support to client library. * Updating C# sample to handle multipart requests + spec. * partial python * Finish non-streaming support. * added streaming * python feedback * delete env * Update samples/backend/csharp/Controllers/ChatController.cs Co-authored-by: Stephen Toub <stoub@microsoft.com> * Update samples/backend/csharp/Controllers/ChatController.cs Co-authored-by: Stephen Toub <stoub@microsoft.com> * Update samples/backend/csharp/Controllers/ChatController.cs Co-authored-by: Stephen Toub <stoub@microsoft.com> * Update samples/backend/csharp/Controllers/ChatController.cs Co-authored-by: Stephen Toub <stoub@microsoft.com> * Update samples/backend/csharp/Controllers/ChatController.cs Co-authored-by: Stephen Toub <stoub@microsoft.com> * Update samples/backend/csharp/Controllers/ChatController.cs Co-authored-by: Stephen Toub <stoub@microsoft.com> * Update samples/backend/csharp/Controllers/ChatController.cs Co-authored-by: Stephen Toub <stoub@microsoft.com> * Bump System.Text.Json from 8.0.3 to 8.0.4 in /samples/backend/csharp (#67) Bumps System.Text.Json from 8.0.3 to 8.0.4. --- updated-dependencies: - dependency-name: System.Text.Json dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Feedback --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: Stephen Toub <stoub@microsoft.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
1138f79
commit 83324eb
Showing
28 changed files
with
1,147 additions
and
217 deletions.
There are no files selected for viewing
This file contains 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
Validating CODEOWNERS rules …
This file contains 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,2 +1,3 @@ | ||
* @dargilco | ||
* @glecaros | ||
* @glecaros | ||
* @rohit-ganguly |
This file contains 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 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,15 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
using System.Text.Json.Serialization; | ||
|
||
namespace Backend.Model; | ||
|
||
public struct AIChatFile | ||
{ | ||
[JsonPropertyName("contentType")] | ||
public string ContentType { get; set; } | ||
|
||
[JsonPropertyName("data")] | ||
public BinaryData Data { get; set; } | ||
} |
This file contains 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 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
File renamed without changes.
This file contains 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 +1,2 @@ | ||
.env | ||
dist |
Oops, something went wrong.