@graphai/prompts 0.0.1 → 0.0.2

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.
package/README.md CHANGED
@@ -22,6 +22,31 @@ const graph = new GraphAI(graph_data, agents);
22
22
  const result = await graph.run();
23
23
  ```
24
24
 
25
+ ### Agents description
26
+ - promptsAgent - Prompts Agent
27
+
28
+ ### Input/Output/Params Schema & samples
29
+ - [promptsAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/prompt/promptsAgent.md)
30
+
31
+ ### Input/Params example
32
+ - promptsAgent
33
+
34
+
35
+
36
+ ```typescript
37
+ {
38
+ "inputs": {},
39
+ "params": {
40
+ "promptKey": "test"
41
+ }
42
+ }
43
+ ```
44
+
45
+
46
+
47
+
48
+
49
+
25
50
 
26
51
 
27
52
 
@@ -28,7 +28,9 @@ const promptsAgentInfo = {
28
28
  description: "Prompts Agent",
29
29
  category: ["prompt"],
30
30
  author: "Receptron team",
31
- repository: "https://github.com/receptron/graphai",
31
+ repository: "https://github.com/receptron/graphai-agents/tree/main/prompts/prompts",
32
+ source: "https://github.com/receptron/graphai-agents/tree/main/prompts/prompts/src/prompts_agent.ts",
33
+ package: "@graphai/prompts",
32
34
  license: "MIT",
33
35
  };
34
36
  exports.default = promptsAgentInfo;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphai/prompts",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "files": [
@@ -8,6 +8,7 @@
8
8
  ],
9
9
  "scripts": {
10
10
  "build": "tsc",
11
+ "typecheck": "tsc --noEmit",
11
12
  "eslint": "eslint src --fix",
12
13
  "format": "prettier --write '{src,tests}/**/*.ts'",
13
14
  "doc": "npx agentdoc",
@@ -18,14 +19,14 @@
18
19
  },
19
20
  "repository": {
20
21
  "type": "git",
21
- "url": "git+https://github.com/isamu/graphai-agents.git"
22
+ "url": "git+https://github.com/receptron/graphai-agents.git"
22
23
  },
23
24
  "author": "",
24
25
  "license": "MIT",
25
26
  "bugs": {
26
- "url": "https://github.com/isamu/graphai-agents/issues"
27
+ "url": "https://github.com/receptron/graphai-agents/issues"
27
28
  },
28
- "homepage": "https://github.com/isamu/graphai-agents#readme",
29
+ "homepage": "https://github.com/receptron/graphai-agents#readme",
29
30
  "devDependencies": {},
30
31
  "dependencies": {}
31
32
  }