Skip to content

Commit c534a27

Browse files
authored
Query agent (#1)
* add build * add query agent * use type instead of interface
1 parent a210135 commit c534a27

File tree

11 files changed

+807
-3
lines changed

11 files changed

+807
-3
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
dist

package.json

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,21 @@
11
{
2-
"name": "@weaviate/agents-client",
2+
"name": "@weaviate/agents",
33
"version": "0.0.1",
44
"description": "JS/TS client for Weaviate Agents",
5-
"scripts": {},
5+
"exports": "./dist/index.js",
6+
"type": "module",
7+
"scripts": {
8+
"build": "tsc"
9+
},
610
"keywords": [
711
"weaviate"
812
],
913
"author": "Weaviate",
10-
"license": "SEE LICENSE IN LICENSE"
14+
"license": "SEE LICENSE IN LICENSE",
15+
"peerDependencies": {
16+
"weaviate-client": "^3.5.2"
17+
},
18+
"devDependencies": {
19+
"typescript": "^5.8.3"
20+
}
1121
}

0 commit comments

Comments
 (0)