Skip to main content

Research engine that builds structured knowledge graphs from any topic

Project description

BeHive โ€” Deep Research Engine

๐Ÿ BeHive

Open-source research engine that extracts structured knowledge from any topic.
Feed it a question. Get back scored claims, entity graphs, and a synthesized report โ€” not paragraphs of slop.

Quick Start โ€ข Use with AI Assistants โ€ข Benchmarks โ€ข Architecture โ€ข API โ€ข MCP


The Problem

You ask Claude to research a topic. It gives you a confident-sounding summary based on training data that's months old. No sources. No structure. No way to verify.

You ask Perplexity. Better โ€” it cites sources. But the output is still unstructured text. You can't query it, cross-reference it, or build on it.

BeHive is different. It produces machine-readable intelligence: typed claims with confidence scores, entity relationship graphs, and structured JSON you can pipe into any downstream system.

Your AI assistant โ†’ BeHive โ†’ Verified, structured, scored knowledge
                              โ”œโ”€โ”€ 363 claims (avg quality 0.824)
                              โ”œโ”€โ”€ 42 entities with relationships
                              โ””โ”€โ”€ Synthesized report with citations

Quick Start

pip install behive

# Configure your LLM (pick one)
export BEHIVE_LLM=bedrock        # AWS Bedrock Claude (recommended)
export BEHIVE_LLM=openai         # OpenAI GPT-4o
export BEHIVE_LLM=local          # Self-hosted via SGLang/vLLM

# Run research from CLI
behive research "NVIDIA Blackwell GPU production 2026" --scale 30

# Or from Python
python -c "
from behive import research
import asyncio

result = asyncio.run(research('NVIDIA Blackwell GPU production 2026'))
print(f'{result.claims_count} claims, avg quality {result.avg_quality:.3f}')
for claim in result.top_claims(5):
    print(f'  [{claim.score:.2f}] {claim.text}')
"

Use with Claude / ChatGPT / Gemini

BeHive turns any AI assistant into a verified research machine. Three integration paths:

๐ŸŸฃ Claude (via MCP โ€” zero-code)

Add to your Claude Desktop config.json or Cursor settings:

{
  "mcpServers": {
    "behive": {
      "url": "http://localhost:8090/mcp",
      "transport": "streamable-http"
    }
  }
}

Now Claude can call BeHive natively:

You: "Research the EU Carbon Border Adjustment Mechanism โ€” what are the compliance deadlines and industry impacts?"

Claude (calls research_topic) : "I've launched a deep research mission. BeHive found 312 claims across 156 sources. Here are the key findings, scored by confidence:

  • [0.94] CBAM transitional phase runs Jan 2024โ€“Dec 2025; full enforcement begins Jan 2026
  • [0.91] Importers must purchase CBAM certificates matching embedded COโ‚‚ at EU ETS price
  • [0.88] Steel, cement, aluminium, fertilizers, electricity, and hydrogen are covered sectors ..."

Claude's responses shift from "based on my training data" to "verified against 156 live sources with per-claim confidence scores."

๐ŸŸข ChatGPT (via Custom GPT / Function Calling)

Create a Custom GPT with this action:

openapi: 3.0.0
info:
  title: BeHive Research
  version: 1.0.0
servers:
  - url: https://your-server.com/api/v1
paths:
  /research:
    post:
      operationId: startResearch
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                query:
                  type: string
                depth:
                  type: integer
                  default: 3
      responses:
        '200':
          description: Mission started
  /research/{job_id}/report:
    get:
      operationId: getReport
      parameters:
        - name: job_id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Research report

Or call from the OpenAI API with function calling:

import openai
import requests

# Start BeHive research
mission = requests.post("http://localhost:8091/research", json={
    "query": "Quantum computing error correction breakthroughs 2026",
    "depth": 3
}).json()

# Wait for completion, then feed to GPT-4o
report = requests.get(f"http://localhost:8091/research/{mission['job_id']}/report").json()

response = openai.chat.completions.create(
    model="gpt-4o",
    messages=[
        {"role": "system", "content": "You are an analyst. Use the research data below to answer questions. Cite claim IDs."},
        {"role": "user", "content": f"Research data:\n{report['synthesis']}\n\nQuestion: What's the most promising approach to fault-tolerant quantum computing?"}
    ]
)

๐Ÿ”ต Gemini (via API or Vertex AI)

import google.generativeai as genai
import requests

