You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Based on current implementation could be passed only one item with name 'item' that is really weird
and there is no ability to pass multiple params new Function() { Description = t.Description, Name = t.Function, Parameters = new Parameters() { Type = "object", Properties = new Properties() { Item = new Item() { Description = "Set always true", Type = "boolean", } }, ParametersRequired = new List<string> {"item"} }, }
Don't have ability to pass different name.
Any ideas?
The text was updated successfully, but these errors were encountered:
In model Function
https://github.com/deepgram/deepgram-dotnet-sdk/blob/main/Deepgram/Models/Agent/v2/WebSocket/Function.cs there is property Parameters.
Based on current implementation could be passed only one item with name 'item' that is really weird
and there is no ability to pass multiple params
new Function() { Description = t.Description, Name = t.Function, Parameters = new Parameters() { Type = "object", Properties = new Properties() { Item = new Item() { Description = "Set always true", Type = "boolean", } }, ParametersRequired = new List<string> {"item"} }, }
Don't have ability to pass different name.
Any ideas?
The text was updated successfully, but these errors were encountered: