[DE]
Um OpenRouter für die KI-Funktionen in RSK zu nutzen, muss in der appsettings.json im Abschnitt „AvailableConnections“ eine Verbindung hinzugefügt werden.
Beispiel:
{
„Key“: „OpenRouter-GptOss120B“,
„Type“: „OpenAI“,
„EndpointUrl“: „https://openrouter.ai/api/v1/“,
„ModelId“: „openai/gpt-oss-120b“,
„ApiKey“: „sk-…“
}
Key, ApiKey und ModelId passend setzen.
Bei den KI-Funktionen im Abschnitt „ConnectionMappings“ muss dann bei den Mappings, die mit OpenRouter arbeiten sollen, der Key eingetragen werden.
Beispiel:
{
„Mapping“: „KIS_SMART_PASTE“,
„UsedConnectionKey“: „OpenRouter-GptOss120B“
}
Danach nutzt diese Funktion das Modell über OpenRouter.
[EN]
To use OpenRouter for AI functions within RSK, you must add a connection to the AvailableConnections section in the appsettings.json file.
Example:
{
„Key“: „OpenRouter-GptOss120B“,
„Type“: „OpenAI“,
„EndpointUrl“: „https://openrouter.ai/api/v1/“,
„ModelId“: „openai/gpt-oss-120b“,
„ApiKey“: „sk-…“
}
Note: Ensure that the Key, ApiKey, and ModelId are set correctly.
In the ConnectionMappings section of the AI functions, enter the corresponding key for any mappings that should utilize OpenRouter.
Example:
{
„Mapping“: „KIS_SMART_PASTE“,
„UsedConnectionKey“: „OpenRouter-GptOss120B“
}
Once configured, this function will use the specified model via OpenRouter.