From 2855642dd16cea260f3b32351f0529328a0bcb15 Mon Sep 17 00:00:00 2001 From: Aldrik Ramaekers Date: Sat, 4 Oct 2025 15:54:30 +0200 Subject: namespacing locale, config, file_templates --- src/ai_providers/DeepSeek.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/ai_providers/DeepSeek.cpp') diff --git a/src/ai_providers/DeepSeek.cpp b/src/ai_providers/DeepSeek.cpp index 67d17c2..334f024 100644 --- a/src/ai_providers/DeepSeek.cpp +++ b/src/ai_providers/DeepSeek.cpp @@ -24,13 +24,15 @@ #include "httplib.h" #include "strops.hpp" #include "log.hpp" -#include "import_service.hpp" +#include "importer.hpp" #define QUERY_BUFFER_SIZE 1000000 char* query_buffer = 0; static bool _DeepSeek_query_with_file(char* query, size_t query_length, char* file_id, char** response) { + (void)file_id; + (void)query_length; assert(query_buffer); const char *api_key = administration_get_ai_service().api_key_public; @@ -78,6 +80,8 @@ static bool _DeepSeek_query_with_file(char* query, size_t query_length, char* fi static bool _DeepSeek_upload_file(char* file_path, char* file_id, size_t file_id_len) { + (void)file_id; + (void)file_id_len; const char *filename = strops_get_filename(file_path); FILE* orig_file = fopen(file_path, "r"); -- cgit v1.2.3-70-g09d2