-
I've set up a custom endpoint that contains a hard coded API key. I've now updated the API key to be user provided:
Which displays the UI correctly. However, I don't see the key being passed in librechat's requests to my custom endpoint, nor can I find any documentation (i.e., here) about how it's forwarded. Specific questions:
Thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
keviddles
Aug 14, 2024
Replies: 1 comment
-
The answer is that it is passed as a header under I'm using FastAPI, and to get it from the
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
keviddles
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The answer is that it is passed as a header under
Authorization
.I'm using FastAPI, and to get it from the
Request
I can do: