Documentation Index
Fetch the complete documentation index at: https://docs.praison.ai/llms.txt
Use this file to discover all available pages before exploring further.
Research agent with web search for comprehensive topic analysis and report generation.
Simple
Agents: 1 — Single agent handles search, analysis, and synthesis.
Workflow
- Receive research topic
- Search web for relevant sources
- Analyze and synthesize findings
- Generate structured report
Setup
pip install praisonaiagents praisonai duckduckgo-search
export OPENAI_API_KEY="your-key"
Run — Python
from praisonaiagents import Agent
from praisonaiagents import duckduckgo
agent = Agent(
name="Researcher",
instructions="You are a research agent. Search, analyze, and synthesize information.",
tools=[duckduckgo]
)
result = agent.start("Research the current state of quantum computing in 2024")
print(result)
Run — CLI
praisonai "Research quantum computing advances" --research --web-search
Run — agents.yaml
framework: praisonai
topic: Research Project
roles:
researcher:
role: Research Specialist
goal: Conduct comprehensive research and analysis
backstory: You are an expert researcher
tools:
- duckduckgo
tasks:
research_task:
description: Research the current state of quantum computing in 2024
expected_output: A comprehensive research report
Serve API
from praisonaiagents import Agent
from praisonaiagents import duckduckgo
agent = Agent(
name="Researcher",
instructions="You are a research agent.",
tools=[duckduckgo]
)
agent.launch(port=8080)
curl -X POST http://localhost:8080/chat \
-H "Content-Type: application/json" \
-d '{"message": "Research electric vehicle market trends"}'
Advanced Workflow (All Features)
Agents: 1 — Single agent with memory, persistence, structured output, and session resumability.
Workflow
- Initialize session for resumable research context
- Configure SQLite persistence for research history
- Execute multi-source search with structured output
- Store findings in memory for follow-up queries
- Resume session to continue research
Setup
pip install praisonaiagents praisonai duckduckgo-search pydantic
export OPENAI_API_KEY="your-key"
Run — Python
from praisonaiagents import Agent, Task, AgentTeam, Session
from praisonaiagents import duckduckgo
from pydantic import BaseModel
# Structured output schema
class ResearchReport(BaseModel):
topic: str
summary: str
key_findings: list[str]
sources: list[str]
recommendations: list[str]
# Create session for resumability
session = Session(session_id="research-001", user_id="user-1")
# Agent with memory and tools
agent = Agent(
name="Researcher",
instructions="Research topics thoroughly and return structured reports.",
tools=[duckduckgo],
memory=True
)
# Task with structured output
task = Task(
description="Research the current state of quantum computing in 2024",
expected_output="Structured research report",
agent=agent,
output_pydantic=ResearchReport
)
# Run with SQLite persistence
agents = AgentTeam(
agents=[agent],
tasks=[task],
memory=True
)
result = agents.start()
print(result)
# Resume later
session2 = Session(session_id="research-001", user_id="user-1")
history = session2.search_memory("quantum computing")
Run — CLI
praisonai "Research quantum computing" --research --web-search --memory --verbose
Run — agents.yaml
framework: praisonai
topic: Research Project
memory: true
memory_config:
provider: sqlite
db_path: research.db
roles:
researcher:
role: Research Specialist
goal: Conduct comprehensive research
backstory: You are an expert researcher
tools:
- duckduckgo
memory: true
tasks:
research_task:
description: Research the current state of quantum computing in 2024
expected_output: Structured research report
output_json:
topic: string
summary: string
key_findings: array
sources: array
recommendations: array
praisonai agents.yaml --verbose
Serve API
from praisonaiagents import Agent
from praisonaiagents import duckduckgo
agent = Agent(
name="Researcher",
instructions="Research topics and return structured reports.",
tools=[duckduckgo],
memory=True
)
agent.launch(port=8080)
curl -X POST http://localhost:8080/chat \
-H "Content-Type: application/json" \
-d '{"message": "Research AI trends", "session_id": "research-001"}'
Monitor / Verify
praisonai "test research" --research --web-search --verbose
Cleanup
Features Demonstrated
| Feature | Implementation |
|---|
| Workflow | Multi-step research synthesis |
| DB Persistence | SQLite via memory_config |
| Observability | --verbose flag |
| Tools | DuckDuckGo search |
| Resumability | Session with session_id |
| Structured Output | Pydantic ResearchReport model |
Next Steps