Skip to content

Commit dcfcffa

Browse files
authored
Merge pull request #1621 from lhydave/main
Fix the type error of temperature initialization in Llm class
2 parents 21babb1 + 81a9302 commit dcfcffa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interpreter/core/llm/llm.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def __init__(self, interpreter):
5252

5353
# Settings
5454
self.model = "gpt-4o"
55-
self.temperature = 0
55+
self.temperature = 0.0
5656

5757
self.supports_vision = None # Will try to auto-detect
5858
self.vision_renderer = (

0 commit comments

Comments
 (0)