use strict for new gpt4o

This commit is contained in:
Paul Gauthier 2024-08-14 11:14:37 -07:00
parent 5c24a06dc8
commit 675263623d
3 changed files with 6 additions and 6 deletions

View file

@ -1031,7 +1031,7 @@ class Coder:
if self.partial_response_function_call:
args = self.parse_partial_args()
if args:
content = args["explanation"]
content = args.get("explanation") or ""
else:
content = ""
elif self.partial_response_content: