Spaces:
Sleeping
Sleeping
Update main.py
Browse files
main.py
CHANGED
@@ -8,11 +8,11 @@ app = Flask(__name__)
|
|
8 |
print("Hello welcome to Sema AI", flush=True) # Flush to ensure immediate output
|
9 |
|
10 |
# Get Hugging Face credentials from environment variables
|
11 |
-
|
12 |
-
|
13 |
|
14 |
-
email = "[email protected]"
|
15 |
-
password = "@Tri@n@th@1"
|
16 |
print(f"email is {email} and password is {password}", flush=True)
|
17 |
|
18 |
@app.route("/")
|
|
|
8 |
print("Hello welcome to Sema AI", flush=True) # Flush to ensure immediate output
|
9 |
|
10 |
# Get Hugging Face credentials from environment variables
|
11 |
+
email = os.getenv('HF_EMAIL')
|
12 |
+
password = os.getenv('HF_PASS')
|
13 |
|
14 |
+
#email = "[email protected]"
|
15 |
+
#password = "@Tri@n@th@1"
|
16 |
print(f"email is {email} and password is {password}", flush=True)
|
17 |
|
18 |
@app.route("/")
|