From aa126f61db05d97dd37fa9c8e925d4f2536ab8b2 Mon Sep 17 00:00:00 2001 From: Philipp Temminghoff Date: Thu, 7 Nov 2024 20:25:27 +0100 Subject: [PATCH] chore: use correct model --- src/jinjarope/resources/llm_filters.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/jinjarope/resources/llm_filters.toml b/src/jinjarope/resources/llm_filters.toml index 8585539..d139671 100644 --- a/src/jinjarope/resources/llm_filters.toml +++ b/src/jinjarope/resources/llm_filters.toml @@ -7,17 +7,17 @@ required_packages = ["litellm"] [filters.llm_complete.examples.basic] template = """ -{{ "Describe how to install a package from PyPi" | llm_complete(model="ollama/smollm2") }} +{{ "Describe how to install a package from PyPi" | llm_complete(model="ollama/smollm2:360m") }} """ [filters.llm_complete.examples.with_system_prompt] template = """ -{{ "What are the benefits of Python?" | llm_complete(model="ollama/smollm2", system_prompt="You are a helpful programming assistant.") }} +{{ "What are the benefits of Python?" | llm_complete(model="ollama/smollm2:360m", system_prompt="You are a helpful programming assistant.") }} """ [filters.llm_complete.examples.with_context] template = """ -{{ "Explain its importance." | llm_complete(model="ollama/smollm2", context="We were discussing Python's role in data science.") }} +{{ "Explain its importance." | llm_complete(model="ollama/smollm2:360m", context="We were discussing Python's role in data science.") }} """ [filters.llm_generate_image]