Flowise

Flowise is a visual development platform that enables you to design and build AI agents through an intuitive graphical interface.

1.1 API Configuration

Method 1: GUI Setup

  1. Open Flowise (default: http://localhost:3000)
  2. Create a new Chatflow
  3. Drag the ChatOpenAI node onto the canvas
  4. Configure the node:
    • API Key: sk-your-rygen-api-key
    • Base Path: https://api.rygen.io/v1
    • Model Name: your-model-name
  5. Connect other nodes as needed and save

Method 2: Environment Variables

# Add to your .env file
OPENAI_API_KEY=sk-your-rygen-api-key
OPENAI_API_BASE=https://api.rygen.io/v1

1.2 References