chore: dependabot deps update

chore: openai version bump
This commit is contained in:
Per Stark
2026-06-20 10:38:20 +02:00
parent 09e545816e
commit 87e6fa14b2
12 changed files with 249 additions and 97 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
use async_openai::types::ListModelResponse;
use async_openai::types::models::ListModelResponse;
use axum::{
extract::{Query, State},
Form,
@@ -234,7 +234,7 @@ fn build_chat_event_stream(
state: HtmlState,
openai_stream: impl Stream<
Item = Result<
async_openai::types::CreateChatCompletionStreamResponse,
async_openai::types::chat::CreateChatCompletionStreamResponse,
async_openai::error::OpenAIError,
>,
> + Send
@@ -342,7 +342,7 @@ async fn prepare_chat_request(
history: &[Message],
) -> Result<
(
async_openai::types::CreateChatCompletionRequest,
async_openai::types::chat::CreateChatCompletionRequest,
Vec<String>,
),
SseResponse,