llamazookeeper commited on
Commit
13590a8
1 Parent(s): f64588d
Files changed (2) hide show
  1. app.py +15 -0
  2. requirements.txt +7 -0
app.py ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ import torch
4
+ #torch.set_default_device('cuda')
5
+
6
+
7
+ st.set_page_config(page_title="Tesla Cases", page_icon="", layout="wide")
8
+
9
+ st.title("Tesla Alerts \n\n **Tesla Alerts Insights at Your Fingertip**")
10
+
11
+ #st.balloons()
12
+
13
+ st.success("""
14
+ If you'd like to learn more about the technical details of Tesla cases, check out the LlamaIndex:
15
+ """)
requirements.txt ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ llama-index
2
+ llama_hub
3
+ langchain
4
+ transformers
5
+ accelerate
6
+ openai
7
+ streamlit