# BeHive produces the research
claims = requests.get("http://localhost:8091/search", params={
    "query": "autonomous vehicles regulations 2026",
    "limit": 50
}).json()

# Gemini synthesizes with verified data
model = genai.GenerativeModel("gemini-2.0-flash")
response = model.generate_content(
    f"Based on these verified research claims (each with a confidence score), "
    f"write a briefing on autonomous vehicle regulation trends:\n\n"
    f"{claims['results']}"
)

Why this matters

Without BeHive With BeHive
"Based on my training data..." "Based on 234 live sources, scored 0.79 avg..."
Hallucination risk Every claim traced to source URL
Stale knowledge (months old) Real-time web research
Unstructured text blob Typed claims, entities, relationships
One-shot, forgotten Cumulative knowledge graph across sessions

Drone Arsenal

BeHive doesn't just search the web. It deploys stealth drones โ€” multi-layered fetch agents that break through anti-bot defenses, paywalls, and rate limits.

8-Layer Evasion Stack

Every URL goes through an escalation cascade. If Layer 1 gets blocked, Layer 2 fires. All the way to Layer 8.

Layer 1 โ”‚ DIRECT          โ€” aiohttp + full Chrome 131 headers
Layer 2 โ”‚ UA ROTATION     โ€” 10 browser fingerprints (Chrome/Firefox/Safari/Edge)
Layer 3 โ”‚ curl_cffi       โ€” TLS impersonation (JA3/JA4 fingerprint matching)
Layer 4 โ”‚ primp           โ€” Rust-native TLS, newer fingerprints than curl_cffi
Layer 5 โ”‚ nodriver        โ€” Headless Chrome via CDP, passes Cloudflare Bot Management
Layer 6 โ”‚ patchright      โ€” Stealth Playwright (no Runtime.enable/Console.enable leak)
Layer 7 โ”‚ Jina relay      โ€” r.jina.ai proxy (paywall + captcha bypass)
Layer 8 โ”‚ Archives        โ€” Wayback Machine + archive.org fallback

What they bypass

Defense How
Cloudflare Detected โ†’ escalate to nodriver/patchright (JS challenge solved)
DataDome TLS fingerprint rotation (primp/curl_cffi)
Akamai Bot Manager CDP-based headless + real browser UA pool
Rate limits Automatic backoff + UA rotation + parallel diversification
Paywalls Jina relay proxy + archive.org cache
Turnstile CAPTCHA patchright stealth Playwright
403/429 blocks Smart retry with escalation, never hammer the same layer

Parallel fetch architecture

                    โ”Œโ”€โ”€โ”€ HEAD sweep (974+ URLs, async semaphore) โ”€โ”€โ”€โ”
                    โ”‚                                                โ”‚
                    โ–ผ                                                โ–ผ
          โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”                            โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
          โ”‚  Resource Router โ”‚                            โ”‚  Domain Recon  โ”‚
          โ”‚  (8 resource     โ”‚                            โ”‚  (tier scoring โ”‚
          โ”‚   types detected)โ”‚                            โ”‚   reputation)  โ”‚
          โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜                            โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                   โ”‚                                              โ”‚
        โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”                       โ”‚
        โ–ผ          โ–ผ          โ–ผ          โ–ผ                       โ–ผ
   api_bee    pdf_drone   std_drone  heavy_drone         domain_score
   (70 APIs)  (VLM parse) (Layer 1-8) (patchright)       (0.0 - 1.0)

Routing decisions per resource type:

  • api_endpoint โ†’ Direct API bee (structured JSON, no parsing needed)
  • pdf โ†’ PDF drone (Vision LLM extraction)
  • static_html โ†’ Standard drone (Layer 1-4 usually sufficient)
  • spa โ†’ Heavy drone (Layer 5-6, needs JS execution)
  • paywall โ†’ Jina relay or archive fallback
  • rss_feed โ†’ RSS bee (structured, fast)
  • database_portal โ†’ Dedicated connector (custom scraping logic)

70+ API Sources

Scout bees don't just Google. They query specialized APIs across 37 categories:

Category APIs Examples
Academic 5 arXiv, Semantic Scholar, CrossRef, OpenAlex, CORE
Financial 6 SEC EDGAR, Yahoo Finance, FRED, ECB, World Bank
Government 5 TED (EU procurement), SAM.gov, UK FTS, BZP (Poland), GUS
Security 6 CVE/NVD, Shodan, VirusTotal, AbuseIPDB
Development 8 GitHub, npm, PyPI, crates.io, Docker Hub, Homebrew
ML/AI 5 HuggingFace, Papers With Code, Replicate, Ollama
News 4 NewsAPI, GNews, TheNewsAPI, Mediastack
Crypto 2 CoinGecko, CoinMarketCap
Patents 1 Google Patents (via SerpAPI)
Medical 1 PubMed/NCBI
... 25+ Trade, geopolitics, environment, demographics, ...

Total: 70 APIs, 125 endpoints โ€” each checked per-mission based on topic relevance.


Benchmarks

Real results. No cherry-picking. Scale 30 (standard depth).

Hardware: EC2 g6.24xlarge โ€” 4ร— NVIDIA L4 (92 GB VRAM), 96 vCPU, 384 GB RAM
Models: Bedrock Claude Haiku (bulk extraction) + Sonnet (enrichment), SGLang/Qwen on local GPUs

Topic Claims Avg Quality Duration Sources
NVIDIA GPU market 2026 290 0.797 8 min 234
OpenAI GPT-5 capabilities 574 0.789 12 min 174
EU AI Act enforcement 267 0.759 6 min 130
Perplexity AI business model 267 0.759 7 min 150
Meta Llama 4 architecture 568 0.821 11 min 198

Quality score meaning:

  • 0.90+ โ€” Exceptional: specific numbers, dates, sources, fully verifiable
  • 0.82+ โ€” Excellent: multi-dimensional, publication-ready
  • 0.75+ โ€” Good: useful intelligence with some specifics
  • 0.65+ โ€” Acceptable: general facts, entered into DB
  • <0.55 โ€” Rejected: too vague, not stored

Honest scoring, no tricks. No sigmoid rescaling, no artificial inflation. The score is a weighted average of specificity, information density, uniqueness, verifiability, and structure.


Architecture

                         โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
                         โ”‚         BeHive Pipeline           โ”‚
                         โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                                        โ”‚
        โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
        โ–ผ           โ–ผ           โ–ผ               โ–ผ           โ–ผ           โ–ผ
   โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
   โ”‚  SCOUT  โ”‚ โ”‚ HARVEST โ”‚ โ”‚ PROCESS  โ”‚ โ”‚   V4     โ”‚ โ”‚  SYNTH  โ”‚ โ”‚ GRAPH  โ”‚
   โ”‚         โ”‚ โ”‚         โ”‚ โ”‚          โ”‚ โ”‚          โ”‚ โ”‚         โ”‚ โ”‚        โ”‚
   โ”‚ Queen   โ”‚ โ”‚ Parallelโ”‚ โ”‚ BeeHive  โ”‚ โ”‚ Haiku    โ”‚ โ”‚ Claude  โ”‚ โ”‚ Neo4j  โ”‚
   โ”‚ plans   โ”‚ โ”‚ HTTP    โ”‚ โ”‚ fast     โ”‚ โ”‚ extract  โ”‚ โ”‚ report  โ”‚ โ”‚ entity โ”‚
   โ”‚ 5 axes  โ”‚ โ”‚ 1000+   โ”‚ โ”‚ extract  โ”‚ โ”‚ + Sonnet โ”‚ โ”‚ + cite  โ”‚ โ”‚ fuse   โ”‚
   โ”‚ ร— N     โ”‚ โ”‚ URLs    โ”‚ โ”‚ + score  โ”‚ โ”‚ enrich   โ”‚ โ”‚         โ”‚ โ”‚        โ”‚
   โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
       โ”‚              โ”‚            โ”‚            โ”‚            โ”‚          โ”‚
       โ”‚              โ”‚            โ–ผ            โ”‚            โ”‚          โ”‚
       โ”‚              โ”‚    โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”     โ”‚            โ”‚          โ”‚
       โ”‚              โ”‚    โ”‚ Quality Gate โ”‚     โ”‚            โ”‚          โ”‚
       โ”‚              โ”‚    โ”‚  conf โ‰ฅ 0.55 โ”‚     โ”‚            โ”‚          โ”‚
       โ”‚              โ”‚    โ”‚  dedup 0.60  โ”‚     โ”‚            โ”‚          โ”‚
       โ”‚              โ”‚    โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜     โ”‚            โ”‚          โ”‚
       โ”‚              โ”‚            โ”‚            โ”‚            โ”‚          โ”‚
       โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                                        โ”‚
                              โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
                              โ”‚   PostgreSQL       โ”‚
                              โ”‚   Claims + KG      โ”‚
                              โ”‚   25K+ records     โ”‚
                              โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

What makes it different from GPT-Researcher:

  1. Dual-model extraction โ€” Fast model (Haiku) for bulk extraction, powerful model (Sonnet) for enriching thin claims. Not just "summarize this page."
  2. Quality scoring โ€” Every claim gets a 0.0-1.0 score. Below threshold = rejected. No filler.
  3. Knowledge graph โ€” Entities and relationships persist across missions. Research compounds.
  4. 70+ API sources โ€” Not just web search. SEC filings, arXiv, patent databases, government APIs.
  5. Deduplication โ€” Jaccard 0.60 threshold prevents the same fact from different sources inflating counts.

API Reference

BeHive exposes a REST API (port 8091) and MCP server (port 8090).

Start Research

curl -X POST http://localhost:8091/research \
  -H "Content-Type: application/json" \
  -d '{
    "query": "SpaceX Starship launch cadence 2026",
    "depth": 3,
    "scale": 30
  }'
# โ†’ {"job_id": "hive_1785227949_815112", "status": "started"}

Stream Progress (SSE)

curl -N http://localhost:8091/research/hive_1785227949_815112/events
event: start
data: {"topic": "SpaceX Starship...", "status": "scout"}

event: phase
data: {"phase": "process", "event": "started"}

event: claims
data: {"count": 142, "avg_quality": 0.791, "above_082": 23, "new_since_last": 18}

event: done
data: {"total_claims": 363, "avg_quality": 0.824, "sources": 64}

Get Report

curl http://localhost:8091/research/hive_1785227949_815112/report
# โ†’ {"synthesis": "## SpaceX Starship...", "claims_count": 363, ...}

Search Knowledge

# Full-text search across all missions
curl "http://localhost:8091/search?query=NVIDIA+revenue&limit=20"

# Entity intelligence
curl http://localhost:8091/intelligence/entity/NVIDIA

# Network graph (2-hop neighborhood)  
curl "http://localhost:8091/intelligence/network/OpenAI?depth=2"

All Endpoints

Method Path Description
POST /research Start new mission
GET /research/{id}/status Check progress
GET /research/{id}/events SSE stream
GET /research/{id}/report Get synthesis
GET /search Query claims
GET /intelligence/entity/{name} Entity details
GET /intelligence/network/{name} Relationship graph
GET /intelligence/stats System statistics

Full Swagger docs: http://localhost:8091/docs


MCP Integration

BeHive implements the Model Context Protocol โ€” the emerging standard for AI tool connectivity.

{
  "mcpServers": {
    "behive": {
      "url": "http://localhost:8090/mcp",
      "transport": "streamable-http"
    }
  }
}

Compatible with:

  • Claude Desktop / Claude Code
  • Cursor IDE
  • Windsurf
  • n8n (via MCP node)
  • Any MCP-compatible client

Tools exposed:

Tool Description
research_topic Start deep research on any topic
mission_status Poll progress (phase, quality, claims)
get_report Get the synthesized markdown report
search_knowledge Query claims across all missions
list_missions See completed research history

Self-Hosting

Requirements

  • Python 3.10+
  • PostgreSQL 14+ (claims storage)
  • LLM access (Bedrock, OpenAI, or local SGLang/vLLM)
  • Optional: Neo4j (knowledge graph), Qdrant (embeddings)

Docker (coming soon)

docker compose up -d
behive research "your topic" --scale 30

Manual Setup

git clone https://github.com/qa10devteam/behive.git
cd behive
pip install -e .

# PostgreSQL
createdb hive
behive db init

# Configure
export BEHIVE_DB_URL="postgresql://user:pass@localhost:5432/hive"
export BEHIVE_LLM=bedrock  # or openai, local

# Start services
behive api start      # REST API on :8091
behive mcp start      # MCP server on :8090

How It Works (for humans)

  1. You give it a topic. "NVIDIA GPU market 2026"

  2. Scout bees plan the research. The Queen decomposes it into 5 axes (market share, financials, products, competition, supply chain). Generates 12-14 search queries per axis. Checks 70+ APIs.

  3. Harvest bees collect sources. Parallel HTTP fetches ~1000 URLs. HEAD sweep first (fast), then full content extraction on promising ones. Typically lands 60-90 usable documents.

  4. Worker bees extract claims. This is where BeHive shines:

    • Every document gets parsed into atomic, verifiable claims
    • Each claim scored on 5 dimensions (specificity, density, uniqueness, verifiability, structure)
    • Claims below 0.55 quality โ†’ rejected
    • Thin claims (missing dates/numbers) โ†’ enriched by Sonnet
    • Duplicate claims (Jaccard >0.60) โ†’ merged
  5. The Queen synthesizes. Claude weaves the verified claims into a structured report with inline citations. No hallucination โ€” every statement maps to a scored claim.

  6. Knowledge graph grows. Entities (companies, people, products, amounts) and their relationships are stored in Neo4j. Next research mission on a related topic starts with existing context.


Configuration

Variable Default Description
BEHIVE_DB_URL postgresql://localhost/hive PostgreSQL connection
BEHIVE_LLM bedrock LLM provider: bedrock, openai, local
BEHIVE_LLM_URL โ€” Local LLM endpoint (for local mode)
BEHIVE_NEO4J_URI bolt://localhost:7687 Neo4j (optional)
BEHIVE_QDRANT_URL http://localhost:6333 Qdrant (optional)
BEHIVE_SCALE 30 Default research scale (30-300)
BEHIVE_QUALITY_GATE 0.55 Minimum claim quality to store
AWS_PROFILE default For Bedrock authentication
OPENAI_API_KEY โ€” For OpenAI mode

Comparison

BeHive GPT-Researcher Tavily Perplexity STORM
Output format Structured JSON Markdown text JSON snippets Text Wiki article
Per-claim scoring โœ… 0.0-1.0 โŒ โŒ โŒ โŒ
Knowledge graph โœ… Neo4j โŒ โŒ โŒ โŒ
Cross-session memory โœ… Cumulative โŒ โŒ โŒ โŒ
MCP native โœ… โŒ โŒ โŒ โŒ
API sources (70+) โœ… โŒ Web only โš ๏ธ Search โš ๏ธ Search โŒ Web only
Self-hosted โœ… Full โš ๏ธ Needs API keys โŒ Cloud โŒ Cloud โœ…
Quality deduplication โœ… Jaccard 0.60 โŒ โŒ โŒ โŒ
SSE streaming โœ… Real-time โŒ โŒ โŒ โŒ
Pricing Free (MIT) Free (MIT) $0.01/search $20/mo+ Free (MIT)

Roadmap

  • V4 pipeline (Haiku + Sonnet extraction)
  • Quality scoring (avg 0.82+ achieved)
  • REST API (27 endpoints)
  • MCP Server (Streamable HTTP)
  • SSE streaming (real-time progress)
  • Knowledge graph (Neo4j)
  • 70+ API sources
  • pip install behive (PyPI)
  • Docker Compose one-liner
  • n8n community node
  • Web UI dashboard
  • Multi-tenant API keys
  • Webhook callbacks

Contributing

git clone https://github.com/qa10devteam/behive.git
cd behive
pip install -e ".[dev]"
pytest

License

MIT โ€” use it, fork it, ship it, sell it.


Built by QA10 ยท Structured knowledge, not text soup.

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

behive-0.1.0.tar.gz (24.0 kB view details)

Uploaded Source

Built Distribution

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

behive-0.1.0-py3-none-any.whl (16.4 kB view details)

Uploaded Python 3

File details

Details for the file behive-0.1.0.tar.gz.

File metadata

  • Download URL: behive-0.1.0.tar.gz
  • Upload date:
  • Size: 24.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.11.15

File hashes

Hashes for behive-0.1.0.tar.gz
Algorithm Hash digest
SHA256 1aa324493fd25d5893a8afead34a655830fe6397ce9958b158725e9b42b0f392
MD5 60c192c67da939fec06928fcd0ad7568
BLAKE2b-256 5f90e1e654007ba4562b5533abacdb52e8e3df4d69783b4fd5a67d4d03c8fb15

See more details on using hashes here.

File details

Details for the file behive-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: behive-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 16.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.11.15

File hashes

Hashes for behive-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d936da9df1f0cb1699e67d3e5a1f73409ad9815a0bfb41584778224341b1cc86
MD5 7e169e1893a922c6c84bfc1b71191e94
BLAKE2b-256 83857fc31fd3733c8620dacb255106acfc35548ea7e9472415e99c410ec793cb

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