Skip to content

Apply access and usage to openai #39460

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

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ public partial class AzureCognitiveSearchChatExtensionConfiguration : Azure.AI.O
{
public AzureCognitiveSearchChatExtensionConfiguration() { }
public AzureCognitiveSearchChatExtensionConfiguration(Azure.AI.OpenAI.AzureChatExtensionType type, System.Uri searchEndpoint, string indexName) { }
public AzureCognitiveSearchChatExtensionConfiguration(Azure.AI.OpenAI.AzureChatExtensionType type, System.Uri searchEndpoint, string searchKey, string indexName) { }
public int? DocumentCount { get { throw null; } set { } }
public System.Uri EmbeddingEndpoint { get { throw null; } set { } }
public Azure.AI.OpenAI.AzureCognitiveSearchIndexFieldMappingOptions FieldMappingOptions { get { throw null; } set { } }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
#nullable disable

using System;
using System.Runtime.CompilerServices;
using System.Text.Json;
using Azure.Core;

namespace Azure.AI.OpenAI
Expand All @@ -12,6 +14,7 @@ namespace Azure.AI.OpenAI
/// A specific representation of configurable options for Azure Cognitive Search when using it as an Azure OpenAI chat
/// extension.
/// </summary>
[CodeGenSuppress("ToRequestContent")]
public partial class AzureCognitiveSearchChatExtensionConfiguration : AzureChatExtensionConfiguration
{
// CUSTOM CODE NOTE: this override effects the desired "default" behavior in the derived type
Expand Down

This file was deleted.

14 changes: 0 additions & 14 deletions sdk/openai/Azure.AI.OpenAI/src/Custom/ImageSize.cs

This file was deleted.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading