Skip to the content.

AI Provider Setup Guide

This guide walks you through setting up each AI provider in VentureLab.

Ollama runs AI models locally on your computer - completely free and private.

Installation

Windows

  1. Download Ollama from ollama.ai
  2. Run the installer
  3. Open Command Prompt and verify: ollama --version

macOS

# Using Homebrew
brew install ollama

# Or download from ollama.ai

Linux

curl -fsSL https://ollama.ai/install.sh | sh

Setting Up Models

  1. Start Ollama Service
    ollama serve
    
  2. Download a Model
    # Recommended starter model
    ollama pull llama3.1
       
    # Other popular models
    ollama pull mistral
    ollama pull codellama
    ollama pull gemma
    
  3. Configure in VentureLab
    • Open AI Providers settings
    • Select Ollama as preferred provider
    • Server URL: http://localhost:11434 (default)
    • Click “Test Connection”
    • Select your downloaded model

Ollama Tips

đź§  OpenAI Setup

Getting Your API Key

  1. Create OpenAI Account
  2. Generate API Key
    • Go to API Keys section
    • Click “Create new secret key”
    • Name it (e.g., “VentureLab”)
    • Copy the key immediately (shown only once!)
  3. Set Up Billing
    • Go to Billing → Payment methods
    • Add a credit card
    • Set usage limits (recommended)

Configure in VentureLab

  1. Open AI Providers settings
  2. Select OpenAI
  3. Paste your API key
  4. Choose model:
    • gpt-4: Most capable, more expensive
    • gpt-3.5-turbo: Good balance of cost/performance
  5. Click “Test & Save”

OpenAI Best Practices

🎭 Anthropic (Claude) Setup

Getting Your API Key

  1. Create Anthropic Account
  2. Generate API Key
    • Go to API Keys
    • Create new key
    • Save it securely
  3. Understand Pricing
    • Check current rates
    • No free tier
    • Billed monthly

Configure in VentureLab

  1. Select Anthropic in AI Providers
  2. Enter your API key (starts with sk-ant-)
  3. Choose model:
    • claude-3-opus: Most capable
    • claude-3-sonnet: Balanced
    • claude-3-haiku: Fastest, cheapest
  4. Test connection

Anthropic Tips

đź’Ž Google Gemini Setup

Getting Your API Key

  1. Set Up Google Cloud
  2. Get API Key
    • Click “Get API key”
    • Create new or use existing project
    • Copy the generated key
  3. Understand Free Tier
    • Limited free requests per minute
    • Upgrade for higher limits
    • Check quotas regularly

Configure in VentureLab

  1. Select Gemini in AI Providers
  2. Paste API key
  3. Choose model:
    • gemini-pro: Text generation
    • gemini-pro-vision: Multimodal (future)
  4. Test and save

Gemini Tips

🔄 Switching Providers

When to Switch

How to Switch

  1. Open AI Providers settings
  2. Select new provider from dropdown
  3. Ensure API key is configured
  4. Test connection
  5. Save settings

Changes take effect immediately for all tools.

đź”§ Advanced Configuration

Custom Base URLs

Use for:

Example:

https://your-company.com/openai-proxy/v1

Environment Variables

For CI/CD or shared systems:

# OpenAI
export OPENAI_API_KEY="sk-..."

# Anthropic
export ANTHROPIC_API_KEY="sk-ant-..."

# Gemini
export GEMINI_API_KEY="AIza..."

VentureLab will use these if no key is stored.

Remote Ollama Servers

  1. Server Setup
    # On server
    OLLAMA_HOST=0.0.0.0 ollama serve
    
  2. Client Configuration
    • Base URL: http://server-ip:11434
    • Optional: Configure authentication
    • Test connection

🚨 Troubleshooting

Common Issues

“API key invalid”

“Connection failed”

“Model not found”

“Rate limit exceeded”

Provider-Specific Issues

Ollama

OpenAI

Anthropic

Gemini

đź“‹ Setup Checklist


Need help? Check the Troubleshooting Guide or FAQ.