fix: Adjust item content info streaming calls to match updated signature

Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-09-02 18:38:26 -03:00
parent 8795756232
commit d7a0ac96b3

View File

@@ -144,14 +144,6 @@ async fn handle_as_meta_response_with_metadata(
// If text metadata isn't set, we need to check the content using streaming approach // If text metadata isn't set, we need to check the content using streaming approach
match item_service.get_item_content_info_streaming( match item_service.get_item_content_info_streaming(
item_id, item_id,
None,
None,
None,
None,
None,
None,
None,
None,
None None
).await { ).await {
Ok((_, _, is_binary)) => is_binary, Ok((_, _, is_binary)) => is_binary,
@@ -466,14 +458,6 @@ async fn stream_item_content_response_with_metadata(
// If text metadata isn't set, we need to check the content using streaming approach // If text metadata isn't set, we need to check the content using streaming approach
match item_service.get_item_content_info_streaming( match item_service.get_item_content_info_streaming(
item_id, item_id,
None,
None,
None,
None,
None,
None,
None,
None,
None None
).await { ).await {
Ok((_, _, is_binary)) => is_binary, Ok((_, _, is_binary)) => is_binary,