We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1edf20 commit d5b3d70Copy full SHA for d5b3d70
examples/aspnet-core/Program.cs
@@ -53,6 +53,4 @@ public async Task<ChatResponse> HandleChatRequest(ChatRequest request)
53
}
54
55
public record ChatRequest(string Message);
56
-public record ChatResponse(string Response);
57
-public record EmbeddingRequest(string Text);
58
-public record EmbeddingResponse(float[] Vector);
+public record ChatResponse(string Response);
examples/aspnet-core/appsettings.json
@@ -8,7 +8,11 @@
8
"AllowedHosts": "*",
9
"OpenAI":
10
{
11
+<<<<<<< HEAD
12
"Model": "gpt-4.1-mini",
13
+=======
14
+ "Model": "gpt-4.1",
15
+>>>>>>> 2ef2c53 (chore: remove api secret and unused records)
16
"ApiKey": ""
17
18
0 commit comments