Spaces:
Running
Running
Upload 4 files
Browse files- .gitignore +0 -0
- app.py +3 -0
- config.yaml +3 -0
- requirements.txt +5 -3
.gitignore
ADDED
File without changes
|
app.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
st.title('AI-powered Scientific Research Companion')
|
config.yaml
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
mcp_servers:
|
2 |
+
web_search: http://localhost:3000
|
3 |
+
pubmed: http://localhost:3001
|
requirements.txt
CHANGED
@@ -1,3 +1,5 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
|
|
|
|
|
1 |
+
fastapi
|
2 |
+
uvicorn
|
3 |
+
requests
|
4 |
+
chromadb
|
5 |
+
streamlit
|