Skip to content

Commit 0daa773

Browse files
committed
Remove SimpleRAGChat and related codes, use AdvancedRAGChat for chat handling
1 parent 078bf66 commit 0daa773

File tree

2 files changed

+2
-99
lines changed

2 files changed

+2
-99
lines changed

src/fastapi_app/rag_advanced.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -129,9 +129,9 @@ async def run(
129129
),
130130
]
131131
else:
132-
# No results found with SQL search, fall back to the hybrid search
132+
# No results found with SQL search, fall back to the google search
133133
sources_content, thought_steps = await self.google_search(messages)
134-
else: # Hybrid search
134+
else: # Google search
135135
sources_content, thought_steps = await self.google_search(messages)
136136

137137
content = "\n".join(sources_content)

src/fastapi_app/rag_simple.py

-97
This file was deleted.

0 commit comments

Comments
 (0)