Spaces:
Runtime error
Runtime error
Update src/mongo_search.py
Browse files- src/mongo_search.py +1 -1
src/mongo_search.py
CHANGED
@@ -10,7 +10,7 @@ class MongoSearch:
|
|
10 |
|
11 |
self.collection = collection
|
12 |
self.embedding_model = OpenAIEmbeddings(model=embedding_model)
|
13 |
-
self.llm = ChatOpenAI(model="gpt-4o-
|
14 |
self.parser = JsonOutputParser()
|
15 |
self.search_index = search_index
|
16 |
self.index_variable = index_variable
|
|
|
10 |
|
11 |
self.collection = collection
|
12 |
self.embedding_model = OpenAIEmbeddings(model=embedding_model)
|
13 |
+
self.llm = ChatOpenAI(model="gpt-4o-2024-08-06", temperature=0)
|
14 |
self.parser = JsonOutputParser()
|
15 |
self.search_index = search_index
|
16 |
self.index_variable = index_variable
|