From 4edffe3df0320ea346986c6b5241384b20817a8f Mon Sep 17 00:00:00 2001 From: Henrique Chaves Date: Mon, 10 Mar 2025 12:01:01 +0100 Subject: [PATCH] chore(docs): replace llama3.1 with qwen2.5 on ollama docs --- docs/open_source/scan/scan_llm/index.md | 2 +- docs/open_source/setting_up/index.md | 2 +- docs/open_source/testset_generation/testset_generation/index.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/open_source/scan/scan_llm/index.md b/docs/open_source/scan/scan_llm/index.md index cfe92a5a48..75d778e246 100644 --- a/docs/open_source/scan/scan_llm/index.md +++ b/docs/open_source/scan/scan_llm/index.md @@ -111,7 +111,7 @@ import giskard api_base = "http://localhost:11434" # default api_base for local Ollama # See supported models here: https://docs.litellm.ai/docs/providers/ollama#ollama-models -giskard.llm.set_llm_model("ollama/llama3.1", disable_structured_output=True, api_base=api_base) +giskard.llm.set_llm_model("ollama/qwen2.5", disable_structured_output=True, api_base=api_base) giskard.llm.set_embedding_model("ollama/nomic-embed-text", api_base=api_base) ``` diff --git a/docs/open_source/setting_up/index.md b/docs/open_source/setting_up/index.md index b54f63b0e2..0a0e3fe2c2 100644 --- a/docs/open_source/setting_up/index.md +++ b/docs/open_source/setting_up/index.md @@ -104,7 +104,7 @@ import giskard api_base = "http://localhost:11434" # default api_base for local Ollama # See supported models here: https://docs.litellm.ai/docs/providers/ollama#ollama-models -giskard.llm.set_llm_model("ollama/llama3.1", disable_structured_output=True, api_base=api_base) +giskard.llm.set_llm_model("ollama/qwen2.5", disable_structured_output=True, api_base=api_base) giskard.llm.set_embedding_model("ollama/nomic-embed-text", api_base=api_base) ``` diff --git a/docs/open_source/testset_generation/testset_generation/index.md b/docs/open_source/testset_generation/testset_generation/index.md index e01c8e53ef..641263027d 100644 --- a/docs/open_source/testset_generation/testset_generation/index.md +++ b/docs/open_source/testset_generation/testset_generation/index.md @@ -149,7 +149,7 @@ import giskard api_base = "http://localhost:11434" # default api_base for local Ollama # See supported models here: https://docs.litellm.ai/docs/providers/ollama#ollama-models -giskard.llm.set_llm_model("ollama/llama3.1", disable_structured_output=True, api_base=api_base) +giskard.llm.set_llm_model("ollama/qwen2.5", disable_structured_output=True, api_base=api_base) giskard.llm.set_embedding_model("ollama/nomic-embed-text", api_base=api_base) ```