npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@chirag127/keyless-ovh

v0.3.0

Published

Keyless OVHcloud AI Endpoints client. OpenAI-compatible chat completions, no API key. chat(messages, opts) -> string; exports MODELS + DEFAULT_MODEL. Framework-agnostic (Node + browser via global fetch).

Readme

@chirag127/keyless-ovh

Keyless OVHcloud AI Endpoints client. OpenAI-compatible chat completions. No API key — anonymous endpoint, no auth header.

Framework-agnostic, zero deps, works in Node ≥18 + browser via global fetch.

Note: IP-rate-limited (429). On 429, chat() throws with err.retryable = true — check this flag to distinguish rate-limit from hard failures.

Install

npm i @chirag127/keyless-ovh

Usage

import { chat, MODELS, DEFAULT_MODEL } from '@chirag127/keyless-ovh';

// string prompt
const reply = await chat('Explain vector databases in one line.');

// messages array + options
const reply2 = await chat(
	[
		{ role: 'system', content: 'You are terse.' },
		{ role: 'user', content: 'Hello' },
	],
	{ model: 'gpt-oss-20b', temperature: 0.2 }
);

// handle 429
try {
  await chat('hi');
} catch (err) {
  if (err.retryable) { /* rate limited — retry later */ }
  else throw err;
}

API

chat(messages, opts?) => Promise<string>

Non-streaming. POSTs {model, messages} to {baseUrl}/chat/completionsno auth header. Returns choices[0].message.content.

On 429 the thrown Error has .retryable = true.

| opt | default | note | |---|---|---| | model | 'gpt-oss-120b' | any id from MODELS | | baseUrl | https://oai.endpoints.kepler.ai.cloud.ovh.net/v1 | OVH anonymous endpoint | | signal | — | AbortSignal | | ...rest | — | passed through (temperature, max_tokens, …) |

Models

Source: OmniRoute freeModelCatalog.data.tsprovider: "ovhcloud", freeType: "keyless", poolKey: "ovhcloud-anon".

| Model | Notes | |---|---| | gpt-oss-120b | Default — GPT-OSS 120B | | Qwen3.6-27B | Qwen 3.6 27B | | Qwen2.5-VL-72B-Instruct | Qwen 2.5 VL 72B (vision) | | Mistral-Small-3.2-24B-Instruct-2506 | Mistral Small 3.2 | | gpt-oss-20b | GPT-OSS 20B (fast) |

Notes

  • tos: "ok" — keyless anonymous endpoint, no registration needed.
  • IP rate-limited (429) — check err.retryable to detect.
  • Throws on non-2xx with the status and response body.

License

MIT