@davia/agent 0.1.3-alpha.1 → 0.1.4

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.
@@ -11,7 +11,7 @@ export declare const writeTool: import("langchain").DynamicStructuredTool<z.ZodO
11
11
  }, {
12
12
  filePath: string;
13
13
  content: string;
14
- }, string>;
14
+ }, string, "write_file">;
15
15
  /**
16
16
  * Tool for searching and replacing text in a file
17
17
  */
@@ -30,7 +30,7 @@ export declare const searchReplaceTool: import("langchain").DynamicStructuredToo
30
30
  oldString: string;
31
31
  newString: string;
32
32
  replaceAll?: boolean | undefined;
33
- }, string>;
33
+ }, string, "search_replace">;
34
34
  /**
35
35
  * Tool for reading file contents
36
36
  */
@@ -40,7 +40,7 @@ export declare const readFileTool: import("langchain").DynamicStructuredTool<z.Z
40
40
  filePath: string;
41
41
  }, {
42
42
  filePath: string;
43
- }, string>;
43
+ }, string, "read_file">;
44
44
  /**
45
45
  * Tool for deleting a file
46
46
  */
@@ -50,7 +50,7 @@ export declare const deleteTool: import("langchain").DynamicStructuredTool<z.Zod
50
50
  filePath: string;
51
51
  }, {
52
52
  filePath: string;
53
- }, string>;
53
+ }, string, "delete_file">;
54
54
  /**
55
55
  * Tool for making multiple edits to a single file
56
56
  */
@@ -75,5 +75,5 @@ export declare const multiEditTool: import("langchain").DynamicStructuredTool<z.
75
75
  newString: string;
76
76
  replaceAll?: boolean | undefined;
77
77
  }[];
78
- }, string>;
78
+ }, string, "multi_edit">;
79
79
  //# sourceMappingURL=tools.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"tools.d.ts","sourceRoot":"","sources":["../../src/agent/tools.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAmBxB;;GAEG;AACH,eAAO,MAAM,SAAS;;;;;;;;;UAqFrB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;UAiE7B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,YAAY;;;;;;UA2DxB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,UAAU;;;;;;UAiEtB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;UA4GzB,CAAC"}
1
+ {"version":3,"file":"tools.d.ts","sourceRoot":"","sources":["../../src/agent/tools.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAmBxB;;GAEG;AACH,eAAO,MAAM,SAAS;;;;;;;;;wBAqFrB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;4BAiE7B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,YAAY;;;;;;uBA2DxB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,UAAU;;;;;;yBAiEtB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;wBA4GzB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@davia/agent",
3
- "version": "0.1.3-alpha.1",
3
+ "version": "0.1.4",
4
4
  "license": "MIT",
5
5
  "description": "AI agent for Davia documentation",
6
6
  "homepage": "https://davia.ai",
@@ -27,11 +27,11 @@
27
27
  "dist"
28
28
  ],
29
29
  "dependencies": {
30
- "@langchain/anthropic": "1.1.0",
31
- "@langchain/core": "1.0.6",
32
- "@langchain/google-genai": "1.0.2",
33
- "@langchain/langgraph": "1.0.2",
34
- "@langchain/openai": "1.1.2",
30
+ "@langchain/anthropic": "^1.3.10",
31
+ "@langchain/core": "^1.1.15",
32
+ "@langchain/google-genai": "^2.1.10",
33
+ "@langchain/langgraph": "^1.1.0",
34
+ "@langchain/openai": "^1.2.2",
35
35
  "chalk": "^5.6.2",
36
36
  "fs-extra": "^11.3.2",
37
37
  "ignore": "^7.0.5",