Files
Auto-GPT/agbenchmark/utils/get_data_from_helicone.py
2023-08-01 13:44:32 +01:00

85 lines
2.3 KiB
Python

import json
import os
from typing import Optional
import requests
from agbenchmark.start_benchmark import BENCHMARK_START_TIME
def get_data_from_helicone(challenge: str) -> Optional[float]:
# Define the endpoint of your GraphQL server
url = "https://www.helicone.ai/api/graphql"
# Set the headers, usually you'd need to set the content type and possibly an authorization token
headers = {"authorization": f"Bearer {os.environ.get('HELICONE_API_KEY')}"}
# Define the query, variables, and operation name
query = """
query ExampleQuery($properties: [PropertyFilter!]){
aggregatedHeliconeRequest(properties: $properties) {
costUSD
}
}
"""
print(query)
variables = {
"filters": [
{
"property": {
"value": {"equals": os.environ.get("AGENT_NAME")},
"name": "agent",
}
},
{
"property": {
"value": {"equals": BENCHMARK_START_TIME},
"name": "benchmark_start_time",
}
},
{"property": {"value": {"equals": challenge}, "name": "challenge"}},
]
}
print(json.dumps(variables, indent=4))
operation_name = "ExampleQuery"
data = None
response = None
try:
response = requests.post(
url,
headers=headers,
json={
"query": query,
"variables": variables,
"operationName": operation_name,
},
)
data = response.json()
except requests.HTTPError as http_err:
print(f"HTTP error occurred: {http_err}")
return None # Re-raise the exception to stop execution
except json.JSONDecodeError:
print(f"Invalid JSON response: {response.text if response else 'No response'}")
return None
except Exception as err:
print(f"Other error occurred: {err}")
return None
if data is None or data.get("data") is None:
print("Invalid response received from server: no data")
return None
try:
return (
data.get("data", {})
.get("aggregatedHeliconeRequest", {})
.get("costUSD", None)
)
except Exception as err:
print(f"Error occurred while parsing response: {err}")
return None