We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 078bf66 commit 0daa773Copy full SHA for 0daa773
src/fastapi_app/rag_advanced.py
@@ -129,9 +129,9 @@ async def run(
129
),
130
]
131
else:
132
- # No results found with SQL search, fall back to the hybrid search
+ # No results found with SQL search, fall back to the google search
133
sources_content, thought_steps = await self.google_search(messages)
134
- else: # Hybrid search
+ else: # Google search
135
136
137
content = "\n".join(sources_content)
src/fastapi_app/rag_simple.py
0 commit comments