design: neobrutalist_theme into main

This commit is contained in:
Per Stark
2025-09-17 10:00:55 +02:00
parent 62d909bb7e
commit 6ea51095e8
57 changed files with 1791 additions and 951 deletions

View File

@@ -1,10 +1,7 @@
use async_openai::types::{CreateTranscriptionRequestArgs, AudioResponseFormat};
use async_openai::types::{AudioResponseFormat, CreateTranscriptionRequestArgs};
use common::{
error::AppError,
storage::{
db::SurrealDbClient,
types::system_settings::SystemSettings,
},
storage::{db::SurrealDbClient, types::system_settings::SystemSettings},
};
/// Transcribes an audio file using the configured OpenAI Whisper model.
@@ -29,4 +26,3 @@ pub async fn transcribe_audio_file(
.map_err(|e| AppError::Processing(format!("Audio transcription failed: {}", e)))?;
Ok(response.text)
}