Update summarizer.py
Browse files- summarizer.py +1 -1
summarizer.py
CHANGED
|
@@ -13,7 +13,7 @@ class PatientChartSummarizer:
|
|
| 13 |
"""
|
| 14 |
def __init__(self, vectordb: Chroma):
|
| 15 |
self.vectordb = vectordb
|
| 16 |
-
self.model = ChatOpenAI(model="gpt-4o", temperature=0
|
| 17 |
|
| 18 |
@tool("patient_chart_search")
|
| 19 |
def patient_chart_search(query: str) -> str:
|
|
|
|
| 13 |
"""
|
| 14 |
def __init__(self, vectordb: Chroma):
|
| 15 |
self.vectordb = vectordb
|
| 16 |
+
self.model = ChatOpenAI(model="gpt-4o", temperature=0)
|
| 17 |
|
| 18 |
@tool("patient_chart_search")
|
| 19 |
def patient_chart_search(query: str) -> str:
|