AI Skill Hub 强烈推荐:RADIANT_LLM 是一款优质的AI工具。AI 综合评分 8.0 分,在同类工具中表现稳健。如果你正在寻找可靠的AI工具解决方案,这是一个值得深入了解的选择。
RADIANT_LLM 是一款基于 Python 开发的开源工具,专注于 AI、视觉检索、本地部署 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
RADIANT_LLM 是一款基于 Python 开发的开源工具,专注于 AI、视觉检索、本地部署 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
# 方式一:pip 安装(推荐)
pip install radiant_llm
# 方式二:虚拟环境安装(推荐生产环境)
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install radiant_llm
# 方式三:从源码安装(获取最新功能)
git clone https://github.com/SmartLabNuclear/RADIANT_LLM
cd RADIANT_LLM
pip install -e .
# 验证安装
python -c "import radiant_llm; print('安装成功')"
# 命令行使用
radiant_llm --help
# 基本用法
radiant_llm input_file -o output_file
# Python 代码中调用
import radiant_llm
# 示例
result = radiant_llm.process("input")
print(result)
# radiant_llm 配置文件示例(config.yml) app: name: "radiant_llm" debug: false log_level: "INFO" # 运行时指定配置文件 radiant_llm --config config.yml # 或通过环境变量配置 export RADIANT_LLM_API_KEY="your-key" export RADIANT_LLM_OUTPUT_DIR="./output"
<p align="center"> <a href="./RADIANT_LLM_GUI_2_0.png"> <img src="./RADIANT_LLM_GUI_2_0.png" alt="RADIANT-LLM interface" width="720"> </a> </p>
RADIANT-LLM (Retrieval-augmented Domain-intelligent assistant for Advanced Nuclear Technologies) is a local-first, model-agnostic Visual-RAG (visual retrieval-augmented generation) system for secure, document-grounded assistance in Nuclear Science and Engineering (NSE). It combines multi-modal ingestion (text plus visual context) with a structured knowledge base to enable page- and figure-level retrieval from complex technical documents with auditable, citation-backed responses, while respecting privacy/security constraints by keeping data processing local and emphasizing auditable, citation-traceable outputs.
This repository also includes visual-parser, a standalone PDF ingestion tool for generating JSONL knowledge bases from curated documents. It is available on PyPI at https://pypi.org/project/visual-parser/ and can be used independently of the RADIANT-LLM chat UI.
You will typically need at least one LLM provider API key.
Key sources:
- OpenAI API key here, or Gemini API key (optional, including free access for gemini-2.5) here - LangChain (LangSmith) API key (optional, for tracing/logs) here - Google Custom Search API key here - Google Custom Search Engine ID here - Hugging Face API key (HF_API_KEY, required for document parsing in RAG) here ---
.env file with at least one LLM provider key (OPENAI_API_KEY, GEMINI_API_KEY, etc.)docker run --gpus all)Prebuilt images are published on Docker Hub: zev94/radiant-llm.
| Tag | Application |
|---|---|
2.0, latest | **RADIANT-LLM** - chat UI for Visual-RAG over your knowledge base |
visual-parser-1.0.2, visual-parser-latest | **visual-parser** - PDF to JSONL knowledge-base ingestion |
If you have a release .tar instead of Hub access:
docker load -i .\radiant-llm_0.1.0.tar
docker images # use the tag printed by Docker
Older images used port 8050, mount path /host_data, and log folder DecodedAI_logs. Current Hub images use 8060:8080, /host, and RADIANT_LLM_Logs to /radiant-llm/RADIANT_LLM_Logs.
---
Build a multi-modal JSONL knowledge base before or alongside RADIANT-LLM QA. See visual-parser/README.md for CLI flags.
docker pull zev94/radiant-llm:visual-parser-latest
Windows PowerShell:
docker run --rm --env-file .env `
-v "C:\path\to\pdfs:/data" `
zev94/radiant-llm:visual-parser-latest `
--input-dir /data --output-dir /data
WSL / Linux:
docker run --rm --env-file .env \
-v "/path/to/pdfs:/data" \
zev94/radiant-llm:visual-parser-latest \
--input-dir /data --output-dir /data
Help:
docker run --rm zev94/radiant-llm:visual-parser-latest --help
---
RADIANT-LLM supports self-hosted inference via vLLM on the Texas A&M University (TAMU) Grace High Performance Research Computing (HPRC) cluster (or any compatible Slurm + A100 cluster). When configured, Grace model variants appear alongside cloud models (GPT, Gemini) in the model selector — no cloud API key is needed for inference.
Available variants:
| Variant | GPUs | Quantization | Context window |
|---|---|---|---|
| Grace Gemma 4 26B-A4B | 1× A100 | FP8 | 16,384 tokens |
| Grace Gemma 4 31B | 1× A100 | FP8 | 16,384 tokens |
| Grace Gemma 4 31B (bf16) | 2× A100 | None (full precision) | 4,096 tokens |
How it works: A Slurm job runs vLLM on a Grace GPU compute node. An SSH tunnel on your local machine (or Docker host) forwards requests from RADIANT-LLM to that node. No model weights or GPU compute leave the cluster.
Setup guide: developer_scripts/README.md — covers Grace account prerequisites, one-time model download, sbatch job templates, tunnel management scripts, and troubleshooting.
Docker users: The SSH tunnel binds to your host machine. RADIANT-LLM running in Docker reaches it automatically viahost.docker.internal— the provideddocker-compose.ymland.envin this repo already have this configured.
---
docker loginzev94/radiant-llm:1.0 (not a local-only name unless you built or loaded it yourself)./host, then use /host/... in the UI)./radiant-llm/radiant_llm_skills, or set Skills directory in Settings to your custom mount path.docker run --gpus all nvidia/cuda:12.2.0-base-ubuntu22.04 nvidia-smi---
高质量的开源AI工具,支持本地部署和模型无关的视觉检索
该工具未明确声明开源协议,商业使用前请联系原作者确认授权范围,避免侵权风险。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
总体来看,RADIANT_LLM 是一款质量优秀的AI工具,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | RADIANT_LLM |
| 原始描述 | 开源AI工具:RADIANT-LLM is a local-first, model-agnostic Visual-RAG (visual retrieval-augmen。⭐4 · Python |
| Topics | AI视觉检索本地部署 |
| GitHub | https://github.com/SmartLabNuclear/RADIANT_LLM |
| 语言 | Python |
收录时间:2026-06-22 · 更新时间:2026-06-22 · License:未公布 · AI Skill Hub 不对第三方内容的准确性作法律背书。