Vikky Platform docs
Quickstart.First call, fast.
Get a key, install the Vikky SDK, make a call.
Four steps
From zeroto a reply.
- 1Get 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.
- 2Base URL
https://api.vikkyverse.com/v1 - 3Install and set your key
pip install vikky export VIKKY_API_KEY="your-key"
- 4First 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.
| Name | For | Tiers |
|---|---|---|
| vikky-chat | Chat, JSON output, tool calls | -flash, -pro |
| vikky-vision | Chat that also takes images | -flash, -pro |
| vikky-embodied | Images in, reasoning about the physical scene out | - |
| vikky-embed | Text to vectors | -flash, -pro |
| vikky-image | Make and edit pictures | -flash, -pro |
| vikky-transcribe | Audio to text | -flash, -pro |
| vikky-speech | Text to audio | - |
| vikky-rerank | Order documents by relevance | -flash |