Vizpy
Guides

Authentication

How to get and manage your Vizpy API keys

Vizpy uses license keys to authenticate API requests.

Getting Your License Key

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

Setup

export VIZPY_API_KEY=XXXX-XXXX-XXXX-XXXX

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