Terminal-first local RAG and AI chat for your own documents, code, and crawled websites. Semantic and hybrid search, vision OCR, auto-built wiki, browsable GGUF model catalog. One install, no sidecars. CLI, TUI, MCP server, REST API, and Python library in one process.
Project description
lilbee
A terminal-first local search engine for your own files, websites, and scanned documents. One install, no sidecar services, fully offline by default.
In active development. Moving fast toward a 0.6.66 final release. Interfaces may shift between beta versions. Feedback and issues are welcome.
- Why lilbee
- Previews
- What you can do with it
- TUI
- Hardware requirements
- Install
- Agent integration
- HTTP Server · API reference
- Interactive chat
- Supported formats
- Experimental
Why lilbee
Local AI tools have gotten great at getting you to a chat window fast. The first evening with a local model is genuinely fun. What makes it stick past the novelty is grounding: the model has to actually know your files, your notes, your codebase. Without that, the conversation runs out of places to go.
The interesting part of local AI isn't the chatbot alone. It's pairing a chatbot with a real search engine over your own documents. Index your stuff, retrieve what matters, let a local model reason over it, get answers with citations you can click back to the source. Now the model knows your world.
Historically that meant juggling a background daemon, a separate inference server, model files fetched by hand from the web, and a retrieval layer glued on top. lilbee bundles all of it into one install. Everything lives in one process, in the terminal, including a browsable GGUF model catalog.
The same executable ships a Textual TUI, a REST API, an MCP server for AI agents, and a Python library. It runs globally by default, or per-project by dropping a .lilbee/ next to .git/, the same pattern git uses. Focused project vaults search better than one giant catch-all index.
An Encarta 99 you build for yourself, from your own files, shaped to your needs.
Previews
Real terminal recordings coming soon. Previews below give the shape of each screen. Written walkthroughs are under
docs/benchmarks/: Godot level generator and vision OCR model comparison.
Chat. The default screen. Streaming replies with clickable citations.
┌─ lilbee ──────────────────────────────────────────────────────┐
│ [💬 qwen3:0.6b ▾] [🗄 nomic-embed ▾] [OCR] [All|Wiki|Raw] │
│───────────────────────────────────────────────────────────────│
│ │
│ You: what does the oil pressure warning mean? │
│ │
│ lilbee: The oil pressure warning indicates low oil │
│ pressure.[¹] When the light stays on, stop the │
│ engine immediately.[²] │
│ ───────────────────── │
│ Sources │
│ [¹ owners-manual.pdf:42] ← click to open │
│ [² owners-manual.pdf:43] │
│ │
│───────────────────────────────────────────────────────────────│
│ Ask anything... [Send] │
│ SYNC vault ████████░░░░░░ 42% │
└───────────────────────────────────────────────────────────────┘
Task Center. Every background job (sync, crawl, wiki build, model pull) in one place. Global concurrency cap; new tasks queue when full.
┌─ Task Center ─────────────── [cap 3/3] [Clear]┐
│ ACTIVE (2) │
│ ████████████░░░░░░░░░ 42% PULL qwen3:8b │
│ ██████░░░░░░░░░░░░░░░ 18% SYNC vault │
│ QUEUED (1) │
│ CRAWL https://docs.example.com │
│ COMPLETED │
│ ✓ SYNC vault 2 min ago│
│ ✗ PULL mistral 5 min ago│
│ ✓ ADD cv-manual.pdf 12 min ago│
└───────────────────────────────────────────────┘
Wiki. Auto-generated concept and entity pages, with drafts awaiting review.
┌─ Wiki ────────────────────────────────────────┐
│ 🔍 Filter pages... │
│ │
│ Concepts (8) │
│ Braking Systems 5 src │
│ Cooling System 2 src │
│ Entities (12) │
│ Henry Ford 3 src │
│ Drafts (2) │
│ Tire Pressure 1 src │
│───────────────────────────────────────────────│
│ ┌─ Braking Systems ────────────────────────┐ │
│ │ 5 sources · faithfulness 0.92 │ │
│ │ │ │
│ │ Modern braking systems combine hydraulic │ │
│ │ actuation with ABS to prevent wheel │ │
│ │ lockup under heavy deceleration.[¹] │ │
│ │ │ │
│ │ [¹ brake-primer.pdf:8] ← click │ │
│ └──────────────────────────────────────────┘ │
└───────────────────────────────────────────────┘
Model catalog. Browse, install, and switch roles without leaving the terminal. ★ marks the featured pick for each role.
┌─ Model Catalog ───────────────────────────────┐
│ [All tasks ▾] [All sizes ▾] [Featured ▾] │
│ 🔍 search... [Grid | List] │
│ │
│ Our picks │
│ ┌────────────┐ ┌────────────┐ ┌────────────┐ │
│ │ Qwen3 0.6B★│ │ Nomic │ │ BGE Rerank │ │
│ │ ▌chat ▐ │ │ ▌embed▐ │ │ ▌rerank▐ │ │
│ │ [GGUF] │ │ [GGUF] │ │ [GGUF] │ │
│ │ 450 MB ✓ │ │ 274 MB ✓ │ │ 1.2 GB │ │
│ │ [Use] │ │ [Use] │ │ [Pull] │ │
│ └────────────┘ └────────────┘ └────────────┘ │
│ │
│ Chat │
│ ┌────────────┐ ┌────────────┐ │
│ │ Qwen3 8B │ │ Phi-4 14B │ │
│ │ [GGUF] │ │ [GGUF] │ │
│ │ 4.9 GB │ │ 9.1 GB │ │
│ │ [Pull] │ │ [Pull] │ │
│ └────────────┘ └────────────┘ │
│ [Load more] │
└───────────────────────────────────────────────┘
What you can do with it
A personal encyclopedia of what you've collected
Point lilbee at a folder of PDFs, notes, ebooks, or code and it indexes them into a searchable archive with citations that click back to the source line. The same pattern works for anything you have a lot of text about: a medical textbook collection, a guitar theory library, a field's research papers, a car's service manuals, your company's internal wiki. Whatever corpus you give it becomes a searchable, talkable version of exactly what you have.
Grounding for AI agents
For programmers, lilbee plugs into whatever AI agent you already use (via MCP). Feed it your project's docs, your dependency source, the vendor SDK reference, your design notes, and the agent stops making up function names. It reads the actual code it's about to call, cites the file and line, and tells you when the answer isn't in the corpus instead of guessing. That matters: a lot of AI today produces confident-sounding guesses and charges per token for them. lilbee is built the other way. Answers should come from sources you can check, and the system should be willing to say it doesn't know.
Offline copies of websites
Web crawling paired with local search and chat takes one command. Install the crawler extra, point lilbee at a docs site, a wiki, or a vendor's API reference, and the pages get fetched, converted to markdown, and indexed. From then on you can search or chat with that site completely offline, even if it changes or goes down.
How it's built
Under the hood lilbee stands on established open-source projects: Kreuzberg handles document parsing, LanceDB is the embedded search layer, llama-cpp runs models locally, crawl4ai and Playwright crawl the web, and Textual draws the terminal. The architectural bet is that everything stays embedded in one process. Most systems in this shape deploy a vector database and a model server separately, usually reaching for a cloud-hosted search service (Pinecone, managed Qdrant, managed Weaviate) to avoid operating them, which moves your data onto someone else's servers. lilbee skips that layer entirely. Copy the executable onto a laptop and you have a complete local search-and-chat stack with nothing to deploy.
Documents, code, and scanned images
Document and code processing get treated as a first-class problem. Most retrieval libraries throw your files at a PDF extractor and call it done. lilbee splits the work along the grain of what's being indexed: prose and structured documents (90+ formats across PDFs, Office files, ebooks, HTML, and more) go through Kreuzberg's Rust-based extraction pipeline with heading-aware chunking, so each chunk keeps its section context. Code goes through tree-sitter's AST-aware splitter across 150+ languages, so chunks map to real functions, classes, and modules instead of arbitrary line ranges. Retrieval returns things that make sense on their own, not fragments that cut through an argument or a function signature.
Scanned PDFs and photographed notes go through an OCR pipeline with a choice of backends: Tesseract, a local GGUF vision model via llama-cpp's mtmd backend (which preserves tables and layout as markdown), or a remote vision model through the SDK backend.
Pick and tune your models
Chat, embedding, vision, and reranking models are installed and switched from inside the terminal: browse the catalog, pull a GGUF, pick a role. Retrieval and generation are deeply tunable. You can make chunks smaller for finer-grained matches, make search stricter to filter out loose results, skip automatic query rewriting for faster responses, turn on a second-pass re-scorer for precision over the top results, or lean more on topic relationships when your corpus has lots of interconnected ideas. All editable from the TUI, environment variables, or a project-local config file, with sensible defaults out of the box.
Local-first, frontier-capable
lilbee is built as a local-first tool. The TUI shows a persistent warning whenever a cloud-hosted model is active so it's clear when chunks are leaving the machine. Popular frontier models are one pip install --pre lilbee[litellm] away when a local model isn't enough, so the power is there when you need it.
TUI
lilbee with no args (or lilbee chat) launches a full Textual terminal app. Chat streams replies with clickable citations. A Task Center tracks every background job (sync, crawl, wiki build, model pull) and lets you cancel them with /cancel. Other screens cover the model catalog (/models), settings (/settings), first-time setup wizard (/setup), and the auto-built wiki (/wiki). Tab completion works for slash commands, file paths, model names, setting keys, and themes.
See Previews for a visual and the slash-command reference for the full list.
Hardware requirements
Standalone mode runs entirely on your machine. No cloud required.
| Resource | Minimum | Recommended |
|---|---|---|
| RAM | 8 GB | 16 to 32 GB |
| GPU / Accelerator | none required | Apple Metal (M-series), NVIDIA GPU (6+ GB VRAM) |
| Disk | 2 GB (models + data) | 10+ GB if using multiple models |
| CPU | Any modern x86_64 / ARM64 | same as minimum |
lilbee uses llama-cpp-python for inference locally: Metal on macOS, CUDA on Linux/Windows when available, CPU otherwise (usable for embedding, slow for chat). Popular frontier models are optional; install with pip install --pre lilbee[litellm].
Install
Prerequisites
- Python 3.11+
- Optional (for scanned PDF / image OCR): Tesseract (
brew install tesseract/apt install tesseract-ocr) or a GGUF vision model (see vision OCR)
No external services needed. lilbee downloads and runs GGUF models locally via llama-cpp.
Install
pip install --pre lilbee # base install
pip install --pre lilbee[crawler] # + web crawling
pip install --pre lilbee[litellm] # + Ollama and frontier model support
pip install --pre lilbee[graph] # + concept-graph search boost
pip install --pre lilbee[graph,crawler,litellm] # everything
While 0.6.66 is in beta, the
--preflag is required. Once a stable release is cut, plainpip install lilbeewill work.
Optional extras
lilbee works out of the box. Extras unlock additional capabilities:
| Extra | Install | What it adds |
|---|---|---|
| Web crawling | pip install --pre lilbee[crawler] |
Index websites alongside local files. Recursive crawling with Playwright, live progress, cancel, hash-based change detection, SSRF protection, rate limits. |
| Ollama and frontier models | pip install --pre lilbee[litellm] |
Keep compatibility with existing Ollama setups, or use a popular frontier model (OpenAI, Anthropic, Gemini, etc.) for chat, vision, or embeddings while keeping other roles local. You provide the API key. Chunks sent to the provider leave your machine, and the TUI shows a persistent warning while a cloud model is active. |
| Concept graph | pip install --pre lilbee[graph] |
Topic clustering and search boosting. Extracts concepts from your documents and uses their relationships to find results pure text matching misses. Zero extra LLM calls. |
Install multiple: pip install --pre lilbee[graph,crawler,litellm]
See the full guide on optional extras for configuration and details.
Development (run from source)
git clone https://github.com/tobocop2/lilbee && cd lilbee
uv sync
uv run lilbee
Agent integration
lilbee serves as a retrieval backend for AI coding agents via two entry points: an MCP server (lilbee mcp) and a JSON CLI (lilbee --json ...). MCP exposes search, document lifecycle, crawling, model management, and the full wiki surface as tools; search takes a scope argument so agents can target documents, wiki pages, or both.
See docs/agent-integration.md for MCP client configuration, the full tool reference, and JSON CLI examples.
HTTP Server
lilbee serve starts a REST API that any tool or GUI can hit. It covers search (with SSE streaming), document lifecycle, crawling, model management, configuration, and vault-aware source retrieval for GUI clients. Interactive API docs live at /schema/redoc when the server is running.
See the API reference for the full OpenAPI schema and the usage guide for serve options.
An Obsidian plugin that pairs with lilbee is coming soon. It has full feature parity with the TUI but is aimed at GUI users, especially for workflows where seeing the source matters: index a stack of PDFs, ask a question, and preview the exact page the citation points to without leaving the editor. The plugin runs lilbee serve as a managed sidecar (starting it, stopping it, and talking to it over the REST API), so there's no separate service for you to babysit. Track progress in this PR.
Interactive chat
Running lilbee or lilbee chat enters the TUI. Type / to see the full slash-command list inline, or check the slash-command reference in the usage guide. Slash commands and paths tab-complete; background jobs appear in the Task Center and are cancellable with /cancel.
Supported formats
Text extraction powered by Kreuzberg, code chunking by tree-sitter. Structured formats (XML, JSON, CSV) get embedding-friendly preprocessing. This list is not exhaustive; Kreuzberg supports additional formats beyond what's listed here.
| Format | Extensions | Requires |
|---|---|---|
.pdf |
none | |
| Scanned PDF | .pdf (no extractable text) |
Tesseract (auto, plain text), or a GGUF vision model via the native mtmd backend (recommended, preserves tables, headings, and layout as markdown) |
| Office | .docx, .xlsx, .pptx |
none |
| eBook | .epub |
none |
| Images (OCR) | .png, .jpg, .jpeg, .tiff, .bmp, .webp |
Tesseract |
| Data | .csv, .tsv |
none |
| Structured | .xml, .json, .jsonl, .yaml, .yml |
none |
| Code | .py, .js, .ts, .go, .rs, .java and 150+ more via tree-sitter (AST-aware chunking) |
none |
See the usage guide for OCR setup and model benchmarks.
Experimental
Two opt-in features that work but are still finding their final shape. Generation quality and retrieval behavior depend on corpus, models, and knobs; expect to iterate. Feedback is welcome.
Wiki
lilbee analyzes the documents you've indexed and writes a wiki about them. Pages compound across sources instead of being one-per-document, so concepts and entities that show up repeatedly get their own page with citations from every source that mentions them. Pages live under $LILBEE_DATA/wiki/, grouped into concepts/, entities/, and a drafts/ queue when confidence is low. An index.md tracks them all and log.md records every build, ingest, and prune.
Every section is citation-verified against the source chunks and scored for embedding faithfulness before publish. Plain-text concept slugs inside page bodies are rewritten to [[wiki link]] form so graph-style markdown viewers can render the connections. Some pages will land in drafts/ for human review rather than publish direct.
See the Wiki section of the usage guide for the full command list and configuration.
Semantic chunking
A semantic-chunking mode is available as an opt-in alternative to the default fixed-size chunker. It uses embedding similarity to find topic boundaries, so each chunk is one coherent thought instead of a fragment that cuts through an argument. The benefit shows up on prose-heavy corpora like novels, essays, long-form research papers, or interview transcripts. The trade-off is roughly 9x more embedding calls during indexing.
See the Semantic chunking section of the usage guide for trade-offs and how to enable it.
License
Elastic License 2.0 (ELv2). See LICENSE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file lilbee-0.6.66b425.tar.gz.
File metadata
- Download URL: lilbee-0.6.66b425.tar.gz
- Upload date:
- Size: 1.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8866ccfa5ddcaa0527fee79686c163c63bf88adfc4d8c432ad3d88b0359053f
|
|
| MD5 |
71c908c3e1c60523f651979ed4d19bf6
|
|
| BLAKE2b-256 |
388809d1945cbd44a476328af6e3b741cf44fa9a4a936ff574e6045df59ba3ff
|
Provenance
The following attestation bundles were made for lilbee-0.6.66b425.tar.gz:
Publisher:
build-wheels.yml on tobocop2/lilbee
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
lilbee-0.6.66b425.tar.gz -
Subject digest:
e8866ccfa5ddcaa0527fee79686c163c63bf88adfc4d8c432ad3d88b0359053f - Sigstore transparency entry: 1373402227
- Sigstore integration time:
-
Permalink:
tobocop2/lilbee@84e96e8da5099d7cd8642274bfd47913217399f7 -
Branch / Tag:
refs/tags/v0.6.66b425 - Owner: https://github.com/tobocop2
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@84e96e8da5099d7cd8642274bfd47913217399f7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file lilbee-0.6.66b425-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: lilbee-0.6.66b425-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a4602bf98671babbb92e56e9ea1f2486e5a03f282f78adc68973b4e828fbdcb
|
|
| MD5 |
a97a002a6b6be91c07d1de23b2123496
|
|
| BLAKE2b-256 |
60cb253556e765ccd01a7713cc50480e54a57024f17e693f6dcac642f7671cca
|
Provenance
The following attestation bundles were made for lilbee-0.6.66b425-cp313-cp313-win_amd64.whl:
Publisher:
build-wheels.yml on tobocop2/lilbee
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
lilbee-0.6.66b425-cp313-cp313-win_amd64.whl -
Subject digest:
0a4602bf98671babbb92e56e9ea1f2486e5a03f282f78adc68973b4e828fbdcb - Sigstore transparency entry: 1373402317
- Sigstore integration time:
-
Permalink:
tobocop2/lilbee@84e96e8da5099d7cd8642274bfd47913217399f7 -
Branch / Tag:
refs/tags/v0.6.66b425 - Owner: https://github.com/tobocop2
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@84e96e8da5099d7cd8642274bfd47913217399f7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file lilbee-0.6.66b425-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: lilbee-0.6.66b425-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 7.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dba79f1745cf27461ebb26d9e8b15d2b2f20e9fb7740d16653c6ad0c0cfd496b
|
|
| MD5 |
cb9ce8a97cd06b810f352de3f8cd1f75
|
|
| BLAKE2b-256 |
69cbcffe750f3bfa537f97eca58b2de765ead57543bd8135a8b2eb7336b49e28
|
Provenance
The following attestation bundles were made for lilbee-0.6.66b425-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
build-wheels.yml on tobocop2/lilbee
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
lilbee-0.6.66b425-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
dba79f1745cf27461ebb26d9e8b15d2b2f20e9fb7740d16653c6ad0c0cfd496b - Sigstore transparency entry: 1373402403
- Sigstore integration time:
-
Permalink:
tobocop2/lilbee@84e96e8da5099d7cd8642274bfd47913217399f7 -
Branch / Tag:
refs/tags/v0.6.66b425 - Owner: https://github.com/tobocop2
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@84e96e8da5099d7cd8642274bfd47913217399f7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file lilbee-0.6.66b425-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: lilbee-0.6.66b425-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 6.2 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26418770f4c1543c833ead33832166732d01aea3137e0b3a234bf37dafcb1404
|
|
| MD5 |
15f250014d6167aa479966c37c9b3447
|
|
| BLAKE2b-256 |
3e173763a68f309b85384458a5e25cc564a4238cbd884af0c1808029b16ec224
|
Provenance
The following attestation bundles were made for lilbee-0.6.66b425-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
build-wheels.yml on tobocop2/lilbee
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
lilbee-0.6.66b425-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
26418770f4c1543c833ead33832166732d01aea3137e0b3a234bf37dafcb1404 - Sigstore transparency entry: 1373402669
- Sigstore integration time:
-
Permalink:
tobocop2/lilbee@84e96e8da5099d7cd8642274bfd47913217399f7 -
Branch / Tag:
refs/tags/v0.6.66b425 - Owner: https://github.com/tobocop2
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@84e96e8da5099d7cd8642274bfd47913217399f7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file lilbee-0.6.66b425-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: lilbee-0.6.66b425-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf1cafeab6bc99fcecf4c8ceeb01a6c37465511fe225f7d5e2fbe3a96187c71c
|
|
| MD5 |
a2983552329eaf3807d77e324fd5ce33
|
|
| BLAKE2b-256 |
378c41d49de55248ff496bd0b827e00884a2dd3a0adc5c73f52de48608569d6d
|
Provenance
The following attestation bundles were made for lilbee-0.6.66b425-cp312-cp312-win_amd64.whl:
Publisher:
build-wheels.yml on tobocop2/lilbee
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
lilbee-0.6.66b425-cp312-cp312-win_amd64.whl -
Subject digest:
bf1cafeab6bc99fcecf4c8ceeb01a6c37465511fe225f7d5e2fbe3a96187c71c - Sigstore transparency entry: 1373402479
- Sigstore integration time:
-
Permalink:
tobocop2/lilbee@84e96e8da5099d7cd8642274bfd47913217399f7 -
Branch / Tag:
refs/tags/v0.6.66b425 - Owner: https://github.com/tobocop2
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@84e96e8da5099d7cd8642274bfd47913217399f7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file lilbee-0.6.66b425-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: lilbee-0.6.66b425-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 7.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5b49adb14de9ec7fff187556f385824679677ed0fb56e1274c2ca94af131d82
|
|
| MD5 |
f0943c76d815081759b406c73d6cdb6a
|
|
| BLAKE2b-256 |
d4bdb9f109f5b494e795a9445218a53c4320403f0f7258b2f583dcd9f9942a9a
|
Provenance
The following attestation bundles were made for lilbee-0.6.66b425-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
build-wheels.yml on tobocop2/lilbee
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
lilbee-0.6.66b425-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
c5b49adb14de9ec7fff187556f385824679677ed0fb56e1274c2ca94af131d82 - Sigstore transparency entry: 1373402717
- Sigstore integration time:
-
Permalink:
tobocop2/lilbee@84e96e8da5099d7cd8642274bfd47913217399f7 -
Branch / Tag:
refs/tags/v0.6.66b425 - Owner: https://github.com/tobocop2
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@84e96e8da5099d7cd8642274bfd47913217399f7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file lilbee-0.6.66b425-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: lilbee-0.6.66b425-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 6.2 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c792a77abd785a875d3654267b708171ac986f879a652fc829d7c2b1bc2c2942
|
|
| MD5 |
1f10c0cb0b9548b05f11e64e10c70efc
|
|
| BLAKE2b-256 |
eb79d6941a3ca4c7a77dc092d21c23ad1e759aad22a34005a076439bf6bf739e
|
Provenance
The following attestation bundles were made for lilbee-0.6.66b425-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
build-wheels.yml on tobocop2/lilbee
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
lilbee-0.6.66b425-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
c792a77abd785a875d3654267b708171ac986f879a652fc829d7c2b1bc2c2942 - Sigstore transparency entry: 1373402780
- Sigstore integration time:
-
Permalink:
tobocop2/lilbee@84e96e8da5099d7cd8642274bfd47913217399f7 -
Branch / Tag:
refs/tags/v0.6.66b425 - Owner: https://github.com/tobocop2
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@84e96e8da5099d7cd8642274bfd47913217399f7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file lilbee-0.6.66b425-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: lilbee-0.6.66b425-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae9db7833732f87f4e2fe4dbcb33648cc9d176f6122a8f06e8161d732e62a746
|
|
| MD5 |
d3224a1979eb25111e31d29ff6d4b55f
|
|
| BLAKE2b-256 |
0d461abc93a0abd43977dbfff11b34f8d459fbc0cb5b7f0045cea59846f58bba
|
Provenance
The following attestation bundles were made for lilbee-0.6.66b425-cp311-cp311-win_amd64.whl:
Publisher:
build-wheels.yml on tobocop2/lilbee
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
lilbee-0.6.66b425-cp311-cp311-win_amd64.whl -
Subject digest:
ae9db7833732f87f4e2fe4dbcb33648cc9d176f6122a8f06e8161d732e62a746 - Sigstore transparency entry: 1373402852
- Sigstore integration time:
-
Permalink:
tobocop2/lilbee@84e96e8da5099d7cd8642274bfd47913217399f7 -
Branch / Tag:
refs/tags/v0.6.66b425 - Owner: https://github.com/tobocop2
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@84e96e8da5099d7cd8642274bfd47913217399f7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file lilbee-0.6.66b425-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: lilbee-0.6.66b425-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 7.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e9d73f8f3b18b008810f986f200d513fd2c1340f03245d3f6a6cb03d07c765fc
|
|
| MD5 |
f4a054c88414ff3e89dde9f7cdf7bb51
|
|
| BLAKE2b-256 |
08a764d35bb0f0d1e4d4c6df93a4799a3ee52efab17fb16990b319a9262c5f89
|
Provenance
The following attestation bundles were made for lilbee-0.6.66b425-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
build-wheels.yml on tobocop2/lilbee
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
lilbee-0.6.66b425-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
e9d73f8f3b18b008810f986f200d513fd2c1340f03245d3f6a6cb03d07c765fc - Sigstore transparency entry: 1373402621
- Sigstore integration time:
-
Permalink:
tobocop2/lilbee@84e96e8da5099d7cd8642274bfd47913217399f7 -
Branch / Tag:
refs/tags/v0.6.66b425 - Owner: https://github.com/tobocop2
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@84e96e8da5099d7cd8642274bfd47913217399f7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file lilbee-0.6.66b425-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: lilbee-0.6.66b425-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 6.2 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0965de6f60b53baceba6f5777d8c3960aea88cb88e89f3d76653b6ebccdf40e2
|
|
| MD5 |
8756ba3b96bf4fb2a3fbcfc266af9643
|
|
| BLAKE2b-256 |
8298bced0c27595f6c3eeda1d228d2e02476499e97cb8199f855bb56695b2b00
|
Provenance
The following attestation bundles were made for lilbee-0.6.66b425-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
build-wheels.yml on tobocop2/lilbee
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
lilbee-0.6.66b425-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
0965de6f60b53baceba6f5777d8c3960aea88cb88e89f3d76653b6ebccdf40e2 - Sigstore transparency entry: 1373402547
- Sigstore integration time:
-
Permalink:
tobocop2/lilbee@84e96e8da5099d7cd8642274bfd47913217399f7 -
Branch / Tag:
refs/tags/v0.6.66b425 - Owner: https://github.com/tobocop2
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@84e96e8da5099d7cd8642274bfd47913217399f7 -
Trigger Event:
release
-
Statement type: