Skip to content

Commit b4ec0ed

Browse files
committed
Builds again
1 parent a0c3a97 commit b4ec0ed

File tree

331 files changed

+7960
-7953
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

331 files changed

+7960
-7953
lines changed

sdk/ai/Azure.AI.VoiceLive/src/AzureAIVoiceLiveContext.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77

88
namespace Azure.AI.VoiceLive
99
{
10-
[ModelReaderWriterBuildable(typeof(VoiceLiveFunctionTool))]
11-
[ModelReaderWriterBuildable(typeof(VoiceLiveResponseUsageInputTokenDetails))]
12-
[ModelReaderWriterBuildable(typeof(VoiceLiveTool))]
10+
[ModelReaderWriterBuildable(typeof(FunctionTool))]
11+
[ModelReaderWriterBuildable(typeof(ResponseUsageInputTokenDetails))]
12+
[ModelReaderWriterBuildable(typeof(ToolCall))]
1313

1414
public partial class AzureAIVoiceLiveContext : ModelReaderWriterContext
1515
{

sdk/ai/Azure.AI.VoiceLive/src/ConversationSessionOptions.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace Azure.AI.VoiceLive
1515
/// This class provides configuration options specifically tailored for conversational interactions
1616
/// with the VoiceLive service, including voice selection, tool usage, and conversation management.
1717
/// </remarks>
18-
public class ConversationSessionOptions : VoiceLiveSessionOptions
18+
public class ConversationSessionOptions : SessionOptions
1919
{
2020
/// <summary>
2121
/// Gets or sets the voice configuration for the conversation.
@@ -48,7 +48,7 @@ public class ConversationSessionOptions : VoiceLiveSessionOptions
4848
/// <value>
4949
/// A list of tools that the assistant can use during the conversation.
5050
/// </value>
51-
public IList<VoiceLiveTool> Tools { get; set; } = new List<VoiceLiveTool>();
51+
public IList<ToolCall> Tools { get; set; } = new List<ToolCall>();
5252

5353
/// <summary>
5454
/// Gets or sets the tool choice strategy for the conversation.
@@ -76,10 +76,10 @@ public ConversationSessionOptions() : base()
7676
}
7777

7878
/// <summary>
79-
/// Converts the conversation session options to a <see cref="VoiceLiveRequestSession"/> instance.
79+
/// Converts the conversation session options to a <see cref="RequestSession"/> instance.
8080
/// </summary>
81-
/// <returns>A <see cref="VoiceLiveRequestSession"/> instance configured with the current options.</returns>
82-
internal override VoiceLiveRequestSession ToRequestSession()
81+
/// <returns>A <see cref="RequestSession"/> instance configured with the current options.</returns>
82+
internal override RequestSession ToRequestSession()
8383
{
8484
var session = base.ToRequestSession();
8585

sdk/ai/Azure.AI.VoiceLive/src/Generated/AIVoiceLiveModelFactory.cs

Lines changed: 321 additions & 321 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/ai/Azure.AI.VoiceLive/src/Generated/AgentConfig.Serialization.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/ai/Azure.AI.VoiceLive/src/Generated/VoiceLiveAnimation.Serialization.cs renamed to sdk/ai/Azure.AI.VoiceLive/src/Generated/AnimationOptions.Serialization.cs

Lines changed: 24 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/ai/Azure.AI.VoiceLive/src/Generated/VoiceLiveAnimation.cs renamed to sdk/ai/Azure.AI.VoiceLive/src/Generated/AnimationOptions.cs

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/ai/Azure.AI.VoiceLive/src/Generated/AnimationOutputType.Serialization.cs

Lines changed: 30 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/ai/Azure.AI.VoiceLive/src/Generated/VoiceLiveAnimationOutputType.cs renamed to sdk/ai/Azure.AI.VoiceLive/src/Generated/AnimationOutputType.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)