mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2026-01-31 20:04:28 +01:00
Co-authored-by: Reinier van der Leer <github@pwuts.nl> Co-authored-by: Nicholas Tindle <nick@ntindle.com> Co-authored-by: Nicholas Tindle <nicktindle@outlook.com> Co-authored-by: k-boikov <64261260+k-boikov@users.noreply.github.com> Co-authored-by: merwanehamadi <merwanehamadi@gmail.com> Co-authored-by: Merwane Hamadi <merwanehamadi@gmail.com> Co-authored-by: Richard Beales <rich@richbeales.net> Co-authored-by: Luke K <2609441+lc0rp@users.noreply.github.com> Co-authored-by: Luke K (pr-0f3t) <2609441+lc0rp@users.noreply.github.com> Co-authored-by: Erik Peterson <e@eriklp.com> Co-authored-by: Auto-GPT-Bot <github-bot@agpt.co> Co-authored-by: Benny van der Lans <49377421+bfalans@users.noreply.github.com> Co-authored-by: Jan <jan-github@phobia.de> Co-authored-by: Robin Richtsfeld <robin.richtsfeld@gmail.com> Co-authored-by: Marc Bornträger <marc.borntraeger@gmail.com> Co-authored-by: Stefan Ayala <stefanayala3266@gmail.com> Co-authored-by: javableu <45064273+javableu@users.noreply.github.com> Co-authored-by: DGdev91 <DGdev91@users.noreply.github.com> Co-authored-by: Kinance <kinance@gmail.com> Co-authored-by: digger yu <digger-yu@outlook.com> Co-authored-by: David <scenaristeur@gmail.com> Co-authored-by: gravelBridge <john.tian31@gmail.com> Fix Python CI "update cassettes" step (#4591) fix CI (#4596) Fix inverted logic for deny_command (#4563) fix current_score.json generation (#4601) Fix duckduckgo rate limiting (#4592) Fix debug code challenge (#4632) Fix issues with information retrieval challenge a (#4622) fix issues with env configuration and .env.template (#4630) Fix prompt issue causing 'No Command' issues and challenge to fail (#4623) Fix benchmark logs (#4653) Fix typo in docs/setup.md (#4613) Fix run.sh shebang (#4561) Fix autogpt docker image not working because missing prompt_settings (#4680) Fix execute_command coming from plugins (#4730)
96 lines
2.8 KiB
Python
96 lines
2.8 KiB
Python
"""Utilities for the json_fixes package."""
|
|
import ast
|
|
import json
|
|
import os.path
|
|
from typing import Any
|
|
|
|
from jsonschema import Draft7Validator
|
|
|
|
from autogpt.config import Config
|
|
from autogpt.logs import logger
|
|
|
|
CFG = Config()
|
|
LLM_DEFAULT_RESPONSE_FORMAT = "llm_response_format_1"
|
|
|
|
|
|
def extract_json_from_response(response_content: str) -> dict:
|
|
# Sometimes the response includes the JSON in a code block with ```
|
|
if response_content.startswith("```") and response_content.endswith("```"):
|
|
# Discard the first and last ```, then re-join in case the response naturally included ```
|
|
response_content = "```".join(response_content.split("```")[1:-1])
|
|
|
|
# response content comes from OpenAI as a Python `str(content_dict)`, literal_eval reverses this
|
|
try:
|
|
return ast.literal_eval(response_content)
|
|
except BaseException as e:
|
|
logger.error(f"Error parsing JSON response with literal_eval {e}")
|
|
# TODO: How to raise an error here without causing the program to exit?
|
|
return {}
|
|
|
|
|
|
def llm_response_schema(
|
|
schema_name: str = LLM_DEFAULT_RESPONSE_FORMAT,
|
|
) -> dict[str, Any]:
|
|
filename = os.path.join(os.path.dirname(__file__), f"{schema_name}.json")
|
|
with open(filename, "r") as f:
|
|
return json.load(f)
|
|
|
|
|
|
def validate_json(
|
|
json_object: object, schema_name: str = LLM_DEFAULT_RESPONSE_FORMAT
|
|
) -> bool:
|
|
"""
|
|
:type schema_name: object
|
|
:param schema_name: str
|
|
:type json_object: object
|
|
|
|
Returns:
|
|
bool: Whether the json_object is valid or not
|
|
"""
|
|
schema = llm_response_schema(schema_name)
|
|
validator = Draft7Validator(schema)
|
|
|
|
if errors := sorted(validator.iter_errors(json_object), key=lambda e: e.path):
|
|
for error in errors:
|
|
logger.error(f"JSON Validation Error: {error}")
|
|
|
|
if CFG.debug_mode:
|
|
logger.error(
|
|
json.dumps(json_object, indent=4)
|
|
) # Replace 'json_object' with the variable containing the JSON data
|
|
logger.error("The following issues were found:")
|
|
|
|
for error in errors:
|
|
logger.error(f"Error: {error.message}")
|
|
return False
|
|
|
|
logger.debug("The JSON object is valid.")
|
|
|
|
return True
|
|
|
|
|
|
def validate_json_string(json_string: str, schema_name: str) -> dict | None:
|
|
"""
|
|
:type schema_name: object
|
|
:param schema_name: str
|
|
:type json_object: object
|
|
"""
|
|
|
|
try:
|
|
json_loaded = json.loads(json_string)
|
|
if not validate_json(json_loaded, schema_name):
|
|
return None
|
|
return json_loaded
|
|
except:
|
|
return None
|
|
|
|
|
|
def is_string_valid_json(json_string: str, schema_name: str) -> bool:
|
|
"""
|
|
:type schema_name: object
|
|
:param schema_name: str
|
|
:type json_object: object
|
|
"""
|
|
|
|
return validate_json_string(json_string, schema_name) is not None
|