Spaces:
Sleeping
Sleeping
File size: 1,800 Bytes
f6c62cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
import gradio as gr
import requests
import os # ํ๊ฒฝ ๋ณ์ ์ฌ์ฉ์ ์ํด ํ์
# Secrets์์ Private Space URL๊ณผ Access Token ์ฝ๊ธฐ
PRIVATE_SPACE_URL = os.getenv("PRIVATE_SPACE_URL")
HF_TOKEN = os.getenv("HF_TOKEN")
def fetch_actor_data():
if not PRIVATE_SPACE_URL:
return "Error: Private Space URL not found. Please check the Secrets configuration."
if not HF_TOKEN:
return "Error: Access token not found. Please check the Secrets configuration."
headers = {
"Authorization": f"Bearer {HF_TOKEN}"
}
try:
# Private Space์ /api/actor ์๋ํฌ์ธํธ๋ก ์์ฒญ
url = f"{PRIVATE_SPACE_URL}/api/actor"
response = requests.get(url, headers=headers)
if response.status_code == 200:
# ์ฑ๊ณต์ ์ผ๋ก ๋ฐ์ดํฐ๋ฅผ ๊ฐ์ ธ์จ ๊ฒฝ์ฐ
data = response.json()
# actor_id ์ถ์ถ
actor_ids = []
# JSON ๊ตฌ์กฐ๋ฅผ ์ํํ๋ฉฐ actor_id ์์ง
if "results" in data:
for item in data["results"]:
if "actor_id" in item:
actor_ids.append(item["actor_id"])
return f"Actor ID: {actor_ids}"
else:
# ์คํจํ ๊ฒฝ์ฐ ์ํ ์ฝ๋์ ์๋ฌ ๋ฉ์์ง ๋ฐํ
return f"Error {response.status_code}: {response.text}"
except Exception as e:
return f"Request failed: {str(e)}"
# Gradio ์ธํฐํ์ด์ค ์ ์
iface = gr.Interface(
fn=fetch_actor_data,
inputs=None, # ์
๋ ฅ๊ฐ ํ์ ์์
outputs="text", # ํ
์คํธ ๊ฒฐ๊ณผ ์ถ๋ ฅ
title="Fetch Actor Data",
description="Fetches actor data from the private Hugging Face Space using the /api/actor endpoint."
)
# ์ฑ ์คํ
if __name__ == "__main__":
iface.launch()
|