stygian-graph 0.9.2

High-performance graph-based web scraping engine with AI extraction, multi-modal support, and anti-bot capabilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! AI provider adapters

/// Claude (Anthropic) provider
pub mod claude;

/// ChatGPT (OpenAI) provider
pub mod openai;

/// Gemini (Google) provider
pub mod gemini;

/// GitHub Copilot provider
pub mod copilot;

/// Ollama (local) provider
pub mod ollama;