Spaces:
Runtime error
Runtime error
File size: 3,343 Bytes
6ad7bf1 9bdb159 6ad7bf1 4c8264f 9bdb159 6ad7bf1 4c8264f 9bdb159 6ad7bf1 9bdb159 6ad7bf1 9bdb159 6ad7bf1 9bdb159 6ad7bf1 4c8264f 6ad7bf1 781f640 6ad7bf1 9bdb159 6ad7bf1 9bdb159 6ad7bf1 781f640 6ad7bf1 781f640 6ad7bf1 4c8264f 6ad7bf1 4c8264f 6ad7bf1 4c8264f 6ad7bf1 9bdb159 781f640 9bdb159 781f640 9bdb159 6ad7bf1 9bdb159 781f640 9bdb159 6ad7bf1 9bdb159 |
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 |
import os
from fast_dash import FastDash, Fastify, dcc, dmc
from embedchain import App
from embedchain.config import QueryConfig
from string import Template
# Define app configurations
PROMPT = Template(
"""Use the given context to answer the question at the end.
If you don't know the answer, say so, but don't try to make one up.
At the end of the answer, also give the sources as a bulleted list.
Display the answer as markdown text.
Context: $context
Query: $query
Answer:"""
)
query_config = QueryConfig(
template=PROMPT, number_documents=5, max_tokens=2000, model="gpt-4"
)
# Define components
openai_api_key_component = dmc.PasswordInput(
placeholder="API Key",
description="Get yours at https://platform.openai.com/account/api-keys",
required=True,
)
web_page_urls_component = dmc.MultiSelect(
description="Include all the reference web URLs",
placeholder="Enter URLs separated by commas",
searchable=True,
creatable=True,
)
text_component = dmc.Textarea(
placeholder="Write your query here",
autosize=True,
minRows=4,
description="Any additional information that could be useful",
)
query_component = dmc.Textarea(
placeholder="Write your query here",
autosize=True,
minRows=4,
required=True,
description="Write your query here",
)
answer_component = dcc.Markdown(
style={"text-align": "left", "padding": "1%"}, link_target="_blank"
)
def explore_your_knowledge_base(
openai_api_key: openai_api_key_component,
web_page_urls: web_page_urls_component,
youtube_urls: web_page_urls_component,
pdf_urls: web_page_urls_component,
text: text_component,
query: text_component,
) -> answer_component:
"""
Input your sources and let GPT4 find answers. Built with Fast Dash.
This app uses embedchain.ai, which abstracts the entire process of loading and chunking datasets, creating embeddings, and storing them in a vector database.
Embedchain itself uses Langchain and OpenAI's ChatGPT API.
"""
answer_suffix = ""
if not openai_api_key:
return "Did you forget adding your OpenAI API key? If you don't have one, you can get it [here](https://platform.openai.com/account/api-keys)."
if not query:
return "Did you forget writing your query in the query box?"
os.environ["OPENAI_API_KEY"] = openai_api_key
app = App()
try:
if web_page_urls:
[app.add("web_page", url) for url in web_page_urls]
if youtube_urls:
[app.add("youtube_video", url) for url in youtube_urls]
if pdf_urls:
[app.add("pdf_file", url) for url in pdf_urls]
if text:
app.add_local("text", text)
except Exception as e:
print(str(e))
answer_suffix = "I couldn't analyze some sources. If you think this is an error, please try again later or make a suggestion [here](https://github.com/dkedar7/embedchain-fastdash/issues)."
answer = app.query(query, query_config)
answer = f"""{answer}
{answer_suffix}
"""
return answer
# Build app (this is all it takes!). Fast Dash understands what it needs to do.
app = FastDash(
explore_your_knowledge_base,
github_url="https://github.com/dkedar7/embedchain-fastdash",
)
server = app.server
if __name__ == "__main__":
app.run()
|