Dify with gpt88.cc

A step-by-step guide for using gpt88.cc in Dify providers, chat apps, workflows, and knowledge base pipelines.

Goal of this guide

  • Add gpt88.cc as a Dify model provider.
  • Use the model inside a standard chat application.
  • Validate the LLM node in Chatflow or Workflow.
  • Troubleshoot chat-model and knowledge-model issues separately.

Preparation

checklisttext
1. Admin access to Dify
2. A gpt88.cc API key
3. The chat model ID you plan to use
4. If you will build a knowledge base, also confirm the embedding model
5. One minimal app or workflow for testing

Step 1: Add the model provider

Open the Dify model provider settings and add a new OpenAI-compatible provider.

providertext
Provider: OpenAI Compatible
API Key: sk-your-gpt88-api-key
API Base URL: https://api.gpt88.cc
Model Type: LLM
Model Name: gpt-5-2-chat-latest or claude-sonnet-4-6

Step 2: Attach the model to an app

After the provider is saved successfully, assign the model inside a real application.

app-setuptext
1. Open the Dify console
2. Go to Settings / Model Provider
3. Add a new OpenAI Compatible provider
4. Fill in the gpt88.cc API key
5. Set Base URL to https://api.gpt88.cc
6. Save, then open an application
7. Select the model you just added
8. Run one minimal chat test

Step 3: Attach the model to a workflow

Dify workflow troubleshooting should start with a single LLM node. Make that node succeed first, then connect knowledge, HTTP tools, or variable processing.

workflowtext
1. Create a new Chatflow or Workflow
2. Choose the gpt88.cc model in the LLM node
3. Send one fixed test prompt
4. Run the node and inspect output and error details
5. Only then add knowledge, tools, or more complex prompts

Knowledge base configuration

knowledgetext
Knowledge workflows should be configured separately:

Chat Model: final response generation
Embedding Model: document vectorization
Rerank Model: result reranking when needed

Do not configure only the chat model and then immediately import a large knowledge base.
Start with one or two short documents and validate chunking, retrieval, and answer quality first.

Verification

  1. Save the provider and test the connection.
  2. Send one minimal question in a basic chat app.
  3. Run the LLM node by itself inside a workflow.
  4. If you use knowledge, import only one short document for the first validation pass.

Troubleshooting

troubleshootingtext
1. Provider save fails
   - Check that the Base URL is https://api.gpt88.cc
   - Check that the API key is complete

2. Model does not appear in the app
   - Confirm the model was added to the Dify provider
   - Enter the real model ID manually

3. Workflow node fails
   - Test the LLM node on its own first
   - Then add knowledge or tool nodes

4. Knowledge answers are inaccurate
   - Adjust chunk size
   - Confirm the embedding model is configured
   - Reduce the initial document import scope

5. Cost is unclear
   - Check RMB balance and real deductions in the gpt88.cc console

Next steps