Views
No views yet
1
2import requests
3
4API_URL = "https://i8nykns7vw253vx3.us-east-1.aws.endpoints.huggingface.cloud"
5headers = {
6 "Authorization": "Bearer hf_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
7 "Content-Type": "application/json"
8}
9
10def query(payload):
11 response = requests.post(API_URL, headers=headers, json=payload)
12 return response.json()
13
14# Prompt content: "Pẹlẹ o. Bawo ni o se wa?" ("Hello. How are you?")
15output = query({
16 "inputs": "Pẹlẹ o. Bawo ni o se wa?",
17})
18
19# Model response: "O dabo. O jẹ ọjọ ti o dara." ("I am safe. It was a good day.")
20print(output)