Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 405 Bytes

File metadata and controls

15 lines (12 loc) · 405 Bytes

0.7.0 release

  • Add full tool support for all available cloud providers

On chat/agent context

.WithTools(new ToolsConfigurationBuilder()
                .AddTool(
                    name: "get_current_time",
                    description: "Get the current date and time",
                    execute: Tools.GetCurrentTime) 
                .WithToolChoice("auto")
                .Build())