feat: add supportToolCall getter to DeepSeekLLM class (#2085)

Co-authored-by: Marcus Schiesser <marcus.schiesser@googlemail.com>
This commit is contained in:
NIEDASEN
2025-07-11 16:11:22 +08:00
committed by GitHub
parent 5cce681f62
commit af3f86694b
2 changed files with 9 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
---
"@llamaindex/deepseek": patch
---
feat: add supportToolCall getter to DeepSeekLLM class
+4
View File
@@ -34,6 +34,10 @@ export class DeepSeekLLM extends OpenAI {
...rest,
});
}
get supportToolCall() {
return true;
}
}
/**