-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eb10efd
commit 5d704b1
Showing
4 changed files
with
33 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
1. **OAuth 2 Authentication for Custom LLM Models and Webhooks**: In addition to (AuthZ)[https://www.okta.com/identity-101/authentication-vs-authorization/], you can now now authenticate users accessing your [custom LLMs](https://docs.vapi.ai/customization/custom-llm/using-your-server#step-2-configuring-vapi-with-custom-llm) and [server urls (aka webhooks)](https://docs.vapi.ai/server-url) using OAuth2 (RFC 6749). Use the `authenticationSession` dictionary which contains an `accessToken` and `expiresAt` datetime to authenticate further requests to your custom LLM or server URL. | ||
|
||
For example, create a webhook credential with `CreateCustomLLMCredentialDTO` with the following payload: | ||
```json | ||
{ | ||
"provider": "custom-llm", | ||
"apiKey": "your-api-key-max-10000-characters", | ||
"authenticationPlan": { | ||
"type": "oauth2", | ||
"url": "https://your-url.com/your/path/token", | ||
"clientId": "your-client-id", | ||
"clientSecret": "your-client-secret" | ||
}, | ||
"name": "your-credential-name-between-1-and-40-characters" | ||
} | ||
``` | ||
|
||
This returns a [`CustomLLMCredential`](https://api.vapi.ai/api) object as follows: | ||
|
||
<Frame caption="Refer to the `CustomLLMCredential` schema for more information"> | ||
<img src="../static/images/changelog/custom-llm-credential.png" /> | ||
</Frame> | ||
|
||
This can be used to authenticate successive requests to your custom LLM or server URL. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.