NameIsJACK commited on
Commit
b432a1e
·
1 Parent(s): f44d44d

testing secrets

Browse files
Files changed (2) hide show
  1. app.py +1 -1
  2. config.py +9 -0
app.py CHANGED
@@ -1,5 +1,5 @@
1
  from fastapi import FastAPI
2
-
3
  app = FastAPI()
4
 
5
  @app.get("/")
 
1
  from fastapi import FastAPI
2
+ from config import settings
3
  app = FastAPI()
4
 
5
  @app.get("/")
config.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ from pydantic import BaseSettings
2
+ import os
3
+
4
+
5
+ class settings (BaseSettings):
6
+ huggingface_key : str = os.environ.get('HUGGINGFACE_API_KEY')
7
+
8
+
9
+ settings = settings()