Spaces:
Runtime error
Runtime error
File size: 1,796 Bytes
6d09ca9 1b95f45 6d09ca9 1b95f45 6d09ca9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
import json
import jsonschema
import requests
def load_schema():
"""Load the GEM schema"""
with open("schema.json", "r", encoding="utf8") as file:
schema = json.load(file)
return schema
def validate_json(json_data):
execute_api_schema = load_schema()
try:
jsonschema.validate(instance=json_data, schema=execute_api_schema)
except jsonschema.exceptions.ValidationError as err:
err = "β Submission does not match GEM schema. Please fix the submission file π"
return False, err
message = "β
Submission matches GEM schema!"
return True, message
def get_auth_headers(token: str, prefix: str = "autonlp"):
return {"Authorization": f"{prefix} {token}"}
def http_post(path: str, token: str, payload=None, domain: str = None, params=None) -> requests.Response:
"""HTTP POST request to the AutoNLP API, raises UnreachableAPIError if the API cannot be reached"""
try:
response = requests.post(
url=domain + path, json=payload, headers=get_auth_headers(token=token), allow_redirects=True, params=params
)
except requests.exceptions.ConnectionError:
print("β Failed to reach AutoNLP API, check your internet connection")
response.raise_for_status()
return response
def http_get(
path: str,
token: str,
domain: str = None,
) -> requests.Response:
"""HTTP POST request to the AutoNLP API, raises UnreachableAPIError if the API cannot be reached"""
try:
response = requests.get(url=domain + path, headers=get_auth_headers(token=token), allow_redirects=True)
except requests.exceptions.ConnectionError:
print("β Failed to reach AutoNLP API, check your internet connection")
response.raise_for_status()
return response
|