Bleu.js
Sign InSign Up
Security Status: Protected
All systems secure and up to date - Status as of March 29, 2026
View May 2025 security releases
LearnDownloadDocsAPIBleu OSEnterpriseSecurityAGI Research
B

Loading BleuJS

Please wait while we prepare your experience...

Trademark Policy

  • Overview
  • Guidelines

Privacy Policy

  • Terms
  • Cookies

Code of Conduct

  • Community
  • Reporting

Security Policy

  • Reporting
  • Advisories

Open source

  • Bleu.js (SDK, CLI, docs)
  • Bleujs.-backend (API server)
  • Contribute
© 2026 Helloblue Foundation
Powered by IBM Quantum Cloud

Bleu.js

Cloud HTTP API, terminal CLI, and Python SDK for chat, generate, and embed. Add ML or quantum only if you need them.

Examples here match the bleu-js package on PyPI, currently v1.5.0.

What is Bleu.js?

Bleu.js is a client and gateway story: you install bleu-js, call chat, generate, and embed from the CLI or Python, and optionally wire your own predictor for binary-style predictions with confidence when your backend is available.

Why use it?

  • You get a single package for CLI, SDK, and API-shaped workflows.
  • Defaults stay small; extras like ML or quantum are opt-in (pip install "bleu-js[quantum]").
  • Full detail lives in the docs—this page stays a short overview.

Install, configure, call

pip install bleu-js
bleu version
bleu config set api-key <your-api-key>
bleu chat "Hello, world!"

from bleujs.api_client import BleuAPIClient
client = BleuAPIClient(api_key="your-api-key")
response = client.chat([{"role": "user", "content": "Hello!"}])
print(response.content)

When should I use it?

It fits when you want:

  • A quick path from pip install to a working API call.
  • Embeddings and chat/generate flows without bolting on a separate toolchain first.
  • Optional self-hosted prediction with confidence when you deploy the matching backend.

Where to go next

Read the documentation, the API overview, and the GitHub repository. Tutorials live under Learn.


Bleu.js is open source. Issues and PRs welcome on GitHub.