adaptiveaiventures commited on
Commit
d9fbb15
·
verified ·
1 Parent(s): 1b4a88d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -1,9 +1,12 @@
1
  from fastapi import FastAPI
2
  import requests
 
3
 
4
  app = FastAPI()
5
 
6
- # TGI API URL
 
 
7
  API_URL = "http://localhost:8080/generate"
8
 
9
  @app.post("/generate")
@@ -16,5 +19,6 @@ async def generate_text(prompt: str, max_tokens: int = 200, temperature: float =
16
  "return_full_text": False
17
  }
18
  }
19
- response = requests.post(API_URL, json=payload)
 
20
  return response.json()
 
1
  from fastapi import FastAPI
2
  import requests
3
+ import os
4
 
5
  app = FastAPI()
6
 
7
+ # Get token from environment variables (set in Hugging Face Secrets)
8
+ HF_TOKEN = os.getenv("HUGGING_FACE_HUB_TOKEN")
9
+
10
  API_URL = "http://localhost:8080/generate"
11
 
12
  @app.post("/generate")
 
19
  "return_full_text": False
20
  }
21
  }
22
+ headers = {"Authorization": f"Bearer {HF_TOKEN}"}
23
+ response = requests.post(API_URL, json=payload, headers=headers)
24
  return response.json()