@@ -26,35 +26,33 @@ public AzureOpenAIClient(System.Uri endpoint, Azure.Core.TokenCredential credent
2626 public AzureOpenAIClient ( System . Uri endpoint , Azure . Core . TokenCredential credential , Azure . AI . OpenAI . AzureOpenAIClientOptions options ) { }
2727 public AzureOpenAIClient ( System . Uri endpoint , System . ClientModel . ApiKeyCredential credential ) { }
2828 public AzureOpenAIClient ( System . Uri endpoint , System . ClientModel . ApiKeyCredential credential , Azure . AI . OpenAI . AzureOpenAIClientOptions options ) { }
29- [ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
3029 public override OpenAI . Assistants . AssistantClient GetAssistantClient ( ) { throw null ; }
3130 public override OpenAI . Audio . AudioClient GetAudioClient ( string deploymentName ) { throw null ; }
3231 [ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
3332 public override OpenAI . Batch . BatchClient GetBatchClient ( ) { throw null ; }
34- [ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
3533 public OpenAI . Batch . BatchClient GetBatchClient ( string deploymentName ) { throw null ; }
3634 public override OpenAI . Chat . ChatClient GetChatClient ( string deploymentName ) { throw null ; }
3735 public override OpenAI . Embeddings . EmbeddingClient GetEmbeddingClient ( string deploymentName ) { throw null ; }
38- [ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
3936 public override OpenAI . FineTuning . FineTuningClient GetFineTuningClient ( ) { throw null ; }
4037 public override OpenAI . Images . ImageClient GetImageClient ( string deploymentName ) { throw null ; }
4138 [ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
4239 public override OpenAI . Moderations . ModerationClient GetModerationClient ( string _ ) { throw null ; }
43- [ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
4440 public override OpenAI . Files . OpenAIFileClient GetOpenAIFileClient ( ) { throw null ; }
4541 [ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
4642 public override OpenAI . Models . OpenAIModelClient GetOpenAIModelClient ( ) { throw null ; }
47- [ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
43+ public override OpenAI . RealtimeConversation . RealtimeConversationClient GetRealtimeConversationClient ( string deploymentName ) { throw null ; }
4844 public override OpenAI . VectorStores . VectorStoreClient GetVectorStoreClient ( ) { throw null ; }
4945 }
5046 public partial class AzureOpenAIClientOptions : System . ClientModel . Primitives . ClientPipelineOptions
5147 {
52- public AzureOpenAIClientOptions ( Azure . AI . OpenAI . AzureOpenAIClientOptions . ServiceVersion version = Azure . AI . OpenAI . AzureOpenAIClientOptions . ServiceVersion . V2024_06_01 ) { }
48+ public AzureOpenAIClientOptions ( Azure . AI . OpenAI . AzureOpenAIClientOptions . ServiceVersion version = Azure . AI . OpenAI . AzureOpenAIClientOptions . ServiceVersion . V2024_08_01_Preview ) { }
5349 public Azure . AI . OpenAI . AzureOpenAIAudience ? Audience { get { throw null ; } set { } }
5450 public string UserAgentApplicationId { get { throw null ; } set { } }
5551 public enum ServiceVersion
5652 {
5753 V2024_06_01 = 0 ,
54+ V2024_08_01_Preview = 1 ,
55+ V2024_10_01_Preview = 3 ,
5856 }
5957 }
6058 public partial class ContentFilterBlocklistResult : System . ClientModel . Primitives . IJsonModel < Azure . AI . OpenAI . ContentFilterBlocklistResult > , System . ClientModel . Primitives . IPersistableModel < Azure . AI . OpenAI . ContentFilterBlocklistResult >
@@ -328,10 +326,14 @@ public CosmosChatDataSource() { }
328326 public abstract partial class DataSourceAuthentication : System . ClientModel . Primitives . IJsonModel < Azure . AI . OpenAI . Chat . DataSourceAuthentication > , System . ClientModel . Primitives . IPersistableModel < Azure . AI . OpenAI . Chat . DataSourceAuthentication >
329327 {
330328 protected DataSourceAuthentication ( ) { }
329+ public static Azure . AI . OpenAI . Chat . DataSourceAuthentication FromAccessToken ( string accessToken ) { throw null ; }
331330 public static Azure . AI . OpenAI . Chat . DataSourceAuthentication FromApiKey ( string apiKey ) { throw null ; }
332331 public static Azure . AI . OpenAI . Chat . DataSourceAuthentication FromConnectionString ( string connectionString ) { throw null ; }
332+ public static Azure . AI . OpenAI . Chat . DataSourceAuthentication FromEncodedApiKey ( string encodedApiKey ) { throw null ; }
333+ public static Azure . AI . OpenAI . Chat . DataSourceAuthentication FromKeyAndKeyId ( string key , string keyId ) { throw null ; }
333334 public static Azure . AI . OpenAI . Chat . DataSourceAuthentication FromSystemManagedIdentity ( ) { throw null ; }
334335 public static Azure . AI . OpenAI . Chat . DataSourceAuthentication FromUserManagedIdentity ( Azure . Core . ResourceIdentifier identityResource ) { throw null ; }
336+ public static Azure . AI . OpenAI . Chat . DataSourceAuthentication FromUsernameAndPassword ( string username , string password ) { throw null ; }
335337 Azure . AI . OpenAI . Chat . DataSourceAuthentication System . ClientModel . Primitives . IJsonModel < Azure . AI . OpenAI . Chat . DataSourceAuthentication > . Create ( ref System . Text . Json . Utf8JsonReader reader , System . ClientModel . Primitives . ModelReaderWriterOptions options ) { throw null ; }
336338 void System . ClientModel . Primitives . IJsonModel < Azure . AI . OpenAI . Chat . DataSourceAuthentication > . Write ( System . Text . Json . Utf8JsonWriter writer , System . ClientModel . Primitives . ModelReaderWriterOptions options ) { }
337339 Azure . AI . OpenAI . Chat . DataSourceAuthentication System . ClientModel . Primitives . IPersistableModel < Azure . AI . OpenAI . Chat . DataSourceAuthentication > . Create ( System . BinaryData data , System . ClientModel . Primitives . ModelReaderWriterOptions options ) { throw null ; }
@@ -387,36 +389,73 @@ public abstract partial class DataSourceVectorizer : System.ClientModel.Primitiv
387389 protected DataSourceVectorizer ( ) { }
388390 public static Azure . AI . OpenAI . Chat . DataSourceVectorizer FromDeploymentName ( string deploymentName ) { throw null ; }
389391 public static Azure . AI . OpenAI . Chat . DataSourceVectorizer FromEndpoint ( System . Uri endpoint , Azure . AI . OpenAI . Chat . DataSourceAuthentication authentication ) { throw null ; }
392+ public static Azure . AI . OpenAI . Chat . DataSourceVectorizer FromIntegratedResource ( ) { throw null ; }
393+ public static Azure . AI . OpenAI . Chat . DataSourceVectorizer FromModelId ( string modelId ) { throw null ; }
390394 Azure . AI . OpenAI . Chat . DataSourceVectorizer System . ClientModel . Primitives . IJsonModel < Azure . AI . OpenAI . Chat . DataSourceVectorizer > . Create ( ref System . Text . Json . Utf8JsonReader reader , System . ClientModel . Primitives . ModelReaderWriterOptions options ) { throw null ; }
391395 void System . ClientModel . Primitives . IJsonModel < Azure . AI . OpenAI . Chat . DataSourceVectorizer > . Write ( System . Text . Json . Utf8JsonWriter writer , System . ClientModel . Primitives . ModelReaderWriterOptions options ) { }
392396 Azure . AI . OpenAI . Chat . DataSourceVectorizer System . ClientModel . Primitives . IPersistableModel < Azure . AI . OpenAI . Chat . DataSourceVectorizer > . Create ( System . BinaryData data , System . ClientModel . Primitives . ModelReaderWriterOptions options ) { throw null ; }
393397 string System . ClientModel . Primitives . IPersistableModel < Azure . AI . OpenAI . Chat . DataSourceVectorizer > . GetFormatFromOptions ( System . ClientModel . Primitives . ModelReaderWriterOptions options ) { throw null ; }
394398 System . BinaryData System . ClientModel . Primitives . IPersistableModel < Azure . AI . OpenAI . Chat . DataSourceVectorizer > . Write ( System . ClientModel . Primitives . ModelReaderWriterOptions options ) { throw null ; }
395399 }
396- [ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
397400 public partial class ElasticsearchChatDataSource : Azure . AI . OpenAI . Chat . ChatDataSource , System . ClientModel . Primitives . IJsonModel < Azure . AI . OpenAI . Chat . ElasticsearchChatDataSource > , System . ClientModel . Primitives . IPersistableModel < Azure . AI . OpenAI . Chat . ElasticsearchChatDataSource >
398401 {
402+ [ System . ObsoleteAttribute ( "Constructors of types with required members are not supported in this version of your compiler." , true ) ]
399403 public ElasticsearchChatDataSource ( ) { }
404+ public bool ? AllowPartialResults { get { throw null ; } set { } }
405+ public Azure . AI . OpenAI . Chat . DataSourceAuthentication Authentication { get { throw null ; } set { } }
406+ public System . Uri Endpoint { get { throw null ; } set { } }
407+ public Azure . AI . OpenAI . Chat . DataSourceFieldMappings FieldMappings { get { throw null ; } set { } }
408+ public string IndexName { get { throw null ; } set { } }
409+ public bool ? InScope { get { throw null ; } set { } }
410+ public int ? MaxSearchQueries { get { throw null ; } set { } }
411+ public Azure . AI . OpenAI . Chat . DataSourceOutputContexts ? OutputContexts { get { throw null ; } set { } }
412+ public Azure . AI . OpenAI . Chat . DataSourceQueryType ? QueryType { get { throw null ; } set { } }
413+ public int ? Strictness { get { throw null ; } set { } }
414+ public int ? TopNDocuments { get { throw null ; } set { } }
415+ public Azure . AI . OpenAI . Chat . DataSourceVectorizer VectorizationSource { get { throw null ; } set { } }
400416 Azure . AI . OpenAI . Chat . ElasticsearchChatDataSource System . ClientModel . Primitives . IJsonModel < Azure . AI . OpenAI . Chat . ElasticsearchChatDataSource > . Create ( ref System . Text . Json . Utf8JsonReader reader , System . ClientModel . Primitives . ModelReaderWriterOptions options ) { throw null ; }
401417 void System . ClientModel . Primitives . IJsonModel < Azure . AI . OpenAI . Chat . ElasticsearchChatDataSource > . Write ( System . Text . Json . Utf8JsonWriter writer , System . ClientModel . Primitives . ModelReaderWriterOptions options ) { }
402418 Azure . AI . OpenAI . Chat . ElasticsearchChatDataSource System . ClientModel . Primitives . IPersistableModel < Azure . AI . OpenAI . Chat . ElasticsearchChatDataSource > . Create ( System . BinaryData data , System . ClientModel . Primitives . ModelReaderWriterOptions options ) { throw null ; }
403419 string System . ClientModel . Primitives . IPersistableModel < Azure . AI . OpenAI . Chat . ElasticsearchChatDataSource > . GetFormatFromOptions ( System . ClientModel . Primitives . ModelReaderWriterOptions options ) { throw null ; }
404420 System . BinaryData System . ClientModel . Primitives . IPersistableModel < Azure . AI . OpenAI . Chat . ElasticsearchChatDataSource > . Write ( System . ClientModel . Primitives . ModelReaderWriterOptions options ) { throw null ; }
405421 }
406- [ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
407422 public partial class MongoDBChatDataSource : Azure . AI . OpenAI . Chat . ChatDataSource , System . ClientModel . Primitives . IJsonModel < Azure . AI . OpenAI . Chat . MongoDBChatDataSource > , System . ClientModel . Primitives . IPersistableModel < Azure . AI . OpenAI . Chat . MongoDBChatDataSource >
408423 {
424+ [ System . ObsoleteAttribute ( "Constructors of types with required members are not supported in this version of your compiler." , true ) ]
409425 public MongoDBChatDataSource ( ) { }
426+ public bool ? AllowPartialResults { get { throw null ; } set { } }
427+ public string AppName { get { throw null ; } set { } }
428+ public Azure . AI . OpenAI . Chat . DataSourceAuthentication Authentication { get { throw null ; } set { } }
429+ public string CollectionName { get { throw null ; } set { } }
430+ public string EndpointName { get { throw null ; } set { } }
431+ public string IndexName { get { throw null ; } set { } }
432+ public bool ? InScope { get { throw null ; } set { } }
433+ public int ? MaxSearchQueries { get { throw null ; } set { } }
434+ public Azure . AI . OpenAI . Chat . DataSourceOutputContexts ? OutputContexts { get { throw null ; } set { } }
435+ public int ? Strictness { get { throw null ; } set { } }
436+ public int ? TopNDocuments { get { throw null ; } set { } }
437+ public Azure . AI . OpenAI . Chat . DataSourceVectorizer VectorizationSource { get { throw null ; } set { } }
410438 Azure . AI . OpenAI . Chat . MongoDBChatDataSource System . ClientModel . Primitives . IJsonModel < Azure . AI . OpenAI . Chat . MongoDBChatDataSource > . Create ( ref System . Text . Json . Utf8JsonReader reader , System . ClientModel . Primitives . ModelReaderWriterOptions options ) { throw null ; }
411439 void System . ClientModel . Primitives . IJsonModel < Azure . AI . OpenAI . Chat . MongoDBChatDataSource > . Write ( System . Text . Json . Utf8JsonWriter writer , System . ClientModel . Primitives . ModelReaderWriterOptions options ) { }
412440 Azure . AI . OpenAI . Chat . MongoDBChatDataSource System . ClientModel . Primitives . IPersistableModel < Azure . AI . OpenAI . Chat . MongoDBChatDataSource > . Create ( System . BinaryData data , System . ClientModel . Primitives . ModelReaderWriterOptions options ) { throw null ; }
413441 string System . ClientModel . Primitives . IPersistableModel < Azure . AI . OpenAI . Chat . MongoDBChatDataSource > . GetFormatFromOptions ( System . ClientModel . Primitives . ModelReaderWriterOptions options ) { throw null ; }
414442 System . BinaryData System . ClientModel . Primitives . IPersistableModel < Azure . AI . OpenAI . Chat . MongoDBChatDataSource > . Write ( System . ClientModel . Primitives . ModelReaderWriterOptions options ) { throw null ; }
415443 }
416- [ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
417444 public partial class PineconeChatDataSource : Azure . AI . OpenAI . Chat . ChatDataSource , System . ClientModel . Primitives . IJsonModel < Azure . AI . OpenAI . Chat . PineconeChatDataSource > , System . ClientModel . Primitives . IPersistableModel < Azure . AI . OpenAI . Chat . PineconeChatDataSource >
418445 {
446+ [ System . ObsoleteAttribute ( "Constructors of types with required members are not supported in this version of your compiler." , true ) ]
419447 public PineconeChatDataSource ( ) { }
448+ public bool ? AllowPartialResults { get { throw null ; } set { } }
449+ public Azure . AI . OpenAI . Chat . DataSourceAuthentication Authentication { get { throw null ; } set { } }
450+ public string Environment { get { throw null ; } set { } }
451+ public Azure . AI . OpenAI . Chat . DataSourceFieldMappings FieldMappings { get { throw null ; } set { } }
452+ public string IndexName { get { throw null ; } set { } }
453+ public bool ? InScope { get { throw null ; } set { } }
454+ public int ? MaxSearchQueries { get { throw null ; } set { } }
455+ public Azure . AI . OpenAI . Chat . DataSourceOutputContexts ? OutputContexts { get { throw null ; } set { } }
456+ public int ? Strictness { get { throw null ; } set { } }
457+ public int ? TopNDocuments { get { throw null ; } set { } }
458+ public Azure . AI . OpenAI . Chat . DataSourceVectorizer VectorizationSource { get { throw null ; } set { } }
420459 Azure . AI . OpenAI . Chat . PineconeChatDataSource System . ClientModel . Primitives . IJsonModel < Azure . AI . OpenAI . Chat . PineconeChatDataSource > . Create ( ref System . Text . Json . Utf8JsonReader reader , System . ClientModel . Primitives . ModelReaderWriterOptions options ) { throw null ; }
421460 void System . ClientModel . Primitives . IJsonModel < Azure . AI . OpenAI . Chat . PineconeChatDataSource > . Write ( System . Text . Json . Utf8JsonWriter writer , System . ClientModel . Primitives . ModelReaderWriterOptions options ) { }
422461 Azure . AI . OpenAI . Chat . PineconeChatDataSource System . ClientModel . Primitives . IPersistableModel < Azure . AI . OpenAI . Chat . PineconeChatDataSource > . Create ( System . BinaryData data , System . ClientModel . Primitives . ModelReaderWriterOptions options ) { throw null ; }
0 commit comments