When executing a curl command for a WebSearch in a skill, DO NOT COMBINE WebSearches into one curl command. For example, the following web searches shall be executed as separate curl commannds.
This:
WebSearch: "<TICKER> upcoming earnings date catalyst events 2025 2026"
WebSearch: "<TICKER> product launches partnerships FDA approval regulatory"
Should result in two curl commands:
curl https://ollama.com/api/web_search \
--header "Authorization: Bearer $OLLAMA_API_KEY" \
-d '{
"query": "<TICKER> upcoming earnings date catalyst events 2025 2026"
}'
and
curl https://ollama.com/api/web_search \
--header "Authorization: Bearer $OLLAMA_API_KEY" \
-d '{
"query": "<TICKER> product launches partnerships FDA approval regulatory"
}'
Output the response from the curl commands directly to the terminal and use that output for analysis.