soiz commited on
Commit
c682aab
·
verified ·
1 Parent(s): 8edc7f0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -1,4 +1,8 @@
 
1
  import gradio as gr
2
 
3
- # Switch to the new method as per the deprecation warning
4
- gr.load("models/often", alias="removebg").launch()
 
 
 
 
1
+ import os
2
  import gradio as gr
3
 
4
+ # 環境変数からAPIキーを取得
5
+ api_token = os.getenv("HF_API_KEY")
6
+
7
+ # Hugging FaceモデルをAPIトークンで読み込む
8
+ gr.load("models/often/removebg", api_key=api_token).launch()