chore: removed anyhow from apperror for improved error handling

This commit is contained in:
Per Stark
2026-05-27 13:33:02 +02:00
parent 890a4b381d
commit 31d585b59f
7 changed files with 36 additions and 25 deletions
@@ -4,7 +4,7 @@ use chrono::Utc;
use futures::stream::{self, StreamExt, TryStreamExt};
use serde::{Deserialize, Serialize};
use anyhow::Context;
use common::{
error::AppError,
storage::{
@@ -161,7 +161,7 @@ async fn create_single_entity(
provider
.embed(&embedding_input)
.await
.context("generating FastEmbed embedding for entity")?
.map_err(|e| AppError::InternalError(format!("FastEmbed embedding for entity failed: {e}")))?
} else {
generate_embedding(openai_client, &embedding_input, db_client).await?
};
+2 -2
View File
@@ -3,7 +3,7 @@ use std::{
sync::{Arc, OnceLock},
};
use anyhow::Context;
use async_openai::types::{
ChatCompletionRequestSystemMessage, ChatCompletionRequestUserMessage,
CreateChatCompletionRequest, CreateChatCompletionRequestArgs, ResponseFormat,
@@ -269,7 +269,7 @@ impl PipelineServices for DefaultPipelineServices {
.embedding_provider
.embed(&chunk_text)
.await
.context("generating FastEmbed embedding for chunk")?;
.map_err(|e| AppError::InternalError(format!("FastEmbed embedding for chunk failed: {e}")))?;
let chunk_struct = TextChunk::new(
content.get_id().to_string(),
chunk_text,
@@ -1,4 +1,3 @@
use anyhow::anyhow;
use common::{
error::AppError,
storage::{db::SurrealDbClient, store::StorageManager, types::file_info::FileInfo},
@@ -78,7 +77,7 @@ pub async fn extract_text_from_file(
let file_bytes = storage
.get(&file_info.path)
.await
.map_err(|e| AppError::from(anyhow!(e)))?;
.map_err(AppError::Storage)?;
let local_path = resolve_existing_local_path(storage, &file_info.path).await;
match file_info.mime_type.as_str() {
@@ -30,24 +30,36 @@ pub async fn extract_text_from_url(
.sandbox(false)
.build()
.map_err(|e| AppError::InternalError(e.to_string()))?;
Browser::new(options)?
Browser::new(options)
.map_err(|e| AppError::InternalError(e.to_string()))?
}
#[cfg(not(feature = "docker"))]
{
Browser::default()?
Browser::default()
.map_err(|e| AppError::InternalError(e.to_string()))?
}
};
let tab = browser.new_tab()?;
let page = tab.navigate_to(url)?;
let loaded_page = page.wait_until_navigated()?;
let raw_content = loaded_page.get_content()?;
let screenshot = loaded_page.capture_screenshot(
headless_chrome::protocol::cdp::Page::CaptureScreenshotFormatOption::Jpeg,
None,
None,
true,
)?;
let tab = browser
.new_tab()
.map_err(|e| AppError::InternalError(e.to_string()))?;
let page = tab
.navigate_to(url)
.map_err(|e| AppError::InternalError(e.to_string()))?;
let loaded_page = page
.wait_until_navigated()
.map_err(|e| AppError::InternalError(e.to_string()))?;
let raw_content = loaded_page
.get_content()
.map_err(|e| AppError::InternalError(e.to_string()))?;
let screenshot = loaded_page
.capture_screenshot(
headless_chrome::protocol::cdp::Page::CaptureScreenshotFormatOption::Jpeg,
None,
None,
true,
)
.map_err(|e| AppError::InternalError(e.to_string()))?;
let mut tmp_file = NamedTempFile::new()?;
let temp_path_str = tmp_file.path().display().to_string();