Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -4,6 +4,11 @@ import requests
|
|
4 |
import json
|
5 |
import re
|
6 |
|
|
|
|
|
|
|
|
|
|
|
7 |
#from huggingface_hub.inference_api import InferenceApi
|
8 |
#inference = InferenceApi(repo_id="BenBranyon/tinyllama-sumbot-peft", token=os.environ['HF_TOKEN'])
|
9 |
headers = {"Authorization": f"Bearer {os.environ['HF_TOKEN']}"} #TOKEN HUGGING FACE
|
|
|
4 |
import json
|
5 |
import re
|
6 |
|
7 |
+
with open('./files/wave.css') as f:
|
8 |
+
css = f.read()
|
9 |
+
|
10 |
+
st.markdown(f'<style>{css}</style>', unsafe_allow_html=True)
|
11 |
+
|
12 |
#from huggingface_hub.inference_api import InferenceApi
|
13 |
#inference = InferenceApi(repo_id="BenBranyon/tinyllama-sumbot-peft", token=os.environ['HF_TOKEN'])
|
14 |
headers = {"Authorization": f"Bearer {os.environ['HF_TOKEN']}"} #TOKEN HUGGING FACE
|