Skills jina-deepsearch
Jina DeepSearch API access via AIHubMix - use curl to call the HTTP API directly.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/ansatzx/jina-deepsearch" ~/.claude/skills/clawdbot-skills-jina-deepsearch && rm -rf "$T"
manifest:
skills/ansatzx/jina-deepsearch/SKILL.mdsource content
Jina DeepSearch
Access Jina's DeepSearch API via AIHubMix using curl.
Quick Start
# Set your API key first export AIHUBMIX_API_KEY="sk-..." # Call the API directly with curl curl https://aihubmix.com/v1/chat/completions \ -H "Content-Type: application/json" \ -H "Authorization: Bearer $AIHUBMIX_API_KEY" \ -d '{ "model": "jina-deepsearch-v1", "messages": [{"role": "user", "content": "Your search query"}] }'
Configuration
Set
AIHUBMIX_API_KEY environment variable. Get your API key from https://aihubmix.com
Model
- Jina's deep search modeljina-deepsearch-v1