Metadata-Version: 2.4
Name: victor-research
Version: 0.5.6
Summary: Research vertical for Victor AI - Web research, information gathering, and knowledge synthesis
Author-email: Vijaykumar Singh <singhvjd@gmail.com>
Maintainer-email: Vijaykumar Singh <singhvjd@gmail.com>
License-Expression: Apache-2.0
Project-URL: Homepage, https://github.com/vjsingh1984/victor-research
Project-URL: Repository, https://github.com/vjsingh1984/victor-research
Project-URL: Documentation, https://docs.victor.dev/verticals/research
Project-URL: Issues, https://github.com/vjsingh1984/victor-research/issues
Keywords: victor,vertical,research,web-search,information-gathering
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: victor-ai>=0.5.6
Provides-Extra: dev
Requires-Dist: pytest>=8.0; extra == "dev"
Requires-Dist: pytest-asyncio>=0.23; extra == "dev"
Requires-Dist: pytest-cov>=4.1; extra == "dev"
Requires-Dist: black==26.1.0; extra == "dev"
Requires-Dist: ruff>=0.5; extra == "dev"
Requires-Dist: mypy>=1.10; extra == "dev"
Dynamic: license-file

# victor-research

**Research vertical for Victor AI - Web research, information gathering, and knowledge synthesis**

## Features

🔍 **Web Research**
Deep web searches with multiple sources
Academic paper discovery

Fact checking and verification
📚 **Knowledge Synthesis**
Literature review automation

Competitive analysis
Trend identification
📊 **Information Management**

Source citation and attribution
Research note organization
Bibliography generation

## Installation

```bash
# Install with Victor core
pip install victor-ai

# Install research vertical
pip install victor-research
```

## Quick Start

```python
from victor.framework import Agent

# Create agent with research vertical
agent = await Agent.create(
    provider="anthropic",
    model="claude-3-opus-20240229",
    vertical="research"
)
```

## Available Tools

Once installed, the research vertical provides these tools:

- **web_search** - Search the web
- **web_fetch** - Fetch and extract content
- **deep_research** - Multi-step research
- **fact_check** - Verify claims

## License

Apache License 2.0 - see [LICENSE](LICENSE) for details.

## Links

- **Victor AI**: https://github.com/vijay-singh/codingagent
- **Documentation**: https://docs.victor.dev/verticals/research
- **Victor Registry**: https://github.com/vjsingh1984/victor-registry
