Spaces:
Runtime error
Runtime error
File size: 5,494 Bytes
1f461a3 3492ee1 1f461a3 3492ee1 ad77d46 05883f8 7bc3983 ad77d46 7bc3983 ad77d46 7bc3983 ad77d46 7bc3983 ad77d46 7bc3983 ad77d46 7bc3983 05883f8 7bc3983 05883f8 7bc3983 ad77d46 7eacfd6 ad77d46 7eacfd6 ad77d46 7068f27 7bc3983 | 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 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 | # Import librairies
from pathlib import Path
import sys
import os
import openai
import llama_index
from llama_index import SimpleDirectoryReader, GPTListIndex, readers, LLMPredictor, PromptHelper, ServiceContext, GPTVectorStoreIndex, StorageContext, load_index_from_storage, download_loader, GPTRAKEKeywordTableIndex
from llama_index.retrievers import VectorIndexRetriever
from langchain import OpenAI
from llama_index.node_parser import SimpleNodeParser
import gradio as gr
from llama_index.optimization.optimizer import SentenceEmbeddingOptimizer
from langchain.chat_models import ChatOpenAI
from llama_index.readers import Document
import io
from PyPDF2 import PdfReader
from azure.storage.filedatalake import DataLakeServiceClient
from llama_index.indices.vector_store.base import GPTVectorStoreIndex
from adlfs import AzureBlobFileSystem
import time
# Blob storage parameters
account_name = 'apeazdlkini07s'
account_key = os.environ['account_key']
file_system_name = "gpt"
service_client = DataLakeServiceClient(account_url=f"https://{account_name}.dfs.core.windows.net", credential=account_key)
file_system_client = service_client.get_file_system_client(file_system_name)
AZURE_ACCOUNT_NAME = account_name
AZURE_ACCOUNT_KEY = account_key
assert AZURE_ACCOUNT_NAME is not None and AZURE_ACCOUNT_NAME != ""
fs = AzureBlobFileSystem(account_name=AZURE_ACCOUNT_NAME, account_key=AZURE_ACCOUNT_KEY)
def construct_index(doc):
## Define the prompt helper
# Set maximum input size
max_input_size = 400
# Set number of output tokens
num_output = 400 # About 300 words
#Set the chunk size limit
chunk_size_limit = 600 # About 450 words ~ 1 page
# Set maximum chunk overlap
max_chunk_overlap = 1
# Set chunk overlap ratio
chunk_overlap_ratio = 0.5
# Define prompt helper
prompt_helper = PromptHelper(max_input_size, num_output, max_chunk_overlap, chunk_size_limit, chunk_overlap_ratio)
## Define the LLM predictor
llm_predictor = LLMPredictor(llm=ChatOpenAI(temperature=0.4, model_name="gpt-4-32k", max_tokens=num_output))
## Define Service Context
service_context = ServiceContext.from_defaults(llm_predictor=llm_predictor, prompt_helper=prompt_helper)
## Indexation process and saving in the disk
index = GPTVectorStoreIndex.from_documents(doc, service_context=service_context)
# save index to disk
index.set_index_id("vector_index")
return index
def extract_text(file):
# Open the PDF file in binary mode
with open(file.name, 'rb') as f:
# Initialize a PDF file reader object
pdf_reader = PdfReader(f)
# Initialize an empty string for storing the extracted text
text = ''
# Loop through the number of pages
for page in pdf_reader.pages:
# Add the text from each page to the text string
text += page.extract_text()
return text, os.path.basename(file.name)
def ask_ai(doc, question):
text, file_name = extract_text(doc)
index = construct_index([Document(text)])
# Save index to Azure blob storage
index.storage_context.persist(f'gpt/storage_demo/{file_name}', fs=fs)
# Rebuild storage context
storage_context = StorageContext.from_defaults(persist_dir=f'gpt/storage_demo/{file_name}', fs=fs)
# Load index
index = load_index_from_storage(storage_context)
# Define the query & the querying method
query_engine = index.as_query_engine(optimizer=SentenceEmbeddingOptimizer(percentile_cutoff=0.8))
query = 'Your task is to answer a question on the report loaded and give insights to an investment team in Infrastructure. Make your response as clear and precise as possible. The question is:' + str(question)
response = query_engine.query(query)
# Display the chunks retrieved to produce the response
sources = []
for node in response.source_nodes:
node_text_start= 'START: ' + node.node.text.strip().replace('\n', ' ')[:100]
node_text_end = 'END: ' + node.node.text.strip().replace('\n', ' ')[-100:]
sources.append((node_text_start, node_text_end))
return response.response
header = """<center><b><p style=\"color: #E13C32; font-size: 36px;\">My Ardian Chatbot</p></b></center>
<i><p style=\"font-size: 16px; color: grey;\">Please make sure to formulate clear and precise questions and to add contextual information when possible. This will help the tool produce the most relevant response. Adopt an iterative approach and ask for more details or explanations when necessary.</br><i/></p>"""
footnote = "<p style=\"font-size: 16px; color: grey;\"> ⚠ The chatbot doesn't have a memory, it doesn't remember what it previously generated.</a></p>"
theme = gr.themes.Base(
primary_hue="red",
secondary_hue="gray",
font=['FuturaTOT', '=', '36px']
)
with gr.Blocks(theme=theme) as demo:
gr.Markdown(header)
download_button = gr.inputs.File(label="Upload a PDF")
chatbot = gr.Chatbot()
question = gr.Textbox(label='Question', info="Please write your question here.")
clear = gr.Button("Clear")
def respond(message, chat_history, doc):
bot_message = ask_ai(doc, message)
chat_history.append((message, bot_message))
time.sleep(2)
return "", chat_history
question.submit(respond, [question, chatbot, download_button], [question, chatbot])
clear.click(lambda: None, None, chatbot, queue=False)
gr.Markdown(footnote)
demo.launch(auth=(os.environ['username'],os.environ['password']))
|