Vikky Platform docs

Quickstart.First call, fast.

Get a key, install the Vikky SDK, make a call.

Four steps

From zeroto a reply.

  1. 1
    Get a key

    Sign up. A new account is reviewed by an admin before its keys work. Then create a key on the API keys page.

  2. 2
    Base URL
    https://api.vikkyverse.com/v1
  3. 3
    Install and set your key
    pip install vikky
    export VIKKY_API_KEY="your-key"
  4. 4
    First call
    from vikky import Vikky
    
    client = Vikky()  # reads VIKKY_API_KEY
    
    resp = client.chat.completions.create(
        model="vikky-chat",
        messages=[{"role": "user", "content": "Say hello in one line."}],
    )
    print(resp.choices[0].message.content)

Model names

Call a name.We run the rest.

What runs behind a Vikky name can change without a change to your code. Most come in tiers: add -flash for cheaper or -pro for stronger. Your account can call the names an admin granted it.

NameForTiers
vikky-chatChat, JSON output, tool calls-flash, -pro
vikky-visionChat that also takes images-flash, -pro
vikky-embodiedImages in, reasoning about the physical scene out-
vikky-embedText to vectors-flash, -pro
vikky-imageMake and edit pictures-flash, -pro
vikky-transcribeAudio to text-flash, -pro
vikky-speechText to audio-
vikky-rerankOrder documents by relevance-flash