-
Notifications
You must be signed in to change notification settings - Fork 342
Add ContainerFileCitationMessageAnnotation
#792
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 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
275d905
Rename GetContainerFileContent to DownloadContainerFile
joseharriaga c51fb6f
Add ContainerFileCitationMessageAnnotation
joseharriaga 7f01dc9
Fix typo in sample
joseharriaga 12414b8
Use container file citation filename in sample
joseharriaga 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
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,56 @@ | ||
| using NUnit.Framework; | ||
| using OpenAI.Containers; | ||
| using OpenAI.Responses; | ||
| using System; | ||
| using System.Collections.Generic; | ||
| using System.IO; | ||
| using System.Linq; | ||
|
|
||
| namespace OpenAI.Examples; | ||
|
|
||
| // This example uses experimental APIs which are subject to change. To use experimental APIs, | ||
| // please acknowledge their experimental status by suppressing the corresponding warning. | ||
| #pragma warning disable OPENAI001 | ||
|
|
||
| public partial class ResponseExamples | ||
| { | ||
| [Test] | ||
| public void Example10_CodeInterpreter() | ||
| { | ||
| OpenAIResponseClient client = new(model: "gpt-5", apiKey: Environment.GetEnvironmentVariable("OPENAI_API_KEY")); | ||
|
|
||
| CodeInterpreterToolContainer container = new(CodeInterpreterToolContainerConfiguration.CreateAutomaticContainerConfiguration()); | ||
| CodeInterpreterTool codeInterpreterTool = new(container); | ||
| ResponseCreationOptions options = new() | ||
| { | ||
| Tools = { codeInterpreterTool } | ||
| }; | ||
|
|
||
| List<ResponseItem> inputItems = | ||
| [ | ||
| ResponseItem.CreateUserMessageItem("Create an Excel spreadsheet that contains the mathematical times tables from 1-12."), | ||
| ]; | ||
|
|
||
| OpenAIResponse response = client.CreateResponse(inputItems, options); | ||
|
|
||
| MessageResponseItem message = response.OutputItems | ||
| .OfType<MessageResponseItem>() | ||
| .FirstOrDefault(); | ||
|
|
||
| ResponseContentPart contentPart = message.Content | ||
| .Where(part => part.Kind == ResponseContentPartKind.OutputText) | ||
| .FirstOrDefault(); | ||
|
|
||
| ContainerFileCitationMessageAnnotation containerFileCitation = contentPart.OutputTextAnnotations | ||
| .OfType<ContainerFileCitationMessageAnnotation>() | ||
| .FirstOrDefault(); | ||
|
|
||
| // Download the file from the container and save it. | ||
| ContainerClient containerClient = new(apiKey: Environment.GetEnvironmentVariable("OPENAI_API_KEY")); | ||
| BinaryData fileBytes = containerClient.DownloadContainerFile(containerFileCitation.ContainerId, containerFileCitation.FileId); | ||
| using FileStream stream = File.OpenWrite($"{Guid.NewGuid()}.xlsx"); | ||
| fileBytes.ToStream().CopyTo(stream); | ||
| } | ||
| } | ||
|
|
||
| #pragma warning restore OPENAI001 |
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,57 @@ | ||
| using NUnit.Framework; | ||
| using OpenAI.Containers; | ||
| using OpenAI.Responses; | ||
| using System; | ||
| using System.Collections.Generic; | ||
| using System.IO; | ||
| using System.Linq; | ||
| using System.Threading.Tasks; | ||
|
|
||
| namespace OpenAI.Examples; | ||
|
|
||
| // This example uses experimental APIs which are subject to change. To use experimental APIs, | ||
| // please acknowledge their experimental status by suppressing the corresponding warning. | ||
| #pragma warning disable OPENAI001 | ||
|
|
||
| public partial class ResponseExamples | ||
| { | ||
| [Test] | ||
| public async Task Example10_CodeInterpreterAsync() | ||
| { | ||
| OpenAIResponseClient client = new(model: "gpt-5", apiKey: Environment.GetEnvironmentVariable("OPENAI_API_KEY")); | ||
|
|
||
| CodeInterpreterToolContainer container = new(CodeInterpreterToolContainerConfiguration.CreateAutomaticContainerConfiguration()); | ||
| CodeInterpreterTool codeInterpreterTool = new(container); | ||
| ResponseCreationOptions options = new() | ||
| { | ||
| Tools = { codeInterpreterTool } | ||
| }; | ||
|
|
||
| List<ResponseItem> inputItems = | ||
| [ | ||
| ResponseItem.CreateUserMessageItem("Create an Excel spreadsheet that contains the mathematical times tables from 1-12."), | ||
| ]; | ||
|
|
||
| OpenAIResponse response = await client.CreateResponseAsync(inputItems, options); | ||
|
|
||
| MessageResponseItem message = response.OutputItems | ||
| .OfType<MessageResponseItem>() | ||
| .FirstOrDefault(); | ||
|
|
||
| ResponseContentPart contentPart = message.Content | ||
| .Where(part => part.Kind == ResponseContentPartKind.OutputText) | ||
| .FirstOrDefault(); | ||
|
|
||
| ContainerFileCitationMessageAnnotation containerFileCitation = contentPart.OutputTextAnnotations | ||
| .OfType<ContainerFileCitationMessageAnnotation>() | ||
| .FirstOrDefault(); | ||
|
|
||
| // Download the file from the container and save it. | ||
| ContainerClient containerClient = new(apiKey: Environment.GetEnvironmentVariable("OPENAI_API_KEY")); | ||
| BinaryData fileBytes = await containerClient.DownloadContainerFileAsync(containerFileCitation.ContainerId, containerFileCitation.FileId); | ||
| using FileStream stream = File.OpenWrite($"{Guid.NewGuid()}.xlsx"); | ||
| fileBytes.ToStream().CopyTo(stream); | ||
| } | ||
| } | ||
|
|
||
| #pragma warning restore OPENAI001 | ||
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
7 changes: 7 additions & 0 deletions
7
src/Custom/Responses/Annotations/ContainerFileCitationMessageAnnotation.cs
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,7 @@ | ||
| namespace OpenAI.Responses; | ||
|
|
||
| // CUSTOM: Renamed. | ||
| [CodeGenType("ContainerFileCitationBody")] | ||
| public partial class ContainerFileCitationMessageAnnotation | ||
| { | ||
| } |
3 changes: 1 addition & 2 deletions
3
src/Custom/Responses/Annotations/FileCitationMessageAnnotation.cs
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
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does the response provide any information about the expected file extension of the file, or would the caller always need to know this somehow?
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The extension is visible in the
Filenameof theContainerFileCitationMessageAnnotation. I have modified the sample to use that instead.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
much better!