openai/openai-dotnet

Public

mirrored from https://github.com/openai/openai-dotnetAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
83db8ef208eccfa6eeff4aaa710be7330936f083

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

OpenAI.Responses/src/Custom/Annotations/UriCitationMessageAnnotation.cs

13lines · modecode

1using Microsoft.TypeSpec.Generator.Customizations;
2using System;
3
4namespace OpenAI.Responses;
5
6// CUSTOM: Renamed.
7[CodeGenType("AnnotationUrlCitation")]
8public partial class UriCitationMessageAnnotation
9{
10 // CUSTOM: Renamed.
11 [CodeGenMember("Url")]
12 public Uri Uri { get; set; }
13}
14