chore: add and improve documentation

This commit is contained in:
Abhishek Kumar 2025-12-23 12:59:49 +05:30
parent 96f8aaf325
commit 8b820c6d8a
23 changed files with 395 additions and 54 deletions

View file

@ -0,0 +1,19 @@
---
title: "API Keys and Service Keys"
description: "You can create API Keys to trigger Dograh Voice Agents and Service Keys to use with Inference Providers"
---
The option to create the Keys are in https://app.dograh.com/api-keys if you are using hosted version, or http://localhost:3010/api-keys if you are using the self hosted version.
### API Keys
API keys can be used to trigger a voice agent from an external system, like n8n or programatically from your other workflows. In order to generate that, you can go to `/api-keys` and create a new key.
![Create a new API Key](../images/api-keys.png)
Please note that you must copy and keep the API key secretly, since this is the only time that you would be able to copy it. If you lose it, you can always delete that, if its not being used anywhere, and create a new API key.
### Service Keys
Service Keys are the keys which you generate to be used in [Model Configurations](inference-providers). In order to generate that, you can go to `/api-keys` and create a new key.
![Create a new Service Key](../images/service-keys.png)

View file

@ -5,13 +5,13 @@ description: "Dograh ships with its own inferencing engine, which is hosted at h
## Configure Inference Provider
You can go to `https://app.dograh.com/service-configurations` if you are on hosted version of Dograh or go to `http://localhost:3010/service-configurations` if you are running Dograh locally.
You can go to `https://app.dograh.com/model-configurations` if you are on hosted version of Dograh or go to `http://localhost:3010/model-configurations` if you are running Dograh locally.
You can see the configuration for the inference provider in the following screenshot.
![Inference Provider Configuration](../images/service-configuration.png)
![Model Configuration](../images/service-configuration.png)
You can select the provider from the dropdown and configure the API key, model, etc.
You can select the provider from the dropdown and configure the API key, model, etc. You can see [API Keys](api-keys) documentation for instructions on how to create Service Keys to be used in Model Configuration.
## Next Steps