open_ai: Remove list of supported countries (#29347)

This PR removes the list of supported countries from the `open_ai`
crate, as it is no longer referenced in this repo.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2025-04-24 10:55:37 -04:00 committed by GitHub
parent 8bb7a1f9e7
commit b54bbebc03
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 0 additions and 242 deletions

View file

@ -1,5 +1,3 @@
mod supported_countries;
use anyhow::{Context as _, Result, anyhow};
use futures::{
AsyncBufReadExt, AsyncReadExt, StreamExt,
@ -15,8 +13,6 @@ use std::{
};
use strum::EnumIter;
pub use supported_countries::*;
pub const OPEN_AI_API_URL: &str = "https://api.openai.com/v1";
fn is_none_or_empty<T: AsRef<[U]>, U>(opt: &Option<T>) -> bool {