ThomasSimonini commited on
Commit
ed2a31a
·
1 Parent(s): f036f33

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -4,9 +4,11 @@ import os
4
  import requests
5
 
6
  hf_token = os.getenv("HF_TOKEN")
7
- api_url_7b = os.getenv("API_URL_LLAMA_7")
8
- api_url_13b = os.getenv("API_URL_LLAMA_13")
9
- api_url_70b = os.getenv("API_URL_LLAMA_70")
 
 
10
 
11
  headers = {
12
  'Content-Type': 'application/json',
 
4
  import requests
5
 
6
  hf_token = os.getenv("HF_TOKEN")
7
+ llama_7b = os.getenv("API_URL_LLAMA_7")
8
+ llama_13b = os.getenv("API_URL_LLAMA_13")
9
+ zephyr_7b = os.getenv("API_URL_ZEPHYR_7")
10
+
11
+ #api_url_70b = os.getenv("API_URL_LLAMA_70")
12
 
13
  headers = {
14
  'Content-Type': 'application/json',