File size: 862 Bytes
d4ed260
 
b495e7e
d4ed260
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import streamlit as st
from PIL import Image
from lawchain import get_lpphelper_chain,process_llm_response

#st.title( "Lakna Reddy & Associates 🤖")
col1, mid, col2 = st.columns(3)
image = Image.open('lawimage2.jpg')
with col1:
    st.image(image, width=150)
with col2:
    st.markdown("## Lakna Reddy & Associates")    

question = st.text_input("Question: ")
@st.cache_resource
def load_qa_chain():
    chain = get_lpphelper_chain()
    return chain

if question:
    chain = load_qa_chain()
    #response = chain.run(question)
    #llm_response = process_llm_response(response)
    with st.spinner('Generating response...'):
        response = chain.invoke(question)
        print(response)
        #answer = response['result']
        answer = process_llm_response(response)
        st.header("Answer")        
        st.write(answer.replace("<pad>",""))