@tiledesk/tiledesk-server 2.13.0 → 2.13.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3 -0
- package/deploy.sh +1 -1
- package/package.json +1 -1
- package/services/aiService.js +1 -1
package/CHANGELOG.md
CHANGED
package/deploy.sh
CHANGED
package/package.json
CHANGED
package/services/aiService.js
CHANGED
@@ -200,7 +200,7 @@ class AiService {
|
|
200
200
|
|
201
201
|
askNamespace(data) {
|
202
202
|
let base_url = kb_endpoint_qa;
|
203
|
-
if (data.hybrid) {
|
203
|
+
if (data.hybrid || data.search_type === 'hybrid') {
|
204
204
|
base_url = kb_endpoint_qa_gpu;
|
205
205
|
}
|
206
206
|
winston.debug("[OPENAI SERVICE] kb endpoint: " + base_url);
|