Spaces:
Sleeping
Sleeping
File size: 5,883 Bytes
823b9f5 |
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 |
import gradio as gr
from EurLexChat import EurLexChat
import yaml
import random
import string
import argparse
import os
openai_org_key = os.getenv("OPENAI_ORG_KEY")
openai_key = os.getenv("OPENAI_KEY")
ui_pwd = os.getenv("pwd")
ui_user = os.getenv("user")
qdrant_url=os.getenv("url")
qdrant_key=os.getenv("qdrant_key")
def generate_random_string(length):
# Generate a random string of the specified length
# using letters and numbers
characters = string.ascii_letters + string.digits
random_string = ''.join(random.choice(characters) for _ in range(length))
return random_string
class Documents():
def __init__(self) -> None:
self.documents = []
parser = argparse.ArgumentParser(description="Chat-eur-lex ui")
parser.add_argument('--config_path',
dest='config_path',
metavar='config_path',
type=str,
help='The path to the config file that contains all the settings for the chat engine' ,
default='config.yaml')
args = parser.parse_args()
# Read config file
with open(args.config_path, 'r') as file:
config = yaml.safe_load(file)
config["embeddings"]["kwargs"]["openai_api_key"] = openai_key
config["embeddings"]["kwargs"]["openai_organization"] = openai_org_key
config["llm"]["kwargs"]["openai_api_key"] = openai_key
config["llm"]["kwargs"]["openai_organization"] = openai_org_key
config["vectorDB"]["kwargs"]["url"] = qdrant_url
config["vectorDB"]["kwargs"]["api_key"] = qdrant_key
chat = EurLexChat(config=config)
docs = Documents()
def remove_doc(btn):
docs.documents.pop(btn)
new_accordions, new_texts = set_new_docs_ui(docs.documents)
return [*new_accordions, *new_texts]
def get_answer(message, history, session_id):
s = session_id
if len(history) == 0:
docs.documents = chat.get_relevant_docs(question=message)
s = generate_random_string(7)
result = chat.get_answer(s, message, docs.documents)
history.append((message, result.answer))
if result.new_documents:
docs.documents = result.new_documents
accordions, list_texts = set_new_docs_ui(docs.documents)
return ['', history, gr.Column(scale=1, visible=True), *accordions, *list_texts, s]
def set_new_docs_ui(documents):
new_accordions = []
new_texts = []
for i in range(len(accordions)):
if i < len(documents):
new_accordions.append(gr.update(accordions[i].elem_id, label=f"{documents[i]['text'][:45]}...", visible=True, open=False))
new_texts.append(gr.update(list_texts[i].elem_id, value=f"{documents[i]['text']}...", visible=True))
else:
new_accordions.append(gr.update(accordions[i].elem_id, label="", visible=False))
new_texts.append(gr.update(list_texts[i].elem_id, value="", visible=False))
return new_accordions, new_texts
def clean_page():
docs.documents = []
accordions, list_texts = set_new_docs_ui(docs.documents)
return ["", [], None, *accordions, *list_texts]
list_texts = []
accordions = []
states = []
delete_buttons = []
block = gr.Blocks()
with block:
gr.Markdown("""
<h1><center>Chat-EUR-Lex prototype - Alpha version</center></h1>
""")
state = gr.State(value=None)
with gr.Row():
with gr.Column(scale=3):
chatbot = gr.Chatbot()
with gr.Row():
message = gr.Textbox(scale=10)
submit = gr.Button("Send", scale=1)
clear = gr.Button("Clear", scale=1)
with gr.Column(scale=1, visible=False) as col:
gr.Markdown("""<h3><center>Context documents</center></h3>""")
for i in range(config['vectorDB']['retriever_args']['search_kwargs']['k']):
with gr.Accordion(label="", elem_id=f'accordion_{i}', open=False) as acc:
list_texts.append(gr.Textbox("", elem_id=f'text_{i}', show_label=False, lines=10))
btn = gr.Button(f"Remove document")
delete_buttons.append(btn)
states.append(gr.State(i))
accordions.append(acc)
with gr.Row():
with gr.Column(scale=3):
gr.HTML("""""")
gr.HTML("""<div>
<h3>Disclaimer</h3>
<p><a href="https://github.com/Aptus-AI/chat-eur-lex/">Chat-EUR-Lex prototype</a> is a limited risk AI system realized by the
<a href="https://www.igsg.cnr.it/en/">Institute of Legal Informatics and Judicial Systems (IGSG-CNR)</a> and <a href="https://www.aptus.ai/">Aptus.AI</a>.
The prototype is an AI chatbot, therefore you are interacting with a machine, not with a human person. The prototype uses OpenAI GPT-4 language model. </p>
<p><a href="https://github.com/Aptus-AI/chat-eur-lex/">Chat-EUR-Lex project</a> is funded by the European Union within the framework of the NGI Search project under grant agreement No 101069364.
Views and opinions expressed are however those of the author(s) only and do not necessarily reflect those of the European Union or European Commission.
Contact us: <a href="mailto:chat-eur-lex@igsg.cnr.it">chat-eur-lex@igsg.cnr.it</a>.</p>
</div>""")
clear.click(clean_page, outputs=[message, chatbot, state, *accordions, *list_texts])
message.submit(get_answer, inputs=[message, chatbot, state], outputs=[message, chatbot, col, *accordions, *list_texts, state])
submit.click(get_answer, inputs=[message, chatbot, state], outputs=[message, chatbot, col, *accordions, *list_texts, state])
for i, b in enumerate(delete_buttons):
b.click(remove_doc, inputs=states[i], outputs=[*accordions, *list_texts])
block.launch(debug=True, auth=(ui_user, ui_pwd)) |