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": {}
})
Downloads last month
104
Safetensors
Model size
783M params
Tensor type
F32
·
Inference Providers NEW
This model is not currently available via any of the supported third-party Inference Providers, and the model is not deployed on the HF Inference API.