Skip to content

Commit

Permalink
chore: use correct model
Browse files Browse the repository at this point in the history
  • Loading branch information
phil65 committed Nov 7, 2024
1 parent c4a087a commit aa126f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/jinjarope/resources/llm_filters.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit aa126f6

Please sign in to comment.