My environment has api support for a few LLMs we can tap into, but our api requires that we send out our API token in a http header.
For example in curl, we would use something like:
curl -X POST https://url/v1/chat/completions -H "Authorization: Bearer " .... rest of curl information.
I haven't been able to get it to work by adding user/pass, or 'https://tokenid:token@url/v1/chat/....
My environment has api support for a few LLMs we can tap into, but our api requires that we send out our API token in a http header.
For example in curl, we would use something like:
curl -X POST https://url/v1/chat/completions -H "Authorization: Bearer " .... rest of curl information.
I haven't been able to get it to work by adding user/pass, or 'https://tokenid:token@url/v1/chat/....