Spaces:
Runtime error
Runtime error
File size: 4,051 Bytes
e0abc06 |
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 |
import os
import streamlit as st
from dotenv import load_dotenv
from io import BytesIO
from io import StringIO
import sys
import re
from langchain.agents import create_csv_agent
from langchain.chat_models import ChatOpenAI
from modules.history import ChatHistory
from modules.layout import Layout
from modules.utils import Utilities
from modules.sidebar import Sidebar
#To be able to update the changes made to modules in localhost,
#you can press the "r" key on the localhost page to refresh and reflect the changes made to the module files.
def reload_module(module_name):
import importlib
import sys
if module_name in sys.modules:
importlib.reload(sys.modules[module_name])
return sys.modules[module_name]
history_module = reload_module('modules.history')
layout_module = reload_module('modules.layout')
utils_module = reload_module('modules.utils')
sidebar_module = reload_module('modules.sidebar')
ChatHistory = history_module.ChatHistory
Layout = layout_module.Layout
Utilities = utils_module.Utilities
Sidebar = sidebar_module.Sidebar
def init():
load_dotenv()
st.set_page_config(layout="wide", page_icon="๐ฌ", page_title="ChatBot-CSV")
def main():
init()
layout, sidebar, utils = Layout(), Sidebar(), Utilities()
layout.show_header()
user_api_key = utils.load_api_key()
if not user_api_key:
layout.show_api_key_missing()
else:
os.environ["OPENAI_API_KEY"] = user_api_key
uploaded_file = utils.handle_upload()
if uploaded_file:
history = ChatHistory()
sidebar.show_options()
uploaded_file_content = BytesIO(uploaded_file.getvalue())
try:
chatbot = utils.setup_chatbot(
uploaded_file, st.session_state["model"], st.session_state["temperature"]
)
st.session_state["chatbot"] = chatbot
if st.session_state["ready"]:
response_container, prompt_container = st.container(), st.container()
with prompt_container:
is_ready, user_input = layout.prompt_form()
history.initialize(uploaded_file)
if st.session_state["reset_chat"]:
history.reset(uploaded_file)
if is_ready:
history.append("user", user_input)
output = st.session_state["chatbot"].conversational_chat(user_input)
history.append("assistant", output)
history.generate_messages(response_container)
if st.session_state["show_csv_agent"]:
query = st.text_input(label="Use CSV agent for precise information about the structure of your csv file / csv ํ์ผ ๊ตฌ์กฐ์ ๋ํ ์ ํํ ์ ๋ณด๋ฅผ ์ป์ผ๋ ค๋ฉด CSV ์์ด์ ํธ๋ฅผ ์ฌ์ฉํ์ญ์์ค", placeholder="ex : how many rows in my file ? / ์: ๋ด ํ์ผ์ ๋ช ๊ฐ์ ํ์ด ์์ต๋๊น?")
if query != "":
old_stdout = sys.stdout
sys.stdout = captured_output = StringIO()
agent = create_csv_agent(ChatOpenAI(temperature=0), uploaded_file_content, verbose=True, max_iterations=4)
result = agent.run(query)
sys.stdout = old_stdout
thoughts = captured_output.getvalue()
cleaned_thoughts = re.sub(r'\x1b\[[0-9;]*[a-zA-Z]', '', thoughts)
cleaned_thoughts = re.sub(r'\[1m>', '', cleaned_thoughts)
with st.expander("Show agent's thoughts"):
st.write(cleaned_thoughts)
st.write(result)
except Exception as e:
st.error(f"Error: {str(e)}")
sidebar.about()
if __name__ == "__main__":
main() |