fix: apply cargo fmt to fix formatting issues
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
915ce58a8c
commit
4070131bb8
3 changed files with 26 additions and 16 deletions
|
|
@ -402,15 +402,17 @@ impl Provider for ReliableProvider {
|
|||
Some(chunk) => Some((chunk, rx)),
|
||||
None => None,
|
||||
}
|
||||
}).boxed();
|
||||
})
|
||||
.boxed();
|
||||
}
|
||||
|
||||
// No streaming support available
|
||||
stream::once(async move {
|
||||
Err(super::traits::StreamError::Provider(
|
||||
"No provider supports streaming".to_string()
|
||||
"No provider supports streaming".to_string(),
|
||||
))
|
||||
}).boxed()
|
||||
})
|
||||
.boxed()
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue