Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion holmes/core/llm.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ def count_tokens(
def completion(
self,
messages: List[Dict[str, Any]],
tools: Optional[List[Dict[str, Any]]] = [],
tools: Optional[List[Dict[str, Any]]] = None,
tool_choice: Optional[Union[str, dict]] = None,
response_format: Optional[Union[dict, Type[BaseModel]]] = None,
temperature: Optional[float] = None,
Expand Down
1 change: 0 additions & 1 deletion holmes/core/tool_calling_llm.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import concurrent.futures
import json
from json import tool
import logging
import re
import threading
Expand Down