Spaces:
Runtime error
Runtime error
updated
Browse files
app.py
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
import gradio as gr
|
|
|
2 |
|
3 |
title = "LLAMA2"
|
4 |
description = "LLAMA2"
|
@@ -16,4 +17,5 @@ gr.load(
|
|
16 |
article=article,
|
17 |
examples=examples,
|
18 |
enable_queue=True,
|
|
|
19 |
).launch()
|
|
|
1 |
import gradio as gr
|
2 |
+
import os
|
3 |
|
4 |
title = "LLAMA2"
|
5 |
description = "LLAMA2"
|
|
|
17 |
article=article,
|
18 |
examples=examples,
|
19 |
enable_queue=True,
|
20 |
+
api_key=os.getenv('api_key')
|
21 |
).launch()
|