Authorize access to language model providers based on country (#15859)
This PR updates the LLM service to authorize access to language model providers based on the requester's country. We detect the country using Cloudflare's [`CF-IPCountry`](https://developers.cloudflare.com/fundamentals/reference/http-request-headers/#cf-ipcountry) header. The country code is then checked against the list of supported countries for the given LLM provider. Countries that are not supported will receive an `HTTP 451: Unavailable For Legal Reasons` response. Release Notes: - N/A
This commit is contained in:
parent
9c6ccaffe3
commit
cf5f4dddf5
13 changed files with 921 additions and 1 deletions
|
@ -6,6 +6,12 @@ extend-exclude = [
|
|||
# File suffixes aren't typos
|
||||
"assets/icons/file_icons/file_types.json",
|
||||
"crates/extensions_ui/src/extension_suggest.rs",
|
||||
|
||||
# Some countries codes are flagged as typos.
|
||||
"crates/anthropic/src/supported_countries.rs",
|
||||
"crates/google_ai/src/supported_countries.rs",
|
||||
"crates/open_ai/src/supported_countries.rs",
|
||||
|
||||
# Stripe IDs are flagged as typos.
|
||||
"crates/collab/src/db/tests/processed_stripe_event_tests.rs",
|
||||
# Not our typos
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue