Update app.py
Browse files
app.py
CHANGED
|
@@ -45,12 +45,11 @@ def main():
|
|
| 45 |
os.environ["OPENAI_API_KEY"] = openai_key
|
| 46 |
os.environ["SERPER_API_KEY"] = serper_key
|
| 47 |
|
| 48 |
-
tab1, tab2, tab3, tab4
|
| 49 |
"Generate Report",
|
| 50 |
"View Report",
|
| 51 |
"Direct Research",
|
| 52 |
-
"Agent Interaction"
|
| 53 |
-
"Presentation View"
|
| 54 |
])
|
| 55 |
|
| 56 |
with tab1:
|
|
|
|
| 45 |
os.environ["OPENAI_API_KEY"] = openai_key
|
| 46 |
os.environ["SERPER_API_KEY"] = serper_key
|
| 47 |
|
| 48 |
+
tab1, tab2, tab3, tab4 = st.tabs([
|
| 49 |
"Generate Report",
|
| 50 |
"View Report",
|
| 51 |
"Direct Research",
|
| 52 |
+
"Agent Interaction"
|
|
|
|
| 53 |
])
|
| 54 |
|
| 55 |
with tab1:
|