This commit is contained in:
刘可亮
2025-07-22 11:15:46 +08:00
parent d164b333ed
commit 11c97ef399
2870 changed files with 951307 additions and 26675 deletions

View File

@@ -92,7 +92,7 @@ char *llm_generate_response(llm_config_t *config)
}
strcat(newAllContent, config->content_buffer);
allContent = newAllContent;
printf("%s", config->content_buffer);
// printf("%s", config->content_buffer);
free(oldAllContent);
if (config->callback)

View File

@@ -34,9 +34,9 @@ thread_pool_t *thread_pool_create(int thread_count)
if (!pool) return NULL;
pool->task_mq = rt_mq_create("tpool_mq",
2048,
sizeof(thread_pool_task_t),
RT_IPC_FLAG_FIFO);
sizeof(thread_pool_task_t),
128,
RT_IPC_FLAG_FIFO);
if (!pool->task_mq) {
return NULL;
}