|
|
import json |
|
|
import os |
|
|
import streamlit as st |
|
|
import random |
|
|
import time |
|
|
import requests |
|
|
from dotenv import load_dotenv |
|
|
|
|
|
load_dotenv() |
|
|
|
|
|
|
|
|
def response_generator(query): |
|
|
global conversation_id |
|
|
word = '' |
|
|
|
|
|
res =requests.post( |
|
|
f"{os.environ['api_url']}", |
|
|
headers={ |
|
|
'Content-Type': 'application/json', |
|
|
'Authorization': f"Bearer {os.environ['api_key']}" |
|
|
}, |
|
|
json={ |
|
|
"inputs": {}, |
|
|
"query": query, |
|
|
"response_mode": "blocking", |
|
|
"conversation_id": st.session_state['conversation_id'], |
|
|
"user": "abc-123", |
|
|
} |
|
|
) |
|
|
if res.status_code == 200: |
|
|
data = json.loads(res.text) |
|
|
|
|
|
st.session_state['conversation_id'] = data['conversation_id'] |
|
|
|
|
|
answer = data.get('answer','Unable to answer at the moment') |
|
|
else: |
|
|
answer = 'Error' |
|
|
|
|
|
for word in answer.split(): |
|
|
yield word + " " |
|
|
time.sleep(0.05) |
|
|
|
|
|
st.title("Ask Amy") |
|
|
|
|
|
if 'conversation_id' not in st.session_state: |
|
|
st.session_state['conversation_id'] = '' |
|
|
|
|
|
|
|
|
if "messages" not in st.session_state: |
|
|
st.session_state.messages = [] |
|
|
|
|
|
|
|
|
for message in st.session_state.messages: |
|
|
with st.chat_message(message["role"]): |
|
|
st.markdown(message["content"]) |
|
|
|
|
|
|
|
|
if prompt := st.chat_input("What is up?"): |
|
|
|
|
|
st.session_state.messages.append({"role": "user", "content": prompt}) |
|
|
|
|
|
with st.chat_message("user"): |
|
|
st.markdown(prompt) |
|
|
|
|
|
|
|
|
with st.chat_message("assistant"): |
|
|
response = st.write_stream(response_generator(prompt)) |
|
|
|
|
|
st.session_state.messages.append({"role": "assistant", "content": response}) |