diff --git a/.gitignore b/.gitignore
index 866918b..aed4005 100644
--- a/.gitignore
+++ b/.gitignore
@@ -248,3 +248,6 @@ web.config
app.config
settings.json
project.lock.json
+
+# Log
+log.txt
\ No newline at end of file
diff --git a/Deepgram/Models/Agent/v2/WebSocket/Context.cs b/Deepgram/Models/Agent/v2/WebSocket/Context.cs
index 4bdf2d0..d153535 100644
--- a/Deepgram/Models/Agent/v2/WebSocket/Context.cs
+++ b/Deepgram/Models/Agent/v2/WebSocket/Context.cs
@@ -4,7 +4,7 @@
namespace Deepgram.Models.Agent.v2.WebSocket;
-public record Content
+public record Context
{
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
[JsonPropertyName("messages")]
diff --git a/examples/agent/websocket/simple/Agent.csproj b/examples/agent/websocket/simple/Agent.csproj
index f7e9952..ecd2a09 100644
--- a/examples/agent/websocket/simple/Agent.csproj
+++ b/examples/agent/websocket/simple/Agent.csproj
@@ -2,7 +2,7 @@
Exe
- net6.0
+ net8.0
enable
enable
diff --git a/examples/agent/websocket/simple/Program.cs b/examples/agent/websocket/simple/Program.cs
index da1974a..d7e9787 100644
--- a/examples/agent/websocket/simple/Program.cs
+++ b/examples/agent/websocket/simple/Program.cs
@@ -189,9 +189,11 @@ await agentClient.Subscribe(new EventHandler((sender, e) =>
var settingsConfiguration = new SettingsConfigurationSchema();
settingsConfiguration.Agent.Think.Provider.Type = "open_ai";
settingsConfiguration.Agent.Think.Model = "gpt-4o-mini";
- settingsConfiguration.Agent.Think.Instructions = "You are a helpful AI assistant.";
- settingsConfiguration.Audio.Output.SampleRate = 48000;
- settingsConfiguration.Audio.Input.SampleRate = 16000;
+ settingsConfiguration.Audio.Output.SampleRate = 16000;
+ settingsConfiguration.Audio.Output.Container = "wav";
+ settingsConfiguration.Audio.Input.SampleRate = 44100;
+ settingsConfiguration.Context.Messages = new List