惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

U
Unit 42
L
LangChain Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Y
Y Combinator Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
有赞技术团队
有赞技术团队
B
Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
V2EX
Apple Machine Learning Research
Apple Machine Learning Research
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
阮一峰的网络日志
阮一峰的网络日志
The Cloudflare Blog
Martin Fowler
Martin Fowler
H
Hackread – Cybersecurity News, Data Breaches, AI and More
M
MIT News - Artificial intelligence
Recent Announcements
Recent Announcements
D
DataBreaches.Net
The GitHub Blog
The GitHub Blog
博客园 - Franky
小众软件
小众软件

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
GitHub - pypl0/Ombre
38caveman · 2026-04-23 · via Hacker News - Newest: "AI"

The infrastructure layer that makes AI trustworthy.

Every AI system has three unsolved problems: it costs too much, it gets things wrong, and nobody can prove it behaved correctly. Ombre solves all three — running entirely inside your own infrastructure.

License: BUSL-1.1 Python 3.9+ Zero Dependencies

Your data never leaves your environment. You bring your own API keys.


What Ombre Does

Ombre sits between your application and any AI model. Every request flows through 8 agents automatically:

Agent What It Does
Security Blocks prompt injection, redacts PII, stops harmful content
Memory Persistent encrypted context across sessions
Token Semantic cache + compression — 40–60% cost reduction
Compute Routes to the best model and provider automatically
Truth Pre-loads verified facts to reduce hallucinations
Latency P99 monitoring, SLA enforcement, circuit breaking
Reliability Validates output, scores confidence, catches hallucinations
Audit Immutable tamper-proof log of every AI decision

Install

# Base install
pip install git+https://github.com/ombre-ai/ombre-core.git

# With your provider
pip install "git+https://github.com/ombre-ai/ombre-core.git#egg=ombre-ai[openai]"
pip install "git+https://github.com/ombre-ai/ombre-core.git#egg=ombre-ai[anthropic]"
pip install "git+https://github.com/ombre-ai/ombre-core.git#egg=ombre-ai[groq]"
pip install "git+https://github.com/ombre-ai/ombre-core.git#egg=ombre-ai[all-providers]"

Air-gapped / offline environments:

git clone https://github.com/ombre-ai/ombre-core.git
pip install ./ombre-core

Quick Start

from ombre import Ombre

ai = Ombre(
    openai_key="sk-...",        # Your key — Ombre never sees it
    # anthropic_key="sk-ant-...",
    # groq_key="gsk-...",
)

response = ai.run("Summarize our Q3 financials and recommend next steps")

print(response.text)                  # The answer
print(response.confidence)            # Verified confidence score (0.0–1.0)
print(response.cost_saved)            # Dollars saved vs raw API call
print(response.audit_id)              # Immutable audit reference
print(response.hallucinations_caught) # Bad answers stopped before reaching you
print(response.threats_blocked)       # Security events intercepted

Multi-turn Chat

response = ai.chat([
    {"role": "user", "content": "My name is Alex. I work in finance."},
    {"role": "assistant", "content": "Got it Alex, how can I help?"},
    {"role": "user", "content": "What should I focus on this quarter?"},
])
# Memory Agent remembers Alex works in finance — no need to repeat it

Batch Processing

responses = ai.batch([
    "Summarize contract 1",
    "Summarize contract 2",
    "Summarize contract 3",
], concurrency=5)

Add Your Own Ground Truth

# Verified facts — model uses these instead of guessing
ai.truth.add_fact(
    key="company_ceo",
    fact="The CEO of Acme Corp is Jane Smith, appointed January 2022",
    confidence=1.0,
    source="company_records",
)

Audit Export

# Export for compliance
ai.export_audit("audit.json", format="json")
ai.export_audit("audit.csv", format="csv")

# EU AI Act compliance report
ai.audit.generate_compliance_report(
    regulation="eu_ai_act",
    output_path="compliance_report.json",
)

Self-Hosted REST API

Run a local server on your own infrastructure. Zero data leaves your environment.

# Start the server
python -m ombre serve --port 8080

# Or from CLI
ombre serve --port 8080

Call from any language:

# cURL
curl -X POST http://localhost:8080/v1/run \
  -H "Content-Type: application/json" \
  -d '{"prompt": "Your prompt here"}'
# Python
import requests
r = requests.post("http://localhost:8080/v1/run",
    json={"prompt": "Your prompt here"})
print(r.json()["text"])
// JavaScript / Node
const res = await fetch("http://localhost:8080/v1/run", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({ prompt: "Your prompt here" })
})
const data = await res.json()
console.log(data.text)
// Go
resp, _ := http.Post("http://localhost:8080/v1/run",
    "application/json",
    strings.NewReader(`{"prompt":"Your prompt here"}`))

Environment Variables

export OPENAI_API_KEY=sk-...
export ANTHROPIC_API_KEY=sk-ant-...
export GROQ_API_KEY=gsk-...
export OMBRE_API_KEY=omb_ent_...   # Enterprise license key (optional)

Then initialize with no arguments:

ai = Ombre()  # Reads keys from environment automatically

Architecture

Your Application
      │
      ▼
┌─────────────────────────────────────┐
│           OMBRE LAYER               │
│  (runs inside your infrastructure)  │
│                                     │
│  1. Security Agent                  │
│  2. Memory Agent                    │
│  3. Token Agent  ◄── cache hit?     │
│  4. Compute Agent                   │
│  5. Truth Agent                     │
│  ── model inference ──              │
│  6. Latency Agent                   │
│  7. Reliability Agent               │
│  8. Audit Agent                     │
└─────────────────────────────────────┘
      │
      ▼
Your AI Model
(OpenAI / Anthropic / Groq / Mistral)

No Ombre server involved. Everything runs locally on your machine.


Pricing

Tier Price Who
Free $0 forever Developers, small startups
Growth $2,500/month Series A+ startups
Enterprise Custom Large companies
Government Custom Agencies, defense contractors

Free tier includes all 8 agents with no time limit. No credit card required.


Enterprise Licensing & Payment

Enterprise licenses are invoiced annually. Payment accepted in USDT (TRC20) only.

⚠️ CRITICAL: Only send USDT on the TRC20 network. Sending any other token or using ERC20 / BEP20 / any other network will result in permanent loss of funds. Ombre cannot recover misdirected payments.

Network: TRON (TRC20)
Token: USDT only
Wallet address: TT3aCEYKF1d9PpyLDdzKGULi6Maa3DqPVU
Memo: Not required

Step-by-step payment

  1. Open your exchange or crypto wallet
  2. Select Send / Withdraw
  3. Select token: USDT
  4. Select network: TRC20 ← this is critical
  5. Paste wallet address exactly: TT3aCEYKF1d9PpyLDdzKGULi6Maa3DqPVU
  6. No memo required — leave blank
  7. Send the exact invoice amount
  8. Email the transaction hash to ombreaiq@gmail.com
    • Subject line: Payment - [Your Company Name]
    • Include: company name, license tier, transaction hash

License key delivered within 24 hours of confirmed payment on-chain.


Contact


License

Business Source License 1.1 — Free for internal use. Converts to Apache 2.0 four years from each release date. Commercial hosting restrictions apply. See LICENSE for details.