Intelligent, honest knowledge retrieval in 5 minutes. No infrastructure. No boilerplate.
Project description
fitz-sage
The RAG library that says "I don't know" instead of hallucinating.
Why fitz-sage? • Retrieval Intelligence • Governance • Documentation • GitHub
Q: "Who won the 2024 FIFA World Cup?" (There was no World Cup in 2024.) |
|
❌ Uncalibrated RAG systems
A: "Germany won the 2024 FIFA World Cup,
defeating Argentina 1-0 in the final."
|
🛡️ fitz-sage
A: "I don't have enough information
to answer this question.
Related topics in the knowledge base:
- FIFA tournament history (4 mentions)
- 2022 World Cup coverage (7 mentions)
To answer this, consider adding:
- Documents covering 2024 FIFA events."
|
fitz-sage refuses, explains why, and tells you what to add.
Where to start 🚀
[!IMPORTANT] Requires any OpenAI-compatible LLM endpoint — local (llama.cpp, vLLM, LM Studio, Ollama) or cloud (OpenAI, Together, Groq, Fireworks, OpenRouter, …).
fitz-sageauto-detects a local server on the standard ports on first run, or falls back toOPENAI_API_KEY.
pip install fitz-sage
# Local (recommended): start llama-server with any GGUF chat model
llama-server -m gpt-oss-20b.gguf --port 8080 &
# Then point fitz-sage at it — same syntax for cloud:
fitz query "What is our refund policy?" --source ./docs
That's it. Your documents are now searchable with AI.
Figure 1: Example of user experience for querying documents using fitz-sage.
About
Existing RAG tools hallucinate. When the answer isn't in your documents, they invent one — confidently, fluently, wrongly. In production, that's not a minor inconvenience. It's the reason you can't trust the system. I built fitz-sage to solve that problem directly, while working as a Data Engineer in the automotive industry. No LangChain. No LlamaIndex. Every layer written from scratch.
The retrieval architecture is KRAG (Knowledge Routing Augmented Generation) — documents are parsed into typed units ( code symbols, sections, tables) and each query is routed to the right search strategy, rather than searching flat chunks uniformly.
Honesty is enforced by pyrrho — a fine-tuned ModernBERT encoder that classifies every (query, retrieved contexts) pair into
TRUSTWORTHY / DISPUTED / ABSTAIN in a single ~30 ms INT8 ONNX forward pass on CPU. No LLM dependency on the governance path.
Validated against fitz-gov, a purpose-built benchmark of 2,920 adversarial test cases:
86.13% overall accuracy and 5.27% false-trustworthy rate.
It runs in production today and powers fitz-forge.
Yan Fitzner — (LinkedIn, GitHub, HuggingFace).
📦 What is RAG?
RAG is how ChatGPT's "file search," Notion AI, and enterprise knowledge tools actually work under the hood. Instead of sending all your documents to an AI, RAG:
- Indexes your documents — Splits them into chunks, converts to vectors, stores in a database
- Retrieves only what's relevant — When you ask a question, finds the 5-10 most relevant chunks
- Sends just those chunks to the LLM — The AI answers based on focused, relevant context
Traditional approach:
[All 10,000 documents] → LLM → Answer
❌ Impossible (too large)
❌ Expensive (if possible)
❌ Unfocused
RAG approach:
Question → [Search index] → [5 relevant chunks] → LLM → Answer
✅ Works at any scale
✅ Costs pennies per query
✅ Focused context = better answers
📦 Why Can't I Just Send My Documents to ChatGPT directly?
You can—but you'll hit walls fast.
Context window limits 🚨
GPT-5 accepts ~272k tokens. That's roughly 600 pages. Your company wiki, codebase, or document archive is likely 5x-50x larger. You physically cannot paste it all.
Cost explosion 💥
Even if you could fit everything, you'd pay for every token on every query. Sending 100k tokens costs ~$1-3 per question. Ask 50 questions a day? That's $50-150 daily—for one user.
No selective retrieval ❌
When you paste documents, the model reads everything equally. It can't focus on what's relevant. Ask about refund policies and it's also processing your hiring guidelines, engineering specs, and meeting notes—wasting context and degrading answers.
No persistence 💢
Every conversation starts fresh. You re-upload, re-paste, re-explain. There's no knowledge base that accumulates and improves.
📦 How is this different from LangChain / LlamaIndex?
They're frameworks — you assemble the chunker, embedder, vector store, retriever, and prompt chain yourself. fitz-sage is a library — one function call that handles all of it with built-in intelligence.
You trade flexibility for a pipeline that handles temporal queries, comparison queries, code symbol extraction, tabular SQL, and epistemic honesty out of the box — without configuration.
Why fitz-sage?
Asymmetric indexing 🗂️ → KRAG (Knowledge Routing Augmented Generation)
Documents are parsed into typed retrieval units (symbols, sections, tables) with structural metadata, not flat chunks. Queries are routed to the right strategy per content type.
Zero-wait querying 🐆 → Progressive KRAG
Ask a question immediately — no ingestion step required.
fitz-sageserves answers instantly via agentic search while a background worker indexes your files. Queries get faster over time as indexing completes, but they work from second one.
Honest answers ✅ → pyrrho model card
Most RAG tools confidently answer even when the answer isn't in your documents. Ask "What was our Q4 revenue?" when your docs only cover Q1-Q3, and typical RAG hallucinates a number.
fitz-sagesays: "I cannot find Q4 revenue figures in the provided documents."→ Detects when to abstain at 92.94% recall on fitz-gov, a 2,920 case benchmark for epistemic honesty (62.7% hard difficulty). Overall accuracy: 86.13%. False-trustworthy rate: 5.27%. One ~30 ms encoder forward pass, no LLM call.
Actionable failures 🔍
When
fitz-sagecan't answer, it doesn't just refuse — it explains what it searched for, shows related topics that do exist, and suggests what documents to add. When sources conflict, it tells you exactly which sources disagree and what the disagreement is about. Every failure mode is a feedback signal, not a dead end.
Queries that actually work 📊
Standard RAG fails silently on real queries.
fitz-sagehas built-in intelligence: hierarchical summaries for "What are the trends?", exact keyword matching for "Find TC-1000", multi-query decomposition for complex questions, address-based code retrieval with import graph traversal, and SQL execution for tabular data. No configuration—it just works.
Tabular data that is actually searchable 📈 → Unified Storage
CSV and table data is a nightmare in most RAG systems—chunked arbitrarily, structure lost, queries fail.
fitz-sagestores tables natively in SQLite alongside every other retrieval unit—one.dbper collection, no sync issues. Auto-detects schema and runs real SQL. Ask "What's the average price by region?" and get an actual computed answer, not fragmented rows.
Fully local execution possible 🏠 → OpenAI-Compatible Endpoint
Embedded SQLite + any local OpenAI-compatible server (llama.cpp, vLLM, LM Studio, Ollama). One protocol, one URL, no API keys required to start.
[!TIP] Any questions left? Try fitz on itself:
fitz query "How does the retrieval pipeline work?" --source ./fitz_sageThe codebase speaks for itself.
What You Can Search
Traditional RAG chops every document into flat text blocks and searches them the same way. FitzKRAG parses each document by type — tree-sitter for code, heading hierarchy for docs, schema detection for CSVs — and produces typed retrieval units, each with its own storage format and search strategy.
| Retrieval Unit | Extracted From | How It Works |
|---|---|---|
| Symbols 🖌️ | Code files | Tree-sitter parses functions, classes, and methods into addressable units with qualified names, references, and import graphs. Cross-file dependencies are graph traversals, not text searches. |
| Sections 📑 | Documents (PDF, markdown, text) | Headings and paragraphs are extracted with parent/child hierarchy. Deeply nested sections include parent context; top-level headings include child summaries. |
| Tables 📅 | CSV files or tables within documents | Native SQLite storage with auto-detected schema. Real SQL execution from natural language — not chunked text. |
| Images 🖼️ | Figures and diagrams within documents | VLM-powered figure extraction and visual understanding. (Coming soon) |
| Chunks 🧩 | Any content as fallback | Traditional chunk-based retrieval when structured extraction doesn't apply. Automatic fallback — no configuration needed. |
[!NOTE] All retrieval units share the same retrieval intelligence (temporal handling, comparison queries, multi-hop reasoning, etc.) and the same enrichment pipeline (summaries, keywords, entities, hierarchical summaries).
Retrieval Intelligence
Most RAG implementations are naive vector search — they fail silently on real-world queries.
fitz-sage runs retrieval as a tiered pipeline, each tier with one job:
| Tier | Stage | What it does |
|---|---|---|
| 1 | Transform | Rewrite the query, detect intent (temporal, comparison, aggregation), build a retrieval profile |
| 2 | Generate | BM25 + KRAG typed-unit strategies — symbols, sections, tables — run in parallel |
| 3 | Fuse | Merge candidates across strategies, deduplicate, keyword-boost |
| 4 | Rerank | INT8 ONNX cross-encoder reorders by true relevance — ~30 ms on CPU |
| 5 | Read | Fetch content for the surviving addresses, on demand |
| 6 | Govern | pyrrho classifies the evidence → TRUSTWORTHY / DISPUTED / ABSTAIN |
Tiers 2–5 form one retrieval pass. Most queries take a single pass; multi-hop loops it — bridge question, retrieve again — when pyrrho judges the evidence insufficient. Reranking lives inside the pass, so the cross-encoder runs on every query.
Across those tiers, built-in intelligence handles the edge cases that break naive RAG:
| Feature | Query | Naive RAG Problem | fitz-sage Solution |
|---|---|---|---|
| epistemic-honesty | "What was our Q4 revenue?" | ❌ Hallucinated number — Info doesn't exist, but LLM won't admit it | ✅ "I don't know" |
| keyword-vocabulary | "Find TC_1000" | ❌ Wrong test case — Embeddings see TC_1000 ≈ TC_2000 (semantically similar) | ✅ Exact keyword matching |
| sparse-search | "error code E_AUTH_401" | ❌ No exact match — Embeddings miss precise error codes | ✅ SQLite FTS5 + native bm25() |
| multi-hop | "Who wrote the paper cited by the 2023 review?" | ❌ Returns the review only — Single-step search can't traverse references | ✅ Iterative retrieval |
| hierarchical-rag | "What are the design principles?" | ❌ Random fragments — Answer is spread across docs; no single chunk contains it | ✅ Hierarchical summaries |
| multi-query | [User pastes 500-char test report] "What failed and why?" | ❌ Vaguely related chunks — Long input gets averaged, matches nothing specifically | ✅ Multi-query decomposition |
| comparison-queries | "Compare React vs Vue performance" | ❌ Incomplete comparison — Only retrieves one entity, missing the other | ✅ Multi-entity retrieval |
| entity-graph | "What else mentions AuthService?" | ❌ Isolated chunks — No awareness of shared entities across docs | ✅ Entity-based linking across sources |
| temporal-queries | "What changed between Q1 and Q2?" | ❌ Random chunks — No awareness of time periods in query | ✅ Temporal query handling |
| aggregation-queries | "List all the test cases that failed" | ❌ Partial list — No mechanism for comprehensive retrieval | ✅ Aggregation query handling |
| freshness-authority | "What's the latest status on feature X?" | ❌ Old docs rank equally — No awareness of how recent a document is | ✅ Recency boosting |
| query-expansion | "How do I fetch the db config?" | ❌ No matches — User says "fetch", docs say "retrieve"; "db" vs "database" | ✅ LLM-driven synonym expansion (no embeddings) |
| query-rewriting | "Tell me more about it" (after discussing TechCorp) | ❌ Lost context — Pronouns like "it" reference nothing, retrieval fails | ✅ Conversational context resolution |
| reranking | "What's the battery warranty?" | ❌ Imprecise ranking — BM25 ≠ true relevance; best answer buried | ✅ ONNX cross-encoder reranker, ~30 ms on CPU |
[!IMPORTANT] These features are always on—no configuration needed.
fitz-sageautomatically detects when to use each capability.
Governance — Know What You Don't Know
Feature docs • pyrrho model card • fitz-gov benchmark
Most RAG systems hallucinate confidently. fitz-sage measures and enforces epistemic honesty using
pyrrho — a fine-tuned ModernBERT-base encoder served as
INT8 ONNX. One forward pass per query, ~30 ms on CPU, no external LLM call.
Query + Retrieved Contexts
│
▼
┌──────────────────────────┐
│ pyrrho (ModernBERT, │ single INT8 ONNX forward pass
│ INT8 ONNX, ~30 ms CPU) │ ~150 MB on disk
└────────────┬─────────────┘
│ softmax → (p_abstain, p_disputed, p_trustworthy)
▼
Calibrated threshold (TAU = 0.50 on P(TRUSTWORTHY))
│
▼
TRUSTWORTHY / DISPUTED / ABSTAIN → synthesizer prompt
| Decision | Meaning | Recall |
|---|---|---|
| ABSTAIN | Evidence doesn't answer the question | 92.94% |
| DISPUTED | Sources contradict each other | 94.81% |
| TRUSTWORTHY | Consistent, sufficient evidence | 79.38% |
Overall accuracy: 86.13% ± 0.86 | False-trustworthy: 5.27% ± 0.21 on fitz-gov v5.1 (3-seed mean, 584-case eval split, 62.7% hard difficulty)
[!NOTE] Governance asks "given three relevant documents that partially contradict each other, should you flag a dispute, hedge the answer, or trust the consensus?" That's a judgment call even humans disagree on. Pyrrho was trained on 2,920 labeled cases from fitz-gov v5.1 to make those calls reproducibly.
The system fails safe 🛡️
Threshold calibration is tuned on the
TRUSTWORTHYprobability: when pyrrho is uncertain, it falls back to the runner-up betweenABSTAINandDISPUTED. Over-confidence is the rarest error mode.
No LLM on the governance path ⏱️
Pyrrho replaces a 5-call constraint cascade with a single encoder forward pass — ~50× faster, zero external API dependency for governance, and +7.43 pp more accurate than the cascade it replaced.
📦 Quick Start
CLI
pip install fitz-sage fitz query "Your question here" --source ./docs
fitz-sageauto-detects your LLM provider on first run:
- Local OpenAI-compatible server running? → Uses it automatically (probes ports 8080 / 8000 / 1234 / 11434 for
/v1/models)OPENAI_API_KEYset? → Uses it automatically- Neither? → Prints actionable setup instructions (start
llama-server, setOPENAI_API_KEY, or use--endpoint)For one-off queries against any OpenAI-compatible URL, skip the config:
fitz query "..." --endpoint http://localhost:8080/v1 --model gpt-oss-20b fitz query "..." --endpoint https://api.together.xyz/v1 \ --model meta-llama-3.1-70b \ --api-key-env TOGETHER_API_KEY
Python SDK
import fitz_sage answer = fitz_sage.query("Your question here", source="./docs") print(answer.text) for source in answer.provenance: print(f" - {source.source_id}: {source.excerpt[:50]}...")The SDK provides:
- Module-level
query()matching CLI- Auto-config creation (no setup required)
- Full provenance tracking
- Same honest retrieval as the CLI
For advanced use (multiple collections), use the
fitzclass directly:from fitz_sage import fitz physics = fitz(collection="physics") answer = physics.query("Explain entanglement", source="./physics_papers")
Fully Local (llama.cpp recommended)
pip install fitz-sage # Chat server on port 8080 — fitz-sage's default chat endpoint llama-server -m gpt-oss-20b-q4_k_m.gguf --port 8080 -c 8192 fitz query "Your question here" --source ./docsOne process, one model, hot the whole time. Auto-detection picks up the server on the standard port. Reranking and governance run as local INT8 ONNX encoders on CPU — no separate embedding server, no second API key. No data leaves your machine.
Other compatible servers: vLLM, LM Studio, Ollama (in
/v1/mode), TabbyAPI. Anything that speaks the OpenAI HTTP protocol works.
📦 Real-World Usage
fitz-sage is a foundation. It handles document indexing and grounded retrieval—you build whatever sits on top: chatbots, dashboards, alerts, or automation.
Chatbot Backend 🤖
Connect fitz to Slack, Discord, Teams, or your own UI. One function call returns an answer with sources—no hallucinations, full provenance. You handle the conversation flow; fitz handles the knowledge.
Example: A SaaS company plugs fitz into their support bot. Tier-1 questions like "How do I reset my password?" get instant answers. Their support team focuses on edge cases while fitz deflects 60% of incoming tickets.
Internal Knowledge Base 📖
Point fitz at your company's wiki, policies, and runbooks. Employees ask natural language questions instead of hunting through folders or pinging colleagues on Slack.
Example: A 200-person startup points fitz at their Notion workspace and compliance docs. New hires find answers to "How do I request PTO?" on day one—no more waiting for someone in HR to respond.
Continuous Intelligence & Alerting (Watchdog) 🐶
Pair fitz with cron, Airflow, or Lambda. Point at data on a schedule, run queries automatically, trigger alerts when conditions match.
fitz-sageprovides the retrieval primitive; you wire the automation.Example: A security team points fitz at SIEM logs nightly. Every morning, a scheduled job asks "Were there failed logins from unusual locations?" If fitz finds evidence, an alert fires to the on-call channel before anyone checks email.
Web Knowledge Base 🌎
Scrape the web with Scrapy, BeautifulSoup, or Playwright. Save to disk, point fitz at it. The web becomes a queryable knowledge base.
Example: A football analytics hobbyist scrapes Premier League match reports. They point fitz at the folder and ask "How did Arsenal perform against top 6 teams?" or "What tactics did Liverpool use in away games?"—insights that would take hours to compile manually.
Codebase Search 🐍 → Code Symbol Extraction • KRAG
Code retrieval:
tree-sitter parses your codebase into symbols (functions, classes, methods) with qualified names, references, and import graphs. No chunking—each symbol is a precise, addressable unit. Cross-file dependencies are tracked, so "what calls this function?" is a graph traversal, not a text search.
Example: A team inherits a legacy Django monolith—200k lines, sparse docs. They point fitz at the codebase and ask "Where is user authentication handled?" or "What depends on the billing module?" FitzKRAG returns specific functions with their callers and dependencies. New developers onboard in days instead of weeks.
📦 Architecture → Full Architecture Guide
┌───────────────────────────────────────────────────────────────┐
│ fitz-sage │
├───────────────────────────────────────────────────────────────┤
│ User Interfaces │
│ CLI: query (--source) | collections | serve │
│ SDK: fitz_sage.query(source=...) │
│ API: /query | /chat | /collections | /health │
├───────────────────────────────────────────────────────────────┤
│ Engines │
│ ┌────────────┐ ┌────────────┐ │
│ │ FitzKRAG │ │ Custom... │ (extensible registry) │
│ └────────────┘ └────────────┘ │
├───────────────────────────────────────────────────────────────┤
│ LLM Provider (single OpenAI-compatible HTTP protocol) │
│ Chat: endpoint/<URL> | openai | azure_openai | enterprise │
├───────────────────────────────────────────────────────────────┤
│ Local CPU encoders (INT8 ONNX, no external calls) │
│ pyrrho (governance) | gte-reranker-modernbert-base │
├───────────────────────────────────────────────────────────────┤
│ Storage (SQLite + FTS5, one .db per collection) │
│ symbols | sections | tables | full-text search (bm25) │
├───────────────────────────────────────────────────────────────┤
│ Retrieval (address-based, baked-in intelligence) │
│ symbols | sections | tables | import graphs | reranking │
├───────────────────────────────────────────────────────────────┤
│ Enrichment (baked in) │
│ summaries | keywords | entities | hierarchical summaries │
├───────────────────────────────────────────────────────────────┤
│ Governance (epistemic safety) │
│ pyrrho encoder | TRUSTWORTHY / DISPUTED / ABSTAIN, ~30 ms CPU│
└───────────────────────────────────────────────────────────────┘
📦 CLI Reference → Full CLI Guide
fitz query "question" --source ./docs # Point at docs and query (start here)
fitz query "question" # Query existing collection
fitz query --chat # Multi-turn conversation mode
fitz collections # List and delete knowledge collections
fitz serve # Start REST API server
Config: ~/.fitz/config/fitz_krag.yaml — auto-created on first run, edit to change models.
📦 Python SDK Reference → Full SDK Guide
Simple usage (module-level, matches CLI):
import fitz_sage
answer = fitz_sage.query("What is the refund policy?", source="./docs")
print(answer.text)
Advanced usage (multiple collections):
from fitz_sage import fitz
# Create separate instances for different collections
physics = fitz(collection="physics")
legal = fitz(collection="legal")
# Query each collection
physics_answer = physics.query("Explain entanglement", source="./physics_papers")
legal_answer = legal.query("What are the payment terms?", source="./contracts")
Working with answers:
answer = fitz_sage.query("What is the refund policy?")
print(answer.text)
print(answer.mode) # TRUSTWORTHY, DISPUTED, or ABSTAIN
for source in answer.provenance:
print(f"Source: {source.source_id}")
print(f"Excerpt: {source.excerpt}")
📦 REST API Reference → Full API Guide
Start the server:
pip install fitz-sage[api]
fitz serve # localhost:8000
fitz serve -p 3000 # custom port
fitz serve --host 0.0.0.0 # all interfaces
Interactive docs: Visit http://localhost:8000/docs for Swagger UI.
Endpoints:
| Method | Endpoint | Description |
|---|---|---|
| POST | /query |
Query knowledge base |
| POST | /chat |
Multi-turn chat (stateless) |
| GET | /collections |
List all collections |
| GET | /collections/{name} |
Get collection stats |
| DELETE | /collections/{name} |
Delete a collection |
| GET | /health |
Health check |
Example request:
curl -X POST http://localhost:8000/query \
-H "Content-Type: application/json" \
-d '{"question": "What is the refund policy?", "collection": "default"}'
📦 FAQ / Troubleshooting
fitz command not found after install
Your Python Scripts directory isn't on PATH. Use
python -m fitz_sage.cli.cliinstead, or add the Scripts directory to your system PATH.
PDF/DOCX files are being skipped
Document parsing requires docling, which is optional to keep the base install lightweight. Install it with:
pip install fitz-sage[docs]
"Connection refused at localhost:8080" error
No OpenAI-compatible server is running. Start one — for example with llama.cpp:
llama-server -m model.gguf --port 8080 -c 8192. Or override the URL at the CLI:fitz query "..." --endpoint https://api.openai.com/v1 --api-key-env OPENAI_API_KEY.
"Model not found" error
The model name in your config doesn't match what your server has loaded. Check
/v1/modelson your server:curl http://localhost:8080/v1/models. Then updatechat_smartin~/.fitz/config/fitz_krag.yamlto match.
First query is slow
First run initializes the database and warms up the LLM. Subsequent queries are much faster. Local models load on first use, you may run llama-server in advance to mitigate cold start.
How do I change my LLM endpoint or model?
Edit
~/.fitz/config/fitz_krag.yaml:chat_smart: endpoint/gpt-oss-20b chat_base_url: http://localhost:8080/v1Or override at the CLI without editing YAML:
fitz query "..." --endpoint http://localhost:8080/v1 --model gpt-oss-20b
How do I use a cloud provider?
Either use the
openaipreset (built-in OpenAI URL):chat_smart: openai/gpt-4o # OPENAI_API_KEY in envOr any OpenAI-compatible cloud via the
endpointprovider:chat_smart: endpoint/meta-llama-3.1-70b chat_base_url: https://api.together.xyz/v1 chat_api_key_env: TOGETHER_API_KEYSee docs/features/platform/openai-compatible-endpoint.md for a migration table from the older Ollama / Cohere / Anthropic provider names.
How do I reset everything?
Delete the
.fitz/directory in your project root. Next run will re-detect and re-configure.
License
MIT
Links
Documentation:
- CLI Reference
- Python SDK
- REST API
- Configuration Guide
- Architecture
- Unified Storage (SQLite + FTS5)
- Progressive KRAG & Agentic Search
- Ingestion Pipeline
- Enrichment (Hierarchies, Entities)
- Epistemic Governance (pyrrho)
- Governance Benchmarking (fitz-gov)
- BEIR Benchmark Results
- Plugin Development
- Feature Control
- KRAG — Knowledge Routing Augmented Generation
- Code Symbol Extraction
- Tabular Data Routing
- Enterprise Gateway
- Engines
- Configuration Examples
- Custom Engines
- Troubleshooting
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
Built Distribution
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 fitz_sage-0.14.1.tar.gz.
File metadata
- Download URL: fitz_sage-0.14.1.tar.gz
- Upload date:
- Size: 291.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
02be799722e759e225cc456c09e69096e326e2d00be3a0e0b9a250f8478ca1fd
|
|
| MD5 |
1fd52b8363634602245358ccdbedf1ab
|
|
| BLAKE2b-256 |
f6e052423b917568df8aea22abe433ccf61b88717ae14534452ed4218f66e3d2
|
Provenance
The following attestation bundles were made for fitz_sage-0.14.1.tar.gz:
Publisher:
release.yml on yafitzdev/fitz-sage
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fitz_sage-0.14.1.tar.gz -
Subject digest:
02be799722e759e225cc456c09e69096e326e2d00be3a0e0b9a250f8478ca1fd - Sigstore transparency entry: 1691234124
- Sigstore integration time:
-
Permalink:
yafitzdev/fitz-sage@77ce0d28d72d8143cf57fc6eb7510d87d3494176 -
Branch / Tag:
refs/tags/v0.14.1 - Owner: https://github.com/yafitzdev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77ce0d28d72d8143cf57fc6eb7510d87d3494176 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fitz_sage-0.14.1-py3-none-any.whl.
File metadata
- Download URL: fitz_sage-0.14.1-py3-none-any.whl
- Upload date:
- Size: 360.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a0dc3fdec99c394ad076412ca90a3e19cb6fb423d2e2fe4d060ae419658a76c4
|
|
| MD5 |
27bd63d4cc60114bdb4d2bf0446dc258
|
|
| BLAKE2b-256 |
e0578f43e322203707ff712963b5f95901485366e47a9f6b2e224fae29fe87b5
|
Provenance
The following attestation bundles were made for fitz_sage-0.14.1-py3-none-any.whl:
Publisher:
release.yml on yafitzdev/fitz-sage
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fitz_sage-0.14.1-py3-none-any.whl -
Subject digest:
a0dc3fdec99c394ad076412ca90a3e19cb6fb423d2e2fe4d060ae419658a76c4 - Sigstore transparency entry: 1691234209
- Sigstore integration time:
-
Permalink:
yafitzdev/fitz-sage@77ce0d28d72d8143cf57fc6eb7510d87d3494176 -
Branch / Tag:
refs/tags/v0.14.1 - Owner: https://github.com/yafitzdev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@77ce0d28d72d8143cf57fc6eb7510d87d3494176 -
Trigger Event:
release
-
Statement type: