Skip to main content

Simple, fast RAG library for Python

Project description

Cofone

Simple, fast, yours. Turn documents, websites and videos into a queryable knowledge base in a few lines of Python.

from dotenv import load_dotenv
from cofone import RAG

load_dotenv()  # reads OPENROUTER_API_KEY from .env

answer = RAG().add_source("docs/").run("Who is Leonardo?")
print(answer)

What is Cofone?

Cofone is an open-source Python RAG (Retrieval-Augmented Generation) library.
Load any document, ask questions in natural language, get precise answers — without complex setup or boilerplate.

Key highlights:

  • Fluent DSL — chain everything in one expression
  • BM25 (default) + FAISS semantic search
  • 19 LLM providers: OpenRouter, OpenAI, Anthropic, Gemini, Mistral, Groq, Cohere, DeepSeek, xAI, Together, Perplexity, Fireworks, Cerebras, NVIDIA, DeepInfra, Anyscale, Ollama, LM Studio, llama.cpp
  • 10 embedding providers: local sentence-transformers, OpenAI, Gemini, Cohere, Mistral, Voyage, Jina, NVIDIA, Together, Ollama
  • Smart chunking that respects document structure
  • Chat memory, streaming, structured output (Pydantic)
  • FAISS index persistence to disk
  • Sources: files, folders, PDFs, web URLs, Wikipedia, YouTube

Installation

pip install cofone

With optional extras:

pip install "cofone[pdf]"      # PDF support (pypdf)
pip install "cofone[faiss]"    # FAISS semantic search (faiss-cpu + sentence-transformers)
pip install "cofone[web]"      # Wikipedia + YouTube
pip install "cofone[all]"      # everything above

Setup — API key required

Cofone needs at least one LLM provider API key.
The default provider is OpenRouter — free tier available, 200+ models, one key.

Step 1: Get a free key at openrouter.ai/keys

Step 2: Create a .env file in your project folder:

OPENROUTER_API_KEY=sk-or-...

Step 3: Load it in your script:

from dotenv import load_dotenv
load_dotenv()

Or pass the key directly (no .env needed):

RAG(model_api_key="sk-or-...").add_source("docs/").run("question")

→ Full setup guide for all providers: INSTALL.md


Examples

from dotenv import load_dotenv
from cofone import RAG
load_dotenv()

# ── Sources ───────────────────────────────────────────────────────────────────

# single file
RAG().add_source("notes.txt").run("Summarize")

# folder — loads all .txt .md .pdf recursively
RAG().add_source("docs/").run("What is the main topic?")

# PDF (requires pip install "cofone[pdf]")
RAG().add_source("report.pdf").run("What are the conclusions?")

# Wikipedia
RAG().add_source("https://en.wikipedia.org/wiki/Python").run("What is Python?")

# YouTube transcript
RAG().add_source("https://www.youtube.com/watch?v=VIDEO_ID").run("Summarize this video")

# multiple sources combined
RAG().add_source("docs/").add_source("https://en.wikipedia.org/wiki/AI").run("Overview")

# ── LLM providers ─────────────────────────────────────────────────────────────

RAG(model_provider="openai",     model="gpt-4o-mini").add_source("docs/").run("question")
RAG(model_provider="anthropic",  model="claude-3-5-haiku-20241022").add_source("docs/").run("question")
RAG(model_provider="gemini",     model="gemini-2.0-flash").add_source("docs/").run("question")
RAG(model_provider="groq",       model="llama-3.1-8b-instant").add_source("docs/").run("question")
RAG(model_provider="ollama",     model="llama3").add_source("docs/").run("question")  # local, no key

# ── FAISS semantic search ─────────────────────────────────────────────────────

# local embeddings (no extra key)
RAG(faiss=True).add_source("docs/").run("Find concepts related to learning")

# OpenAI embeddings
RAG(faiss=True,
    embedding_provider="openai",
    embedding_model="text-embedding-3-small"
).add_source("docs/").run("question")

# fully local — Ollama LLM + Ollama embeddings, no internet, no keys
RAG(model_provider="ollama",    model="llama3",
    faiss=True,
    embedding_provider="ollama", embedding_model="nomic-embed-text"
).add_source("docs/").run("question")

# ── Chat memory ───────────────────────────────────────────────────────────────

bot = RAG().add_source("docs/")
bot.chat("Who is Leonardo da Vinci?")
bot.chat("When was he born?")          # knows the context — "he" = Leonardo
bot.chat("What are his best works?")

# ── Streaming ─────────────────────────────────────────────────────────────────

for token in RAG().add_source("docs/").stream("Tell me about this document"):
    print(token, end="", flush=True)
print()

# ── Structured output (Pydantic) ──────────────────────────────────────────────

from pydantic import BaseModel

class Person(BaseModel):
    name: str
    birth_year: int
    nationality: str

data = RAG().add_source("docs/").run("Extract data about Leonardo", schema=Person)
print(data.name)        # Leonardo da Vinci
print(data.birth_year)  # 1452

LLM Providers (19 total)

Provider model_provider= Key env var Notes
OpenRouter "openrouter" OPENROUTER_API_KEY Default. 200+ models, free tier
OpenAI "openai" OPENAI_API_KEY GPT-4o, o3, etc.
Anthropic "anthropic" ANTHROPIC_API_KEY Claude 3.5, Claude 3
Gemini "gemini" GEMINI_API_KEY Gemini 2.0 Flash, 1.5 Pro
Mistral "mistral" MISTRAL_API_KEY Mistral Large, Codestral
Groq "groq" GROQ_API_KEY Very fast inference
Cohere "cohere" COHERE_API_KEY Command R+
DeepSeek "deepseek" DEEPSEEK_API_KEY DeepSeek-R1 reasoning
xAI "xai" XAI_API_KEY Grok
Together "together" TOGETHER_API_KEY Many open models
Perplexity "perplexity" PERPLEXITY_API_KEY Web-connected
Fireworks "fireworks" FIREWORKS_API_KEY Fast open models
Cerebras "cerebras" CEREBRAS_API_KEY Ultra-fast
NVIDIA "nvidia" NVIDIA_API_KEY NIM platform
DeepInfra "deepinfra" DEEPINFRA_API_KEY Cheap open models
Anyscale "anyscale" ANYSCALE_API_KEY Scalable inference
Ollama "ollama" none Local, no internet
LM Studio "lmstudio" none Local, no internet
llama.cpp "llamacpp" none Local, no internet

Embedding Providers (10 total)

Provider embedding_provider= Key env var Notes
sentence-transformers "local" none Default. Fully offline
OpenAI "openai" OPENAI_API_KEY text-embedding-3-small/large
Gemini "gemini" GEMINI_API_KEY text-embedding-004
Cohere "cohere" COHERE_API_KEY Multilingual, pip install cohere
Mistral "mistral" MISTRAL_API_KEY mistral-embed
Voyage "voyage" VOYAGE_API_KEY Top retrieval quality, pip install voyageai
Jina "jina" JINA_API_KEY jina-embeddings-v3
NVIDIA "nvidia" NVIDIA_API_KEY nv-embed-v2
Together "together" TOGETHER_API_KEY BGE, UAE models
Ollama "ollama" none Local, nomic-embed-text

Links

License

MIT — see LICENSE

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cofone-0.2.0.tar.gz (20.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cofone-0.2.0-py3-none-any.whl (19.8 kB view details)

Uploaded Python 3

File details

Details for the file cofone-0.2.0.tar.gz.

File metadata

  • Download URL: cofone-0.2.0.tar.gz
  • Upload date:
  • Size: 20.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for cofone-0.2.0.tar.gz
Algorithm Hash digest
SHA256 d474b4cc7fea47020ec653215b2e2921903c233a52550de651db167e3d00c906
MD5 ea2336ccef23158b55019acba0e32305
BLAKE2b-256 8f3766d1a8bcd19eb07b8a90115f0d255877c63b49eb3723d1735a534dbbab0c

See more details on using hashes here.

File details

Details for the file cofone-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: cofone-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 19.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for cofone-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 14558b38406190e4ad3647982fff008a92ed145493d978eca6121eb84754ff68
MD5 772cf3c7a703273e6574b283d4d2c5fc
BLAKE2b-256 456590bc9527224a696bd7de6f496d85c47145c2fc3c8c3d7e8d8b305724fe66

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page