aboutsummaryrefslogtreecommitdiff
path: root/autogpt/core/planning/strategies/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'autogpt/core/planning/strategies/utils.py')
-rw-r--r--autogpt/core/planning/strategies/utils.py27
1 files changed, 0 insertions, 27 deletions
diff --git a/autogpt/core/planning/strategies/utils.py b/autogpt/core/planning/strategies/utils.py
deleted file mode 100644
index 5a725903f..000000000
--- a/autogpt/core/planning/strategies/utils.py
+++ /dev/null
@@ -1,27 +0,0 @@
-import ast
-import json
-
-
-def to_numbered_list(
- items: list[str], no_items_response: str = "", **template_args
-) -> str:
- if items:
- return "\n".join(
- f"{i+1}. {item.format(**template_args)}" for i, item in enumerate(items)
- )
- else:
- return no_items_response
-
-
-def json_loads(json_str: str):
- # TODO: this is a hack function for now. Trying to see what errors show up in testing.
- # Can hopefully just replace with a call to ast.literal_eval (the function api still
- # sometimes returns json strings with minor issues like trailing commas).
- try:
- return ast.literal_eval(json_str)
- except json.decoder.JSONDecodeError as e:
- try:
- print(f"json decode error {e}. trying literal eval")
- return ast.literal_eval(json_str)
- except Exception:
- breakpoint()