File size: 3,068 Bytes
5e20c77
10330bc
5e20c77
5b3feea
c0c01c6
 
 
5e20c77
c0c01c6
 
 
 
 
5e20c77
5b3feea
c0c01c6
 
 
 
 
5b3feea
 
 
 
 
 
 
 
 
 
 
10330bc
5e20c77
 
 
5b3feea
5e20c77
c0c01c6
 
 
5b3feea
 
c0c01c6
10330bc
c0c01c6
99a3f34
c0c01c6
10330bc
c0c01c6
 
10330bc
c0c01c6
10330bc
 
c0c01c6
10330bc
c0c01c6
10330bc
c0c01c6
 
 
 
 
 
99a3f34
c0c01c6
 
5b3feea
 
c0c01c6
 
 
 
10330bc
1cb46fc
c0c01c6
 
1cb46fc
c0c01c6
1cb46fc
c0c01c6
1cb46fc
c0c01c6
1cb46fc
99a3f34
c0c01c6
 
1cb46fc
c0c01c6
 
1cb46fc
c0c01c6
1cb46fc
c0c01c6
1cb46fc
c0c01c6
1cb46fc
c0c01c6
99a3f34
 
c0c01c6
99a3f34
1cb46fc
c0c01c6
 
 
 
 
1cb46fc
 
99a3f34
10330bc
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
import os
import logging


#export HNSWLIB_NO_NATIVE = 1

from langchain.document_loaders import PyPDFDirectoryLoader, TextLoader
from langchain.text_splitter import RecursiveCharacterTextSplitter

from langchain.vectorstores import Chroma
from langchain.memory import ChatMessageHistory, ConversationBufferMemory
from langchain.chains import ConversationalRetrievalChain
from langchain.chat_models import ChatOpenAI
import chainlit as cl
from src.config import Config
from src.utils import get_docsearch, get_source

# text_splitter = RecursiveCharacterTextSplitter(chunk_size=1000, chunk_overlap=100)
# embeddings = OpenAIEmbeddings()

welcome_message = """Welcome to Your Document Reader!

Here to assist you with any questions you have about a file. You can upload a file and ask me questions related to its content. Here's how you can get started:

1. Click on the file upload button to share a document or image.
2. Once the file is uploaded, feel free to ask me any questions about its content.
3. I'll do my best to provide information or insights based on the uploaded file.

If you need help or have any specific queries, type "help" at any time.

Let's get the conversation started! """


@cl.on_chat_start
async def start():
    await cl.Message("YOU ARE IN").send()
    files = None
    files = await cl.AskFileMessage(
        content=welcome_message,
        accept=["text/plain", "application/pdf"],
        max_size_mb=Config.max_size_mb,
        timeout=Config.timeout
    ).send()

    logging.info("file uploaded")

    file = files[0]

    msg = cl.Message(content=f"Processing {file.name}")
    await msg.send()

    logging.info("file processing")

    
    docsearch = await cl.make_async(get_docsearch)(file)

    message_history = ChatMessageHistory()

    memory = ConversationBufferMemory(
        memory_key="chat_history",
        output_key="answer",
        chat_memory=message_history,
        return_messages=True
    )

    ## create chain that uses chroma vector store
    chain = ConversationalRetrievalChain.from_llm(
        ChatOpenAI(model_name=Config.model_name,temperature=Config.temperature, streaming=Config.streaming),
        chain_type=Config.chain_type,
        retriever=docsearch.as_retriever(),
        memory=memory,
        return_source_documents=True,
    )


    msg.content = f"Processing {file.name} completed. Start asking questions!"
    await msg.update()

    logging.info("file processed success")

    cl.user_session.set("chain",chain)

    logging.info("saved chain in currrent session")


@cl.on_message
async def main(message: cl.Message):

    ## get chain
    chain = cl.user_session.get("chain")

    logging.info("loaded chain")

    cb = cl.AsyncLangchainCallbackHandler()

    logging.info("loaded callbacks")

    res = await chain.acall(message.content, callbacks=[cb])

    answer = res["answer"]
    source_documents = res["source_documents"]

    
    
    text_elements = get_source(answer, source_documents)
    await cl.Message(content=answer, elements=text_elements).send()