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
|`name`| text || User-defined name for the model. |
60
-
|`provider`| text || Name of the model provider (as found in [aidb.model_providers](#aidbmodel_providers)). |
61
-
|`config`| jsonb | '{}'::jsonb | Optional configuration for the model provider. May include model-specific parameters such as `model`, `url`, and TLS options (e.g., `tls_config`).|
62
-
|`credentials`| jsonb | '{}'::jsonb | Optional credentials for the model provider. |
63
-
|`replace_credentials`| boolean | false | If true, replaces the credentials for the model provider. If false, the credentials aren't overwritten. |
|`name`| text || User-defined name for the model. |
60
+
|`provider`| text || Name of the model provider (as found in [aidb.model_providers](#aidbmodel_providers)). |
61
+
|`config`| jsonb | '{}'::jsonb | Optional configuration for the model provider. May include model-specific parameters such as `model`, `url`, and TLS options (e.g., `tls_config`).|
62
+
|`credentials`| jsonb | '{}'::jsonb | Optional credentials for the model provider. |
63
+
|`replace_credentials`| boolean | false | If true, replaces the credentials for the model provider. If false, the credentials aren't overwritten. |
64
64
65
65
66
66
#### Example
@@ -110,14 +110,14 @@ Returns the configuration for a model in the registry.
<tr><td><details><summary>Bug fixes for knowledge base and preparer pipeline schema handling.</summary><hr/><p>The knowledge base and preparer pipeline now support arbitrary Postgres schemas for source and destination tables/volumes.
21
+
A bug prevented users for configuring explicit schemas via Postgres qualified identifiers (<code>schema.name</code>) when referencing source or destination tables/volumes in the create pipeline calls. This bug is now fixed.</p>
22
+
</details></td><td></td></tr>
23
+
<tr><td><details><summary>Bug fix for knowledge base result accuracy.</summary><hr/><p>A bug in the batch-processing code for knowledge base pipelines would, under certain circumstances, lead to inaccurate results during retrieval.
24
+
This bug was introduced in the 4.0.0 release and is now fixed.</p>
25
+
</details></td><td></td></tr>
26
+
<tr><td><details><summary>Simplified model integration for HCP.</summary><hr/><p>External models, running on the HCP Model Serving infrastructure, can now be listed and integrated into AIDB with new helper functions <code>aidb.get_hcp_models()</code> and <code>aidb.create_hcp_model()</code>.</p>
27
+
</details></td><td></td></tr>
28
+
<tr><td><details><summary>Performance enhancement for embeddings processing with external models.</summary><hr/><p>When using external models for embeddings (e.g. with the nim_embeddings model adapter), AIDB performs additional API calls in order to probe the model service for the response type.
29
+
These calls are now skipped in most situations to reduce the overhead to a minimum when running embedding processing. AIDB will now use actual results to determine the response type.</p>
This is a minor release that includes a few bug fixes and enhancements to the knowledge base pipeline.
7
+
highlights: |
8
+
- Bug fixes and performance enhancements.
9
+
- Simplified model integration for HCP.
10
+
relnotes:
11
+
- relnote: Bug fixes for knowledge base and preparer pipeline schema handling.
12
+
details: |
13
+
The knowledge base and preparer pipeline now support arbitrary Postgres schemas for source and destination tables/volumes.
14
+
A bug prevented users for configuring explicit schemas via Postgres qualified identifiers (`schema.name`) when referencing source or destination tables/volumes in the create pipeline calls. This bug is now fixed.
15
+
jira: ""
16
+
addresses: ""
17
+
type: Enhancement
18
+
impact: Medium
19
+
- relnote: Bug fix for knowledge base result accuracy.
20
+
details: |
21
+
A bug in the batch-processing code for knowledge base pipelines would, under certain circumstances, lead to inaccurate results during retrieval.
22
+
This bug was introduced in the 4.0.0 release and is now fixed.
23
+
jira: "AID-425"
24
+
addresses: ""
25
+
type: Enhancement
26
+
impact: Medium
27
+
- relnote: Simplified model integration for HCP.
28
+
details: |
29
+
External models, running on the HCP Model Serving infrastructure, can now be listed and integrated into AIDB with new helper functions `aidb.get_hcp_models()` and `aidb.create_hcp_model()`.
30
+
jira: "AID-416"
31
+
addresses: ""
32
+
type: Enhancement
33
+
impact: Medium
34
+
- relnote: Performance enhancement for embeddings processing with external models.
35
+
details: |
36
+
When using external models for embeddings (e.g. with the nim_embeddings model adapter), AIDB performs additional API calls in order to probe the model service for the response type.
37
+
These calls are now skipped in most situations to reduce the overhead to a minimum when running embedding processing. AIDB will now use actual results to determine the response type.
0 commit comments