mirror of
https://github.com/labring/FastGPT.git
synced 2026-05-05 01:02:59 +08:00
7b56c3dd9b
Add documentation for integrating MiniMax models with FastGPT, following the standard provider documentation format. Co-authored-by: octo-patch <octo-patch@users.noreply.github.com>
31 lines
1.2 KiB
Plaintext
31 lines
1.2 KiB
Plaintext
---
|
|
title: MiniMax Integration Example
|
|
description: MiniMax integration example for FastGPT
|
|
---
|
|
|
|
[MiniMax](https://www.minimaxi.com) is an AI technology company that provides high-performance large language model API services. MiniMax's API is compatible with the OpenAI format, making it easy to integrate with FastGPT.
|
|
|
|
Before reading this guide, make sure you've read the [Model Configuration Guide](/docs/self-host/config/model/intro).
|
|
|
|
## 1. Get an API Key
|
|
|
|
1. Visit [MiniMax Platform](https://platform.minimaxi.com), register and log in.
|
|
2. Go to the console and create an API Key.
|
|
|
|
## 2. Add Models
|
|
|
|
The system includes built-in MiniMax models. Simply search for `MiniMax` on the `Model Configuration` page and enable the models you need. If you need additional models, you can [add them manually](/docs/self-host/config/model/intro/#add-a-custom-model).
|
|
|
|
## 3. Add a Model Channel
|
|
|
|
On the Model Channels page, add a new MiniMax channel:
|
|
|
|
- Protocol type: Select **MiniMax**
|
|
- Proxy URL: `https://api.minimax.io/v1`
|
|
- Enter your MiniMax API Key
|
|
- Select the models you just enabled
|
|
|
|
## 4. Test Models
|
|
|
|
After configuration, click the test button in the channel list to verify the models are working properly.
|