Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nick863 committed Dec 13, 2024
1 parent 936498e commit e50f916
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion sdk/ai/Azure.AI.Projects/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

* Added `AzureFunctionToolDefinition` support to inform Agents about Azure Functions.
* Added `OpenApiTool` for Agents, which creates and executes a REST function defined by an OpenAPI spec.
* Add `parallel_tool_calls` parameter to allow parallel tool execution for Agents.
* Add `parallelToolCalls` parameter to `CreateRunRequest`, `CreateRunAsync`, `CreateRunStreaming` and `CreateRunStreamingAsync`, which allows parallel tool execution for Agents.

### Breaking Changes

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

// <auto-generated/>

#nullable disable

using System;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace Azure.AI.Projects.Tests;

public partial class Sample_Agent_Azure_Functions : SamplesBase<AIProjectsTestEnvironment>
{
private static string getFile([CallerFilePath] string pth = "")
private static string GetFile([CallerFilePath] string pth = "")
{
var dirName = Path.GetDirectoryName(pth) ?? "";
return Path.Combine(dirName, "weather_openapi.json");
Expand All @@ -30,7 +30,7 @@ public async Task OpenAPICallingExample()
var connectionString = TestEnvironment.AzureAICONNECTIONSTRING;
var storageQueueUri = TestEnvironment.STORAGE_QUEUE_URI;
AgentsClient client = new(connectionString, new DefaultAzureCredential());
var file_path = getFile();
var file_path = GetFile();

#region Snippet:OpenAPIDefineFunctionTools
OpenApiAnonymousAuthDetails oaiAuth = new();
Expand Down

0 comments on commit e50f916

Please sign in to comment.