Spaces:
Runtime error
Runtime error
File size: 11,617 Bytes
af88816 0b95305 af88816 ae4f2b9 f5592e0 bda78b5 204b64a ae4f2b9 af88816 8f375b7 af88816 bda78b5 af88816 a47657d ae4f2b9 15c1364 af88816 ddb0db1 2235a91 c84e824 c31a4f9 2235a91 35a07a1 2235a91 35a07a1 2235a91 7ad742f 2235a91 af88816 2235a91 af88816 1152738 2235a91 af88816 5d70525 af88816 8df2a69 af88816 1152738 8df2a69 af88816 047b281 1152738 ae4f2b9 0537052 ae4f2b9 fecd17f ae4f2b9 fecd17f ae4f2b9 f4d312b fecd17f c0d3f9e f4d312b ae4f2b9 1152738 ae4f2b9 bf0ee2f ae4f2b9 15c1364 ae4f2b9 15c1364 c0d3f9e ae4f2b9 bf0ee2f c0d3f9e bf0ee2f af88816 | 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 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 | from llama_index.core import (
VectorStoreIndex,
get_response_synthesizer,
GPTListIndex,
PromptHelper,
set_global_service_context,
Settings
)
from llama_index.core.retrievers import VectorIndexRetriever
from llama_index.core.query_engine import RetrieverQueryEngine
from llama_index.core.postprocessor import SimilarityPostprocessor
from llama_index.core.schema import Document
from llama_index.llms.anyscale import Anyscale
from llama_index.llms.anthropic import Anthropic
from llama_index.llms.openai import OpenAI
from llama_index.core.indices.service_context import ServiceContext
import urllib
import nltk
import os
import tiktoken
from nltk.tokenize import sent_tokenize
from llama_index.core.callbacks import CallbackManager, TokenCountingHandler
from llama_index.core import SimpleDirectoryReader
from llama_index.core.ingestion import IngestionPipeline
from llama_index.core.node_parser import TokenTextSplitter
from llama_index.core.llms import ChatMessage, MessageRole
from llama_index.core.prompts import ChatPromptTemplate
from llama_index.core.chat_engine.condense_question import CondenseQuestionChatEngine
from llama_index.core.callbacks import CallbackManager, LlamaDebugHandler
from llama_index.core.node_parser import SentenceSplitter
from llama_index.core.node_parser import SentenceWindowNodeParser
from llama_index.core.postprocessor import MetadataReplacementPostProcessor
from llama_index.core.postprocessor import LongContextReorder
from llama_index.postprocessor.rankgpt_rerank import RankGPTRerank
from llama_index.embeddings.mistralai import MistralAIEmbedding
from llama_index.core.node_parser import TokenTextSplitter
from llama_index.core.tools import FunctionTool, QueryEngineTool
from llama_index.core.agent import ReActAgent, AgentRunner
from langchain_community.utilities import SerpAPIWrapper
# from llama_index.tools.bing_search.base import BingSearchToolSpec
from pydantic import Field
from pypdf import PdfReader
import gradio as gr
mistral_api_key = os.environ['MISTRALAI_API_KEY']
# Functions
search = SerpAPIWrapper()
results = search.results("test")['organic_results']
def serpapi_search(query: str) -> str:
"""Useful for searching the internet for an answer not found in the documents but relevant to the context of the documents."""
search = SerpAPIWrapper()
results = search.results(query)['organic_results']
return results
serpapi_tool = FunctionTool.from_defaults(fn=serpapi_search)
def extract_text_from_pdf(pdf_path):
"""
Function to extract all text from a PDF file.
Args:
pdf_path (str): The file path to the PDF from which text is to be extracted.
Returns:
str: All extracted text concatenated together with each page separated by a newline.
"""
# Create a PDF reader object that opens and reads the PDF file at the specified path.
pdf_reader = PdfReader(pdf_path)
# Initialize a variable to store the text extracted from all pages.
full_text = ''
# Loop through each page in the PDF file.
for page in pdf_reader.pages:
# Extract text from the current page and concatenate it to the full_text variable.
# Add a newline character after each page's text to separate the text of different pages.
full_text += page.extract_text() + '\n'
# Return the complete text extracted from the PDF.
return full_text
def get_api_type(model_name):
if model_name == 'openai-gpt-4o':
return OpenAI(model='gpt-4o', temperature=0.7)
elif model_name == 'openai-gpt-4o-mini':
return OpenAI(model='gpt-4o-mini', temperature=0.7)
elif model_name == 'openai-gpt-4-turbo':
return OpenAI(model='gpt-4-turbo', temperature=0.7)
elif model_name == 'openai-gpt-3.5-turbo':
return OpenAI(model='gpt-3.5-turbo', temperature=0.7)
elif model_name == 'claude-sonnet-3.5':
return Anthropic(model="claude-3-5-sonnet-20240620")
elif model_name == 'claude-opus-3':
return Anthropic(model="claude-3-opus-20240229")
elif model_name == 'claude-sonnet-3':
return Anthropic(model="claude-3-sonnet-20240229")
elif model_name == 'claude-haiku-3':
return Anthropic(model="claude-3-haiku-20240307")
elif model_name == 'llama-3-70B':
return Anyscale(model='meta-llama/Meta-Llama-3-70B-Instruct')
elif model_name == 'llama-3-8B':
return Anyscale(model='meta-llama/Meta-Llama-3-70B-Instruct')
elif model_name == 'mistral-8x7B':
return Anyscale(model='mistralai/Mixtral-8x7B-Instruct-v0.1')
elif model_name == 'mistral-8x22B':
return Anyscale(model='mistralai/Mixtral-8x7B-Instruct-v0.1')
else:
raise NotImplementedError
def get_chat_engine(files, api_type, progress=gr.Progress()):
progress(0, desc="Uploading Documents...")
llm = get_api_type(api_type)
Settings.llm = llm
embed_model = MistralAIEmbedding(model_name='mistral-embed', api_key=mistral_api_key)
Settings.embed_model = embed_model
documents = SimpleDirectoryReader(input_files=files).load_data()
splitter = TokenTextSplitter(
chunk_size=1024,
chunk_overlap=20,
separator=" ",
)
progress(0.3, desc="Creating index...")
nodes = splitter.get_nodes_from_documents(documents)
index = VectorStoreIndex(nodes)
chat_text_qa_msgs = [
ChatMessage(
role=MessageRole.SYSTEM,
content=(
"""
% You are an expert on developing websites for contractors and explaining your expertise to a general audience.
% If a character or word limit is mentioned in the prompt, ADHERE TO IT.
% For example, if a user wants a summary of a business less than 750 characters, the summary must be less than 750 characters.
"""
),
),
ChatMessage(
role=MessageRole.USER,
content=(
"""
% You are an expert on developing websites for contractors and explaining your expertise to a general audience.
% Goal: Given the Context below, give a detailed and thorough answer to the following question without mentioning where you found the answer: {query_str}
% Context:
```{context_str}```
% Instructions:"
Answer in a friendly manner.
Do not answer any questions that have no relevance to the context provided.
Do not include any instructions in your response.
Do not mention the context provided in your answer
ANSWER WITHOUT MENTIONING THE PROVIDED DOCUMENTS
YOU ARE NOT PERMITTED TO GIVE PAGE NUMBERS IN YOUR ANSWER UNDER ANY CIRCUMSTANCE
"""
),
),
]
text_qa_template = ChatPromptTemplate(chat_text_qa_msgs)
reorder = LongContextReorder()
# postprocessor = SimilarityPostprocessor(similarity_cutoff=0.7)
rerank = RankGPTRerank(top_n=5, llm=OpenAI(model="gpt-3.5-turbo"))
progress(0.5, desc="Creating LLM...")
dna_query_engine = index.as_query_engine(
node_postprocessors=[
reorder,
MetadataReplacementPostProcessor(target_metadata_key="window"),
rerank
],
similarity_top_k=15)
dna_tool = QueryEngineTool.from_defaults(
query_engine=dna_query_engine,
name="Documents Query Engine",
description="Provides information about the context documents. Use to answer questions that concern the documents",
return_direct=True,
)
# tool_spec = BingSearchToolSpec()
chat_engine = ReActAgent.from_tools([serpapi_tool, dna_tool], llm=llm, verbose=False)
# except:
# tool_list = tool_spec.to_tool_list()
# tool_list.append(dna_tool)
# chat_engine = AgentRunner.from_llm(tool_list, llm=llm)
progress(1, desc="LLM Created")
return chat_engine, dna_query_engine, "LLM Created"
def get_new_chat_engine(files, api_type):
llm = get_api_type(api_type)
Settings.llm = llm
embed_model = MistralAIEmbedding(model_name='mistral-embed', api_key=mistral_api_key)
Settings.embed_model = embed_model
documents = SimpleDirectoryReader(input_files=files).load_data()
splitter = TokenTextSplitter(
chunk_size=1024,
chunk_overlap=20,
separator=" ",
)
nodes = splitter.get_nodes_from_documents(documents)
index = VectorStoreIndex(nodes)
chat_text_qa_msgs = [
ChatMessage(
role=MessageRole.SYSTEM,
content=(
"""
% You are an expert on developing websites for contractors and explaining your expertise to a general audience.
% If a character or word limit is mentioned in the prompt, ADHERE TO IT.
% For example, if a user wants a summary of a business less than 750 characters, the summary must be less than 750 characters.
"""
),
),
ChatMessage(
role=MessageRole.USER,
content=(
"""
% You are an expert on developing websites for contractors and explaining your expertise to a general audience.
% Goal: Given the Context below, give a detailed and thorough answer to the following question without mentioning where you found the answer: {query_str}
% Context:
```{context_str}```
% Instructions:"
Answer in a friendly manner.
Do not answer any questions that have no relevance to the context provided.
Do not include any instructions in your response.
Do not mention the context provided in your answer
ANSWER WITHOUT MENTIONING THE PROVIDED DOCUMENTS
YOU ARE NOT PERMITTED TO GIVE PAGE NUMBERS IN YOUR ANSWER UNDER ANY CIRCUMSTANCE
"""
),
),
]
text_qa_template = ChatPromptTemplate(chat_text_qa_msgs)
reorder = LongContextReorder()
# postprocessor = SimilarityPostprocessor(similarity_cutoff=0.7)
rerank = RankGPTRerank(top_n=5, llm=OpenAI(model="gpt-4o-mini"))
dna_query_engine = index.as_query_engine(
node_postprocessors=[
reorder,
MetadataReplacementPostProcessor(target_metadata_key="window"),
rerank
],
similarity_top_k=15)
dna_tool = QueryEngineTool.from_defaults(
query_engine=dna_query_engine,
name="Documents Query Engine",
description="Provides information about the context documents, Use to answer questions that concern the documents",
return_direct=True,
)
chat_engine = ReActAgent.from_tools([serpapi_tool, dna_tool], llm=llm, verbose=False)
return chat_engine
|