xsa-dev commited on
Commit
6bf19a4
·
1 Parent(s): a45f8b7
Files changed (1) hide show
  1. app.py +2 -0
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()