--- library_name: transformers tags: [] --- ```python import requests API_URL = "https://xjbtlnqjwtoasdoj.us-east4.gcp.endpoints.huggingface.cloud" headers = { "Accept" : "application/json", "Content-Type": "application/json" } def query(payload): response = requests.post(API_URL, headers=headers, json=payload) return response.json() prefix = "Determine whether the context is sufficient to answer the question:" question = "name the unit of mass that is used in the same measurement system as gray per second?" context = "The gray per second and kilogram are both measurement units within the International System of Units, representing absorbed dose rate and mass, respectively." input_ = f"""{prefix} Question: {question} Context: {context}""" output = query({ "inputs": input_, "parameters": {} }) ```