You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
# Denodo AI SDK
4
4
5
-
Denodo AI SDK helps you quickly build AI chatbots and agents that answer questions using your enterprise data, combining search + generative AI for accurate, context-aware results.
5
+
Denodo AI SDK helps you quickly build AI chatbots and agents that answer questions using your enterprise data, combining similarity search + LLMs for accurate, context-aware results.
6
6
7
7
It connects to the Denodo Platform, works with popular LLMs and vector stores, and ships with a ready-to-run sample chatbot and simple APIs to get started fast.
@@ -64,7 +50,7 @@ class answerDataQuestionRequest(BaseModel):
64
50
description="A comma-separated list of tags to reduce the scope of the question to. If empty, all tags in the vector DB the user has permissions to will be considered."
65
51
)
66
52
allow_external_associations: bool=Field(
67
-
default=True,
53
+
default=False,
68
54
description="If False, views from associations will NOT be considered if they don't belong to the VDBs/Tags specified in vdp_database_names and vdp_tag_names. If no VDBs/Tags specified, all views from associations will be considered."
69
55
)
70
56
use_views: str=Field(
@@ -95,6 +81,10 @@ class answerDataQuestionRequest(BaseModel):
@@ -64,7 +50,7 @@ class answerMetadataQuestionRequest(BaseModel):
64
50
description="A comma-separated list of tags to reduce the scope of the question to. If empty, all tags in the vector DB the user has permissions to will be considered."
65
51
)
66
52
allow_external_associations: bool=Field(
67
-
default=True,
53
+
default=False,
68
54
description="If False, views from associations will NOT be considered if they don't belong to the VDBs/Tags specified in vdp_database_names and vdp_tag_names. If no VDBs/Tags specified, all views from associations will be considered."
Copy file name to clipboardExpand all lines: api/endpoints/answerQuestion.py
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -53,7 +53,7 @@ class answerQuestionRequest(BaseModel):
53
53
description="A comma-separated list of tags to reduce the scope of the question to. If empty, all tags in the vector DB the user has permissions to will be considered."
54
54
)
55
55
allow_external_associations: bool=Field(
56
-
default=True,
56
+
default=False,
57
57
description="If False, views from associations will NOT be considered if they don't belong to the VDBs/Tags specified in vdp_database_names and vdp_tag_names. If no VDBs/Tags specified, all views from associations will be considered."
58
58
)
59
59
use_views: str=Field(
@@ -85,6 +85,10 @@ class answerQuestionRequest(BaseModel):
0 commit comments