summaryrefslogtreecommitdiff
path: root/src/ai_providers/DeepSeek.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ai_providers/DeepSeek.cpp')
-rw-r--r--src/ai_providers/DeepSeek.cpp6
1 files changed, 5 insertions, 1 deletions
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");