-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.py
More file actions
67 lines (54 loc) · 1.96 KB
/
Copy pathapp.py
File metadata and controls
67 lines (54 loc) · 1.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import streamlit as st
import os
from groq import Groq
from langchain.chains import ConversationChain
from langchain.chains.conversation.memory import ConversationBufferWindowMemory
from langchain_groq import ChatGroq
from dotenv import load_dotenv
# Load environment variables
load_dotenv()
groq_api_key = os.getenv('GROQ_API_KEY') # Use `getenv` to handle missing key gracefully
def main():
st.title("Groq Chat App")
# Sidebar for model selection and settings
st.sidebar.title('Select an LLM')
model = st.sidebar.selectbox(
'Choose a model',
['mixtral-8x7b-32768', 'llama2-70b-4096']
)
conversational_memory_length = st.sidebar.slider(
'Conversational memory length:', 1, 10, value=5
)
# Initialize memory for conversation
memory = ConversationBufferWindowMemory(k=conversational_memory_length)
# Input for user questions
user_question = st.text_area("Ask a question:")
# Manage chat history in session state
if 'chat_history' not in st.session_state:
st.session_state.chat_history = []
for message in st.session_state.chat_history:
memory.save_context(
{'input': message['human']},
{'output': message['AI']}
)
# Initialize the Groq chat object
if not groq_api_key:
st.error("GROQ_API_KEY is not set in the environment.")
return
groq_chat = ChatGroq(
groq_api_key=groq_api_key,
model_name=model
)
# Set up the conversation chain
conversation = ConversationChain(
llm=groq_chat,
memory=memory
)
# Handle user input and generate responses
if user_question:
response = conversation(user_question)
message = {'human': user_question, 'AI': response['response']}
st.session_state.chat_history.append(message)
st.write("Chatbot:", response['response'])
if __name__ == "__main__":
main()