Skip to main content
Search Wikipedia, pull articles, and summarise them with a single Agent using dedicated wiki tools.
Wikipedia research agent with search, page retrieval, and summarization tools.

Quick Start

1

Simple Usage

Attach the wiki tools and ask a knowledge question.
2

With Configuration

Return structured knowledge with a Pydantic schema.

How It Works


Simple

Agents: 1 — Single agent with Wikipedia tools handles search and content extraction.

Workflow

  1. Receive knowledge query
  2. Search Wikipedia articles
  3. Summarize findings

Setup

Run — Python

Run — CLI

Run — agents.yaml

Serve API


Advanced Workflow (All Features)

Agents: 1 — Single agent with memory, persistence, structured output, and session resumability.

Workflow

  1. Initialize session for knowledge tracking
  2. Configure SQLite persistence for research history
  3. Search and extract with structured output
  4. Store findings in memory for follow-up queries
  5. Resume session for continued research

Setup

Run — Python

Run — CLI

Run — agents.yaml

Serve API


Monitor / Verify

Cleanup

Features Demonstrated

Best Practices

Pass wiki_search, wiki_summary, and wiki_page together. The agent needs search to find an article, page to read it, and summary to condense it.
Reach for this agent when accuracy on established facts matters. For breaking news or current events, use the Web Search Agent instead.
Add output_pydantic with key_facts and related_topics so downstream code gets typed fields instead of a paragraph.
Wikipedia is one source. Pair with the Research Agent when a question needs perspectives beyond a single encyclopaedia entry.
Search the live web for current events.
Synthesise multiple sources into a report.