diff options
Diffstat (limited to 'src/providers/DeepSeek.cpp')
| -rw-r--r-- | src/providers/DeepSeek.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/providers/DeepSeek.cpp b/src/providers/DeepSeek.cpp index 2fc73c9..7c695fb 100644 --- a/src/providers/DeepSeek.cpp +++ b/src/providers/DeepSeek.cpp @@ -25,7 +25,7 @@ #define QUERY_BUFFER_SIZE 1000000 char* query_buffer = 0; -static bool _DeepSeek_query_with_file(const char* query, size_t query_length, char* file_id, char** response) +static bool _DeepSeek_query_with_file(const char* query, size_t query_length, const char* file_id, char** response) { (void)file_id; (void)query_length; @@ -74,7 +74,7 @@ static bool _DeepSeek_query_with_file(const char* query, size_t query_length, ch return 1; } -static bool _DeepSeek_upload_file(char* file_path, char* file_id, size_t file_id_len) +static bool _DeepSeek_upload_file(const char* file_path, char* file_id, size_t file_id_len) { (void)file_id; (void)file_id_len; |
