Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -3,10 +3,13 @@ from ydata_profiling import ProfileReport
|
|
3 |
import streamlit as st
|
4 |
from streamlit_pandas_profiling import st_profile_report
|
5 |
from langchain.llms.openai import OpenAI
|
|
|
|
|
6 |
from langchain.agents.agent_types import AgentType
|
7 |
import time
|
8 |
import os
|
9 |
|
|
|
10 |
def main():
|
11 |
st.sidebar.title("App Options")
|
12 |
option = st.sidebar.selectbox("Choose an option", ["Data Profiling", "Personal Assistant"])
|
|
|
3 |
import streamlit as st
|
4 |
from streamlit_pandas_profiling import st_profile_report
|
5 |
from langchain.llms.openai import OpenAI
|
6 |
+
#from langchain.agents import create_csv_agent
|
7 |
+
from langchain_experimental.agents import create_csv_agent
|
8 |
from langchain.agents.agent_types import AgentType
|
9 |
import time
|
10 |
import os
|
11 |
|
12 |
+
|
13 |
def main():
|
14 |
st.sidebar.title("App Options")
|
15 |
option = st.sidebar.selectbox("Choose an option", ["Data Profiling", "Personal Assistant"])
|