Skip to main content
Routeway provides seamless integration with popular chat interfaces and development environments. This guide covers configuration for major chat UIs and development tools.
All integrations require a valid Routeway API key. Get yours from the dashboard.

Lobe Chat

Lobe Chat offers a sleek, modern interface with plugin support and multi-modal capabilities.
1

Access Settings

Open Lobe Chat and navigate to Settings
2

Add Custom Provider

Click OpenAI and fill in:
  • API Proxy URL: https://api.routeway.ai/v1
  • API Key: Your Routeway API key
3

Configure Models

Click Fetch models
Lobe Chat Setup

JanitorAI

Web-based character AI platform.
1

Access API Settings

Go to API Settings.
2

Select Proxy

Choose Proxy from the list.
3

Add Configuration

Click Add Configuration.
4

Configure Connection

Enter your details:
  • Proxy URL: https://api.routeway.ai/v1/chat/completions
  • API Key: Your Routeway API key
  • Model Name: Enter the model ID you want to use.
After entering your details, click Add Configuration.
JanitorAI Configuration

ChubAI

A character hub with built-in chat support.
1

Access Settings

Click the Settings icon in the chat window -> Go to OpenAI
2

Choose API Provider

Set the provider to OpenAI Access API and select Reverse Proxy
3

Enter API Configuration

Fill in your Routeway details:
  • Open AI Reverse Proxy: https://api.routeway.ai/v1/deepseek-v3-0324
  • Reverse Proxy Key: Your Routeway API key
  • Model: Select the model you want to use
Since Chub.ai doesn’t support model selection, you must include the model ID directly in the base URL: https://api.routeway.ai/v1/your_model_id For example: .../deepseek-v3-0324 or .../deepseek-v3-0324:free You can use any model listed at routeway.ai/models — just copy its exact ID.
Chub.ai Settings

Cline (VS Code Extension)

AI-powered coding assistant for Visual Studio Code.
1

Install Extension

Install Cline from the VS Code Extension Marketplace
2

Open Configuration

After installation, click the Cline icon in the VS Code sidebar and go to Settings
3

Configure API

Set up your Routeway connection:API Provider: OpenAI Compatible Base URL: https://api.routeway.ai/v1 Model ID: choose one from models list
Cline VS Code Configuration
Cline works best with Claude models for complex coding tasks.

Roo Code (VS Code Extension)

Collaborative coding environment with AI assistance.
1

Install Extension

Install Roo Code from the VS Code Extension Marketplace
2

Access Settings

After installation, click the Roo Code icon in the VS Code sidebar and go to Settings
3

Add Routeway Provider

Configure the following:
  • API Provider: OpenAI Compatible
  • API Endpoint: https://api.routeway.ai/v1
  • API Key: Your Routeway API key
  • Model: choose from dropdown
Roo Code AI Configuration

OpenAI SDKs

Use Routeway as a drop-in replacement for OpenAI APIs.
from openai import OpenAI

client = OpenAI(
    api_key="your_routeway_api_key",
    base_url="https://api.routeway.ai/v1"
)

response = client.chat.completions.create(
    model="gpt-4-turbo",
    messages=[
        {"role": "user", "content": "Hello, Routeway!"}
    ]
)

Common Configuration Issues

Try these steps:
  1. Re-enter your API key
  2. Refresh the page
  3. Restart your browser
  4. If it still doesn’t work, try switching to a different browser
Verify the model name matches exactly. Use the models endpoint to see available models.
Routeway implements intelligent rate limiting. If you use free model, consider using paid model.
You can use any model listed at our models library, but keep in mind that there are two types of models: free and paid (PAYG).
  • Free models are available to everyone, but they have their own rate limits. If you hit the limit, you’ll need to wait before making more requests. You can learn more about rate limits here.
  • Paid models require a positive balance on your account. If your balance is $0, you won’t be able to use paid models until you add funds. For more information about how our billing system works, see this page.
Make sure to check the model type and your account balance before trying to use a model.
I