HyprLab Docs
  • GETTING STARTED
    • Introduction
    • Authentication
    • Making requests
  • BROWSE MODELS
    • Model List
      • OpenAI
        • AUDIO
        • CHAT
        • EMBEDDINGS
        • IMAGE
        • TEXT
        • MODERATION
      • Anthropic
      • Google
        • AUDIO
        • CHAT
          • OpenAI-Format
          • Google-Format
        • IMAGE
        • VIDEO
      • DeepSeek
      • x.AI
        • CHAT
        • IMAGE
      • Cohere
      • Meta AI
      • Qwen
      • Microsoft
      • Mistral AI
      • Perplexity AI
      • Cognitive Computations
      • Nvidia
      • Nous Research
      • MiniMax
      • Amazon
      • AI21-Labs
      • Reka AI
      • Black Forest Labs
      • Stability AI
        • Stable Diffusion 3.5
        • Stable Diffusion 3 - Ultra
        • Stable Diffusion 3 - Core
        • Stable Diffusion 3
        • Stable Diffusion XL 1.0
      • Recraft AI
      • Ideogram AI
      • Kling AI
      • Luma AI
      • Free-GPT
  • Playground
    • HyprLab Studio
    • HyprLab Chat
    • HyprLab - SillyTavern
  • INTEGRATION
    • Basic Setup
      • SillyTavern
      • Janitor AI
      • Risu AI
      • Agnai Chat
      • TypingMind
      • ChatWaifu - Steam
Powered by GitBook
On this page
  • Set the Endpoints
  • Set the API Keys
  • Custom Models
  1. INTEGRATION
  2. Basic Setup

TypingMind

How to set up HyprLab API in TypingMind.

PreviousAgnai ChatNextChatWaifu - Steam

Last updated 9 months ago

Set the Endpoints

  • HyprLab - OpenAI:

https://api.hyprlab.io/v1/chat/completions
https://api.hyprlab.io/v2/chat/completions
  • HyprLab - Anthropic:

https://api.hyprlab.io/v1/messages
https://api.hyprlab.io/v2/messages

Set the API Keys


Custom Models

{
  "title": "CUSTOM_NAME_OF_THE_MODEL_HERE",
  "description": "DESCRIPTION_HERE",
  "iconUrl": "ICON_HERE",
  "endpoint": "https://api.hyprlab.io/v1/chat/completions",
  "id": "",
  "modelID": "MODEL_ID_NAME_HERE",
  "apiType": "openai",
  "contextLength": "CONTEXT_LENGTH_HERE",
  "headerRows": [
    {
      "id": "",
      "key": "Authorization",
      "value": "Bearer HYPRLAB_API_KEY_HERE"
    }
  ],
  "bodyRows": [],
  "skipAPIKey": true,
  "pluginSupported": false,
  "visionSupported": false
}

NOTE: Just adjust the settings if the model supports Vision or Plugins.

// SAMPLE JSON FOR HYPRLAB-V2:
{
  "title": "CLAUDE-3.5-SONNET - HYPRLAB-V2",
  "description": "",
  "iconUrl": "",
  "endpoint": "https://api.hyprlab.io/v2/chat/completions",
  "id": "",
  "modelID": "claude-3-5-sonnet-20240620",
  "apiType": "openai",
  "contextLength": 200000,
  "headerRows": [
    {
      "id": "",
      "key": "Authorization",
      "value": "Bearer KEY_HERE"
    }
  ],
  "bodyRows": [],
  "skipAPIKey": true,
  "pluginSupported": false,
  "visionSupported": false
}