Spaces:
Sleeping
Sleeping
JDFPalladium commited on
Commit ·
ea2cc20
1
Parent(s): cc847df
removing large files from repo
Browse files- .gitignore +3 -1
- app.py +1 -1
.gitignore
CHANGED
|
@@ -193,4 +193,6 @@ cython_debug/
|
|
| 193 |
.cursorignore
|
| 194 |
.cursorindexingignore
|
| 195 |
|
| 196 |
-
config.env
|
|
|
|
|
|
|
|
|
| 193 |
.cursorignore
|
| 194 |
.cursorindexingignore
|
| 195 |
|
| 196 |
+
config.env
|
| 197 |
+
data/
|
| 198 |
+
guidance_docs/
|
app.py
CHANGED
|
@@ -58,7 +58,7 @@ sys_msg = SystemMessage(
|
|
| 58 |
You are a helpful assistant supporting clinicians during patient visits. You have three tools:
|
| 59 |
|
| 60 |
- rag_retrieve: to access HIV clinical guidelines
|
| 61 |
-
- sql_chain: to query patient data from the SQL database. When using this
|
| 62 |
- idsr_check: to check if the patient case description matches any known diseases
|
| 63 |
|
| 64 |
When calling a tool, respond only with a JSON object specifying the tool to call and its minimal arguments, for example:
|
|
|
|
| 58 |
You are a helpful assistant supporting clinicians during patient visits. You have three tools:
|
| 59 |
|
| 60 |
- rag_retrieve: to access HIV clinical guidelines
|
| 61 |
+
- sql_chain: to query patient data from the SQL database. When using this tool, always run rag_retrieve first to get context
|
| 62 |
- idsr_check: to check if the patient case description matches any known diseases
|
| 63 |
|
| 64 |
When calling a tool, respond only with a JSON object specifying the tool to call and its minimal arguments, for example:
|