vineeth N commited on
Commit
eaa6b6a
·
verified ·
1 Parent(s): 9eac31e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -7,9 +7,10 @@ GROQ_API_KEY='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'
7
  llm = ChatGroq(temperature=0, model_name='llama-3.1-8b-instant', groq_api_key=GROQ_API_KEY)
8
 
9
 
10
- st.title("LLM Bot with ChatGroq")
11
 
12
  # Initialize chat history
 
13
  if "messages" not in st.session_state:
14
  st.session_state.messages = []
15
 
 
7
  llm = ChatGroq(temperature=0, model_name='llama-3.1-8b-instant', groq_api_key=GROQ_API_KEY)
8
 
9
 
10
+ st.title("Botyy")
11
 
12
  # Initialize chat history
13
+
14
  if "messages" not in st.session_state:
15
  st.session_state.messages = []
16