Credentials YAML File

The credentials.yml file is used to store API keys and other credentials required by ServerAssistantAI and its addons. This file is updated dynamically as you install new addons.

Configuring Credentials:

  • credentials.cohere.api_key: Your Cohere API key.

  • credentials.openai.api_key: Your OpenAI API key.

To obtain credentials for each provider, please visit the AI Providers wiki page. This page contains detailed information about the supported AI providers and where the necessary API keys or access tokens can be found.

When using models from providers like Cohere or OpenAI, make sure to enter the appropriate API keys or access tokens in the credentials.yml file. These credentials are necessary for ServerAssistantAI to authenticate and access the required providers.

credentials.yml:
# ServerAssistantAI Credentials Configuration
# ===========================================
# This file is updated dynamically as you install new addons that require API keys or other credentials.
# Please do not modify this file manually unless filling in the generated credentials or if instructed by an update or the documentation.
# To view the URLs for obtaining API keys for each provider, visit https://wiki.code-solutions.dev/serverassistantai/providers-and-models/ai-providers
# ===========================================

# Here you can configure credentials for services, such as APIs. Do not add your own service manually.
credentials:
  cohere:
    api_key: ''
  openai:
    api_key: ''

Last updated