An open API service indexing awesome lists of open source software.

https://github.com/llm-workflow-engine/lwe-plugin-provider-openrouter

LLM Workflow Engine (LWE) OpenRouter Provider plugin
https://github.com/llm-workflow-engine/lwe-plugin-provider-openrouter

Last synced: about 1 year ago
JSON representation

LLM Workflow Engine (LWE) OpenRouter Provider plugin

Awesome Lists containing this project

README

          

# LLM Workflow Engine (LWE) OpenRouter Provider plugin

OpenRouter Provider plugin for [LLM Workflow Engine](https://github.com/llm-workflow-engine/llm-workflow-engine)

Access to [OpenRouter](https://openrouter.ai/models) models.
## Installation

### From packages

Install the latest version of this software directly from github with pip:

```bash
pip install git+https://github.com/llm-workflow-engine/lwe-plugin-provider-openrouter
```

### From source (recommended for development)

Install the latest version of this software directly from git:

```bash
git clone https://github.com/llm-workflow-engine/lwe-plugin-provider-openrouter.git
```

Install the development package:

```bash
cd lwe-plugin-provider-openrouter
pip install -e .
```

## Configuration

Add the following to `config.yaml` in your profile:

```yaml
plugins:
enabled:
- provider_openrouter
# Any other plugins you want enabled...
# THIS IS OPTIONAL -- By default the plugin loads all model data via an API
# call on startup. This does make startup time longer, and the CLI completion
# for selecting models is very long!
# You can instead provide a 'models' object here with the relevant data, and
# It will be used instead of an API call.
provider_openrouter:
models:
# 'id' parameter of the model as it appears in the API.
# This is also listed on the model's summary page on the OpenRouter
# website.
"mistralai/mixtral-8x22b-instruct":
# The only parameter, and it's required.
max_tokens: 65536
```

## Usage

From a running LWE shell:

```
/provider openrouter
/model model_name openai/gpt-3.5-turbo
```