AI Skill Hub 推荐使用:欧盟AI工具 是一款优质的AI工具。AI 综合评分 7.5 分,在同类工具中表现稳健。如果你正在寻找可靠的AI工具解决方案,这是一个值得深入了解的选择。
欧盟AI工具 是一款基于 Python 开发的开源工具,专注于 ai-sovereignty、data-sovereignty、eu-ai-act 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
欧盟AI工具 是一款基于 Python 开发的开源工具,专注于 ai-sovereignty、data-sovereignty、eu-ai-act 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
# 方式一:pip 安装(推荐)
pip install eullm
# 方式二:虚拟环境安装(推荐生产环境)
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install eullm
# 方式三:从源码安装(获取最新功能)
git clone https://github.com/eullm/eullm
cd eullm
pip install -e .
# 验证安装
python -c "import eullm; print('安装成功')"
# 命令行使用
eullm --help
# 基本用法
eullm input_file -o output_file
# Python 代码中调用
import eullm
# 示例
result = eullm.process("input")
print(result)
# eullm 配置文件示例(config.yml) app: name: "eullm" debug: false log_level: "INFO" # 运行时指定配置文件 eullm --config config.yml # 或通过环境变量配置 export EULLM_API_KEY="your-key" export EULLM_OUTPUT_DIR="./output"
<p align="center"> <img src="eullm-logo-github.png" alt="EULLM" width="560" /> </p>
<p align="center"><strong>The European Sovereign LLM Platform</strong></p> <p align="center">Verticalize, compress and run sovereign AI models on European infrastructure.<br>Open source. Designed for EU AI Act compliance. Runs on your hardware.</p>
<p align="center"> <a href="https://eullm.eu">Website</a> · <a href="docs/getting-started.md">Getting Started</a> · <a href="#quickstart">Quickstart</a> · <a href="#the-solution">Components</a> · <a href="#turboquant-kv-cache-compression-experimental">TurboQuant</a> · <a href="#benchmarks--continuous-batching-in-action">Benchmarks</a> · <a href="#planned-verticalized-models-q4-2026-roadmap">Planned Models</a> · <a href="#roadmap">Roadmap</a> · <a href="#contributing">Contributing</a> </p>
<p align="center"> <img src="https://img.shields.io/badge/license-Apache%202.0-blue" alt="License" /> <img src="https://img.shields.io/badge/EU%20AI%20Act-Designed%20for%20compliance-gold" alt="EU AI Act" /> <img src="https://img.shields.io/badge/status-Early%20Development-orange" alt="Status" /> <a href="https://github.com/eullm/eullm/actions/workflows/ci.yml"><img src="https://github.com/eullm/eullm/actions/workflows/ci.yml/badge.svg" alt="CI" /></a> </p>
<p align="center"> 🇪🇺 European-built — focused on local-first and sovereign AI · 🇮🇹 Developed in Italy </p>
---
sudo apt install build-essential cmake libclang-dev
Prerequisites: Rust 1.75+, C/C++ compiler, CMake, libclang.
```bash
```bash git clone https://github.com/eullm/eullm.git cd eullm
cargo build --release
cargo build --release --features cuda # NVIDIA cargo build --release --features rocm # AMD cargo build --release --features vulkan # Cross-platform GPU cargo build --release --features metal # macOS
cd ../hub cargo build ```
Don't want to install Rust, Python, or CUDA on your system? Use Docker:
```bash
EuLLM Engine is in active development (Q2 2026). The commands below show the current and target CLI experience. Some commands work today (eullm run,eullm serve); others (Forge verticalization, Hub registry pull) are on the Q3-Q4 2026 roadmap. Star this repo to track progress.
curl http://localhost:11434/v1/chat/completions \ -H "Content-Type: application/json" \ -d '{"model": "qwen3", "messages": [{"role": "user", "content": "Ciao!"}]}'
With GPU acceleration:
bash cargo build --release --features cuda # NVIDIA (CUDA) cargo build --release --features rocm # AMD (ROCm) cargo build --release --features vulkan # Cross-platform (NVIDIA + AMD + Intel) cargo build --release --features metal # macOS Apple Silicon
Or pull from the EU catalog (coming soon):
bash eullm pull legal-it-7b # Downloads from EU servers (Hetzner DE, OVH FR) eullm run legal-it-7b # Runs locally — on your laptop, 8GB RAM ```
eullm run ./your-model.gguf --port 11434 ```
EULLM exposes both the Ollama-compatible /api/* and OpenAI-compatible /v1/* endpoints. Everything that works with Ollama works with EULLM:
http://localhost:11434 and it just worksChatOpenAI(base_url="http://localhost:11434/v1")http://localhost:11434高质量开源AI工具,支持欧盟合规
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ Apache 2.0 — 宽松开源协议,可商用,需保留版权声明和 NOTICE 文件,含专利授权条款。
总体来看,欧盟AI工具 是一款质量良好的AI工具,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | eullm |
| 原始描述 | 开源AI工具:Open-source platform for creating, distributing and running sovereign EU-complia。⭐22 · Python |
| Topics | ai-sovereigntydata-sovereigntyeu-ai-act |
| GitHub | https://github.com/eullm/eullm |
| License | Apache-2.0 |
| 语言 | Python |
收录时间:2026-05-26 · 更新时间:2026-05-30 · License:Apache-2.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。