We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a9d6e0 commit f5dfc0eCopy full SHA for f5dfc0e
lib/llm/src/preprocessor/media/mod.rs renamed to lib/llm/src/preprocessor/media.rs
lib/llm/src/preprocessor/media/common.rs
@@ -13,7 +13,6 @@ pub struct EncodedMediaData {
13
14
impl EncodedMediaData {
15
// Handles both web URLs (will download the bytes) and data URLs (will keep b64-encoded)
16
- // This function is kept in tokio runtime so we do not want any expensive operations
17
pub async fn from_url(url: &url::Url, client: &reqwest::Client) -> Result<Self> {
18
let (bytes, b64_encoded) = match url.scheme() {
19
"data" => {
0 commit comments