Hi, I’m trying to create an automation with openRouter integration that upon wake word and specific start sentence would enable a conversation with a model using online search enabled. I was able to set it with “normal” model available through integration like DeepSeek 3.1 like this:
alias: Ask Online Question
description: ""
triggers:
- trigger: conversation
command:
- Check online {question}
conditions: []
actions:
- action: conversation.process
metadata: {}
data:
agent_id: conversation.deepseek_deepseek_v3_1
text: "{{ trigger.slots.question }}"
response_variable: answer
- set_conversation_response: "{{ answer.response.speech.plain.speech }}"
mode: single
however not sure how to force it to use web search. In the API call you’d add :online to the name of model.
Is there a way to achieve that through openRouter integration?