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.
2 parents a43b886 + d6bdf41 commit bc20a6eCopy full SHA for bc20a6e
03-CoreGenerativeAITechniques/src/RAGSimple-01SK/Program.cs
@@ -22,13 +22,13 @@
22
// intro
23
Console.WriteLine($"Question: {question}");
24
25
-var modelId = "llama3.2-vision";
+var modelId = "llama3.2";
26
27
// Create a chat completion service
28
var builder = Kernel.CreateBuilder();
29
builder.AddOpenAIChatCompletion(
30
modelId: modelId,
31
- endpoint: new Uri("http://localhost:11434"),
+ endpoint: new Uri("http://localhost:11434/v1"),
32
apiKey: "apikey");
33
builder.AddLocalTextEmbeddingGeneration();
34
Kernel kernel = builder.Build();
0 commit comments