Skip to content

Commit 01af75e

Browse files
authored
fix type error of temperature initialization in Llm class: from int to float.
1 parent 21babb1 commit 01af75e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interpreter/core/llm/llm.py

Lines changed: 1 addition & 1 deletion
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)