Vizpy
Guides

Authentication

How to get and manage your Vizpy API keys

Authentication

Vizpy uses license keys to authenticate API requests.

Getting Your License Key

  1. Sign up at app.vizops.ai
  2. Choose a plan (Free tier available)
  3. Copy your license key from the dashboard

Setup

export LICENSE_KEY=XXXX-XXXX-XXXX-XXXX
export KEYGEN_ACCOUNT_ID=your_account_id

Never commit your license key to version control.

LLM Provider Setup

import dspy
dspy.configure(lm=dspy.LM("openai/gpt-4o-mini"))

On this page