File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " weaviate-agents" ,
3
- "version" : " 0.1.2 " ,
3
+ "version" : " 0.1.3 " ,
4
4
"description" : " JS/TS client for Weaviate Agents" ,
5
5
"exports" : " ./dist/index.js" ,
6
6
"type" : " module" ,
Original file line number Diff line number Diff line change @@ -8,13 +8,16 @@ export const mapCollections = (
8
8
name : collection . name ,
9
9
view_properties : collection . viewProperties ,
10
10
target_vector : collection . targetVector ,
11
+ tenant : collection . tenant ,
11
12
}
12
13
) ;
13
14
14
15
/** Configuration for a collection to query. */
15
16
export type QueryAgentCollectionConfig = {
16
17
/** The name of the collection to query. */
17
18
name : string ;
19
+ /** Tenant for the collection if multi-tenancy is enabled. */
20
+ tenant ?: string ;
18
21
/** List of of property names the agent has the ability to view for the collection. */
19
22
viewProperties ?: string [ ] ;
20
23
/** Target vector for the query if a collection uses named vector. */
You can’t perform that action at this time.
0 commit comments