Skip to content

Instantly share code, notes, and snippets.

@peyanski
Created November 4, 2025 12:58
Show Gist options
  • Select an option

  • Save peyanski/90b091ed0a3dd52441a9ec2bbc817e43 to your computer and use it in GitHub Desktop.

Select an option

Save peyanski/90b091ed0a3dd52441a9ec2bbc817e43 to your computer and use it in GitHub Desktop.
alias: Compare Ollama LLM Models
mode: single
fields:
test_prompt:
name: Prompt
description: The prompt/question to send to each model.
example: Summarize the current weather and energy usage.
required: true
selector:
text: null
sequence:
- alias: Ask DeepSeek v3.1 Cloud
data:
text: "{{ test_prompt }}"
agent_id: conversation.ollama_conversation_deepseek_v3_1_671b_cloud
response_variable: deepseek_response
action: conversation.process
- alias: Ask Ollama Conversation gpt-oss
data:
text: "{{ test_prompt }}"
agent_id: conversation.ollama_conversation
response_variable: gptoss_response
action: conversation.process
- alias: Ask Ollama Conversation Qwen3
data:
text: "{{ test_prompt }}"
agent_id: conversation.ollama_conversation_qwen3_vl_235b_cloud
response_variable: qwen3_response
action: conversation.process
- alias: Log all responses
data:
title: Ollama LLM Model Comparison
message: |
**Prompt:** {{ test_prompt }}
**DeepSeek v3.1 Cloud:**
{{ deepseek_response.response.speech.plain.speech }}
**GPT-OSS Cloud Response:**
{{ gptoss_response.response.speech.plain.speech }}
**Qwen3 Cloud Response:**
{{ qwen3_response.response.speech.plain.speech }}
action: persistent_notification.create
description: ""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment