Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -6,8 +6,9 @@ with open("gcp-credentials.json", "w") as f:
|
|
6 |
f.write(gcp_credentials)
|
7 |
|
8 |
os.environ['GOOGLE_APPLICATION_CREDENTIALS'] = './gcp-credentials.json'
|
|
|
9 |
|
10 |
with gr.Blocks() as demo:
|
11 |
-
gr.Markdown(
|
12 |
|
13 |
demo.launch()
|
|
|
6 |
f.write(gcp_credentials)
|
7 |
|
8 |
os.environ['GOOGLE_APPLICATION_CREDENTIALS'] = './gcp-credentials.json'
|
9 |
+
credentials, project_id = google.auth.default()
|
10 |
|
11 |
with gr.Blocks() as demo:
|
12 |
+
gr.Markdown("")
|
13 |
|
14 |
demo.launch()
|