Skip to content

Commit bc20a6e

Browse files
authored
Merge pull request #132 from lennart02/fix-RAGSimple-01SK
fix: using llama3.2 instead of its vision model
2 parents a43b886 + d6bdf41 commit bc20a6e

File tree

1 file changed

+2
-2
lines changed
  • 03-CoreGenerativeAITechniques/src/RAGSimple-01SK

1 file changed

+2
-2
lines changed

03-CoreGenerativeAITechniques/src/RAGSimple-01SK/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@
2222
// intro
2323
Console.WriteLine($"Question: {question}");
2424

25-
var modelId = "llama3.2-vision";
25+
var modelId = "llama3.2";
2626

2727
// Create a chat completion service
2828
var builder = Kernel.CreateBuilder();
2929
builder.AddOpenAIChatCompletion(
3030
modelId: modelId,
31-
endpoint: new Uri("http://localhost:11434"),
31+
endpoint: new Uri("http://localhost:11434/v1"),
3232
apiKey: "apikey");
3333
builder.AddLocalTextEmbeddingGeneration();
3434
Kernel kernel = builder.Build();

0 commit comments

Comments
 (0)