Skip to content

Commit 6af0b76

Browse files
committed
fix(llm): remove default max_token:65536 from llm/client.py
1 parent c628cdd commit 6af0b76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc2anki/llm/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def call_llm(
3434
client: OpenAI,
3535
model: str,
3636
prompt: str,
37-
max_tokens: int = 65536,
37+
max_tokens,
3838
use_json_mode: bool = True,
3939
) -> str:
4040
"""

0 commit comments

Comments
 (0)