What should be indicated in the payload

Hello,
What should be indicated in the payload of the code below?

import requests

API_URL = “/static-proxy?url=https%3A%2F%2Fapi-inference.huggingface.co%2Fmodels%2Fsentence-transformers%2Fall-mpnet-base-v2%3C%2Fa%3E%E2%80%9D%3Cbr%3E headers = {“Authorization”: “Bearer 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”}

def query(payload):
response = requests.post(API_URL, headers=headers, json=payload)
return response.json()

output = query({
“inputs”: {
“source_sentence”: “That is a happy person”,
“sentences”: [
“That is a happy dog”,
“That is a very happy person”,
“Today is a sunny day”
]
},
})