DrishtiSharma commited on
Commit
1d7ab61
Β·
verified Β·
1 Parent(s): ddab86e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -45,6 +45,9 @@ class LLMCallbackHandler(BaseCallbackHandler):
45
  # callbacks=[LLMCallbackHandler(Path("prompts.jsonl"))],
46
  #)
47
 
 
 
 
48
  # Initialize LLM
49
  llm = None
50
 
@@ -68,10 +71,7 @@ elif model_choice == "GPT-4o":
68
  llm = None
69
  else:
70
  llm = ChatOpenAI(api_key=openai_api_key, model="gpt-4o")
71
-
72
- st.title("Blah Blah App Using CrewAI πŸš€")
73
- st.write("Analyze datasets using natural language queries powered by SQL and CrewAI.")
74
-
75
  # Initialize session state for data persistence
76
  if "df" not in st.session_state:
77
  st.session_state.df = None
 
45
  # callbacks=[LLMCallbackHandler(Path("prompts.jsonl"))],
46
  #)
47
 
48
+ st.title("Blah Blah App Using CrewAI πŸš€")
49
+ st.write("Analyze datasets using natural language queries powered by SQL and CrewAI.")
50
+
51
  # Initialize LLM
52
  llm = None
53
 
 
71
  llm = None
72
  else:
73
  llm = ChatOpenAI(api_key=openai_api_key, model="gpt-4o")
74
+
 
 
 
75
  # Initialize session state for data persistence
76
  if "df" not in st.session_state:
77
  st.session_state.df = None