@@ -499,7 +499,6 @@ def comments_to_tree(
499499 {"role" : "system" , "content" : req .llm .system_prompt },
500500 {"role" : "user" , "content" : full_prompt },
501501 ],
502- temperature = 0.0 ,
503502 response_format = {"type" : "json_object" },
504503 )
505504 try :
@@ -634,7 +633,6 @@ def comment_to_claims(llm: dict, comment: str, tree: dict, api_key: str, comment
634633 {"role" : "system" , "content" : llm .system_prompt },
635634 {"role" : "user" , "content" : full_prompt },
636635 ],
637- temperature = 0.0 ,
638636 response_format = ClaimsSchema ,
639637 )
640638
@@ -1146,7 +1144,6 @@ def dedup_claims(claims: list, llm: LLMConfig, api_key: str, topic_name: str = "
11461144 {"role" : "system" , "content" : llm .system_prompt },
11471145 {"role" : "user" , "content" : full_prompt },
11481146 ],
1149- temperature = 0.0 ,
11501147 response_format = {"type" : "json_object" },
11511148 )
11521149 try :
@@ -1884,7 +1881,6 @@ def cruxes_for_topic(
18841881 {"role" : "system" , "content" : llm .system_prompt },
18851882 {"role" : "user" , "content" : full_prompt },
18861883 ],
1887- temperature = 0.0 ,
18881884 response_format = {"type" : "json_object" },
18891885 )
18901886 crux = response .choices [0 ].message .content
0 commit comments