mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
fbb0fdfe0d
* Added code interpreter abstraction updates for OpenAI Assistants * Updated Persistent Agents implementation based on latest changes in SDK * Added code interpreter abstraction updates for Azure AI Persistent Agents * Small note for OpenAI responses code interpreter * Small update * Fixes after merge * Addressed PR feedback * Small update * Small fix * Fix after merge
15 lines
532 B
C#
15 lines
532 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using Microsoft.Extensions.AI;
|
|
|
|
namespace GettingStarted.Tools.Abstractions;
|
|
|
|
/// <summary>
|
|
/// Proposal for abstraction updates based on the common code interpreter tool properties.
|
|
/// Based on the decision, the <see cref="HostedCodeInterpreterTool"/> abstraction can be updated in M.E.AI or specific SDK if some properties are not common.
|
|
/// </summary>
|
|
public class NewHostedCodeInterpreterTool : HostedCodeInterpreterTool
|
|
{
|
|
public IList<string>? FileIds { get; set; }
|
|
}
|