Spaces:
Running
Running
Commit ·
6413288
1
Parent(s): 06bfb07
Fixed encoding issues
Browse files- src/manager/manager.py +1 -1
src/manager/manager.py
CHANGED
|
@@ -40,7 +40,7 @@ class Mode(Enum):
|
|
| 40 |
|
| 41 |
|
| 42 |
def format_tool_response(response, indent=2):
|
| 43 |
-
return json.dumps(response, indent=indent)
|
| 44 |
|
| 45 |
|
| 46 |
class GeminiManager:
|
|
|
|
| 40 |
|
| 41 |
|
| 42 |
def format_tool_response(response, indent=2):
|
| 43 |
+
return json.dumps(response, indent=indent, ensure_ascii=False)
|
| 44 |
|
| 45 |
|
| 46 |
class GeminiManager:
|