skills.vishalvoidskills/vishalvoid
Technical & DevelopmentAdvanced

answers

AI-grounded answers via OpenAI-compatible endpoint.

Developer Setup

Setup & Installation

bash
npx skills add https://github.com/brave/brave-search-skills --skill answers

Overview

What This Skill Does

Generates AI-synthesized responses with source citations, supporting single-search and deep multi-search research modes.

Application

When to use this Skill

Documentation

Show Skills.md file

Answers — AI Grounding

Requires API Key: Get one at https://api.search.brave.com

Plan: Included in the Answers plan. See https://api-dashboard.search.brave.com/app/subscriptions/subscribe

When to Use

Use Case Skill Why
Quick factual answer (raw context) llm-context Single search, returns raw context for YOUR LLM
Fast AI answer with citations answers (single-search) streaming, citations
Thorough multi-search deep research answers (research mode) Iterative deep research, synthesized cited answer

This endpoint (/res/v1/chat/completions) supports two modes:

  • Single-search (default): Fast AI-grounded answer from a single search. Supports enable_citations.
  • Research (enable_research=true): Multi-iteration deep research with progress events and synthesized cited answer.

Quick Start (cURL)

Blocking (Single-Search)

curl -X POST "https://api.search.brave.com/res/v1/chat/completions" \
  -H "Content-Type: application/json" \
  -H "X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}" \
  -d '{
    "messages": [{"role": "user", "content": "How does the James Webb Space Telescope work?"}],
    "model": "brave",
    "stream": false
  }'
Lines 1 - 31 of 250

Recommendations

Explore other random skills

All skillsMy patterns