Skip to content

Commit d5b3d70

Browse files
chore: remove api secret and unused records
1 parent b1edf20 commit d5b3d70

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

examples/aspnet-core/Program.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,4 @@ public async Task<ChatResponse> HandleChatRequest(ChatRequest request)
5353
}
5454

5555
public record ChatRequest(string Message);
56-
public record ChatResponse(string Response);
57-
public record EmbeddingRequest(string Text);
58-
public record EmbeddingResponse(float[] Vector);
56+
public record ChatResponse(string Response);

examples/aspnet-core/appsettings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@
88
"AllowedHosts": "*",
99
"OpenAI":
1010
{
11+
<<<<<<< HEAD
1112
"Model": "gpt-4.1-mini",
13+
=======
14+
"Model": "gpt-4.1",
15+
>>>>>>> 2ef2c53 (chore: remove api secret and unused records)
1216
"ApiKey": ""
1317
}
1418
}

0 commit comments

Comments
 (0)