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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@openrouter/schemas

v0.0.2

Published

Schema definition for OpenRouter

Downloads

557

Readme

OpenRouter Schemas

This is the JSON schema used to configure OpenRouter's dynamic model routing. Features:

  • 🔀 Configure fallback models to handle moderation and downtime gracefully
  • 🦹‍♀️ Create and share characters with custom prompts and parameters

WIP features:

  • 🧠 Add memory to characters using embeddings (WIP)
  • 👨‍👩‍👧‍👦 Configure a mixture-of-experts with open source models (WIP)

How to configure a route

OpenRouter will provide two ways to set a route:

Fallback route

In the request body to the OpenRouter API, you can set route to a string value. Only one option will exist at the beginning: "fallback":

{
  "model": "openai/gpt-4",
  "route": "fallback"
}

This route allows you to use an open source model (whatever OpenRouter thinks might be best for your primary model) as a fallback if:

  1. Your primary model requires the use of a moderation model to avoid sending certain types of prompts
  2. Our moderation model(s) flagged your prompt or system prompt for a specific reason.

You can also use list of models to indicate which models you'd like to try, in order (up to 3):

{
  "models": ["openai/gpt-4", "meta-llama/llama-2-70b-chat"],
  "route": "fallback"
}

If you don't specify models but you do specify route: "fallback", then OpenRouter will try to pick the most appropriate fallback model for you.

Custom JSON

You will also be able set route to a JSON object that conforms to this schema. See How to use this below.

How to use this

The current RFC draft schema is v1. To start your router, create a JSON file with:

{
  "$schema": "https://openrouter.ai/api/v1/router/schema.json"
}

You can then extend the schema and submit this JSON as your route. Here's an example.

Note: You should submit a single model config inside the models array unless you also want a mixture_of_experts. If the latter is unspecified and models.length > 1, you'll receive an error.

When will this be available?

Custom routers will go live after we receive feedback and suggestions. Please feel free to create an issue or open a PR directly on this repository to start the discussion!

You can also message us in Discord.

Model identifiers

Models must be identified by one of the /-separated strings in the OpenRouter docs, or a model identifier in Hugging Face format.