Digital_Ink / app.py
Grey01's picture
Update app.py
ada2a35 verified
raw
history blame
940 Bytes
import gradio as gr
import streamlit as st
from gradio_client import Client
client = Client("https://b2e7dc20663679013e.gradio.live/")
st.title('Digital Ink')
# Initialize chat history
if "messages" not in st.session_state:
st.session_state.messages = []
# Display chat messages from history
for message in st.session_state.messages:
with st.chat_message(message["role"]):
st.markdown(message["content"])
def get_response(prompt):
#using gradio api client to generate response
response = client.predict(prompt,api_name="/predict")
return response
# User input
if prompt := st.chat_input("Ask Digital Ink..."):
# Display user message in chat message container
with st.chat_message("user"):
st.markdown(prompt)
# Generate and display assistant response in chat message container
with st.chat_message("assistant"):
response = get_response(prompt)
st.markdown(response)