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 22aa4a9 commit b0aa2e6Copy full SHA for b0aa2e6
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