Update app.py
Browse files
app.py
CHANGED
@@ -16,6 +16,7 @@ from langchain_community.llms import HuggingFaceEndpoint
|
|
16 |
from langchain_openai import ChatOpenAI
|
17 |
import torch
|
18 |
import fitz
|
|
|
19 |
from dotenv import load_dotenv, set_key
|
20 |
|
21 |
load_dotenv(dotenv_path=".env")
|
@@ -198,7 +199,7 @@ def setup_gradio_interface():
|
|
198 |
db_btn = gr.Button("Create vector database")
|
199 |
with gr.Row():
|
200 |
db_progress = gr.Textbox(value="Not initialized", show_label=False) # label="Vector database status",
|
201 |
-
gr.Markdown("<style>body { font-size: 16px; }</style><b>Select Large Language Model (LLM) and input parameters</b>")
|
202 |
with gr.Row():
|
203 |
llm_btn = gr.Radio(list_llm_simple, label="Available LLMs", value = list_llm_simple[0], type="index") # info="Select LLM", show_label=False
|
204 |
with gr.Row():
|
@@ -215,7 +216,7 @@ def setup_gradio_interface():
|
|
215 |
llm_progress = gr.Textbox(value="Not initialized", show_label=False) # label="Chatbot status",
|
216 |
|
217 |
with gr.Column():
|
218 |
-
gr.Markdown("<b>Step
|
219 |
chatbot = gr.Chatbot(height=505)
|
220 |
with gr.Accordion("Relevent context from the source document", open=False):
|
221 |
with gr.Row():
|
|
|
16 |
from langchain_openai import ChatOpenAI
|
17 |
import torch
|
18 |
import fitz
|
19 |
+
from google.colab import userdata
|
20 |
from dotenv import load_dotenv, set_key
|
21 |
|
22 |
load_dotenv(dotenv_path=".env")
|
|
|
199 |
db_btn = gr.Button("Create vector database")
|
200 |
with gr.Row():
|
201 |
db_progress = gr.Textbox(value="Not initialized", show_label=False) # label="Vector database status",
|
202 |
+
gr.Markdown("<style>body { font-size: 16px; }</style><b>Step 2 - Select Large Language Model (LLM) and input parameters</b>")
|
203 |
with gr.Row():
|
204 |
llm_btn = gr.Radio(list_llm_simple, label="Available LLMs", value = list_llm_simple[0], type="index") # info="Select LLM", show_label=False
|
205 |
with gr.Row():
|
|
|
216 |
llm_progress = gr.Textbox(value="Not initialized", show_label=False) # label="Chatbot status",
|
217 |
|
218 |
with gr.Column():
|
219 |
+
gr.Markdown("<b>Step 3 - Chat with your Document</b>")
|
220 |
chatbot = gr.Chatbot(height=505)
|
221 |
with gr.Accordion("Relevent context from the source document", open=False):
|
222 |
with gr.Row():
|