@graphai/extra-agents 0.0.5 → 0.0.6
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 +62 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.js +4 -0
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -19,10 +19,13 @@ import {
|
|
|
19
19
|
awesomeChatgptPromptsAgent,
|
|
20
20
|
braveSearchAgent,
|
|
21
21
|
browserlessAgent,
|
|
22
|
+
mcpToolsCallAgent,
|
|
23
|
+
mcpToolsListAgent,
|
|
22
24
|
pdf2textAgent,
|
|
23
25
|
promptsAgent,
|
|
24
26
|
serperAgent,
|
|
25
27
|
slackAgent,
|
|
28
|
+
sttOpenaiAgent,
|
|
26
29
|
ttsNijivoiceAgent,
|
|
27
30
|
ttsOpenaiAgent
|
|
28
31
|
} from "@graphai/extra-agents";
|
|
@@ -32,10 +35,13 @@ const agents = {
|
|
|
32
35
|
awesomeChatgptPromptsAgent,
|
|
33
36
|
braveSearchAgent,
|
|
34
37
|
browserlessAgent,
|
|
38
|
+
mcpToolsCallAgent,
|
|
39
|
+
mcpToolsListAgent,
|
|
35
40
|
pdf2textAgent,
|
|
36
41
|
promptsAgent,
|
|
37
42
|
serperAgent,
|
|
38
43
|
slackAgent,
|
|
44
|
+
sttOpenaiAgent,
|
|
39
45
|
ttsNijivoiceAgent,
|
|
40
46
|
ttsOpenaiAgent
|
|
41
47
|
};
|
|
@@ -49,10 +55,13 @@ const result = await graph.run();
|
|
|
49
55
|
- awesomeChatgptPromptsAgent - awesomeChatgptPrompts Agent
|
|
50
56
|
- braveSearchAgent - An agent that uses the Brave Search API. https://api-dashboard.search.brave.com/app/documentation/web-search/get-started
|
|
51
57
|
- browserlessAgent - An agent that uses Browserless.io to fetch web page content with JavaScript execution support for retrieving data from SPAs and dynamic content
|
|
58
|
+
- mcpToolsCallAgent - Model Context Protocol Tools/Call Agent
|
|
59
|
+
- mcpToolsListAgent - Model Context Protocol Tools/List Agent
|
|
52
60
|
- pdf2textAgent - Pdf2text Agent
|
|
53
61
|
- promptsAgent - Prompts Agent
|
|
54
62
|
- serperAgent - serper agent
|
|
55
63
|
- slackAgent - Slack Agent
|
|
64
|
+
- sttOpenaiAgent - OpenAI speach to text agent
|
|
56
65
|
- ttsNijivoiceAgent - TTS nijivoice agent
|
|
57
66
|
- ttsOpenaiAgent - OpenAI TTS agent
|
|
58
67
|
|
|
@@ -61,10 +70,13 @@ const result = await graph.run();
|
|
|
61
70
|
- [awesomeChatgptPromptsAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/prompt/awesomeChatgptPromptsAgent.md)
|
|
62
71
|
- [braveSearchAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/net/braveSearchAgent.md)
|
|
63
72
|
- [browserlessAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/net/browserlessAgent.md)
|
|
73
|
+
- [mcpToolsCallAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/protocol/mcpToolsCallAgent.md)
|
|
74
|
+
- [mcpToolsListAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/protocol/mcpToolsListAgent.md)
|
|
64
75
|
- [pdf2textAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/documents/pdf2textAgent.md)
|
|
65
76
|
- [promptsAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/prompt/promptsAgent.md)
|
|
66
77
|
- [serperAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/net/serperAgent.md)
|
|
67
78
|
- [slackAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/net/slackAgent.md)
|
|
79
|
+
- [sttOpenaiAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/voice/sttOpenaiAgent.md)
|
|
68
80
|
- [ttsNijivoiceAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/tts/ttsNijivoiceAgent.md)
|
|
69
81
|
- [ttsOpenaiAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/tts/ttsOpenaiAgent.md)
|
|
70
82
|
|
|
@@ -172,6 +184,52 @@ const result = await graph.run();
|
|
|
172
184
|
"debug": true
|
|
173
185
|
}
|
|
174
186
|
}
|
|
187
|
+
```
|
|
188
|
+
|
|
189
|
+
- mcpToolsCallAgent
|
|
190
|
+
|
|
191
|
+
```typescript
|
|
192
|
+
{
|
|
193
|
+
"inputs": {
|
|
194
|
+
"tools": {
|
|
195
|
+
"name": "filesystem--list_directory",
|
|
196
|
+
"arguments": {
|
|
197
|
+
"path": "/Users/isamu/ss/llm/graphai-agents/protocol/mcp-agent/lib/../tests/sample"
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
},
|
|
201
|
+
"params": {}
|
|
202
|
+
}
|
|
203
|
+
```
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
```typescript
|
|
207
|
+
{
|
|
208
|
+
"inputs": {
|
|
209
|
+
"tools": {
|
|
210
|
+
"name": "filesystem--list_directory",
|
|
211
|
+
"arguments": {
|
|
212
|
+
"path": "/Users/isamu/ss/llm/graphai-agents/protocol/mcp-agent/lib/../tests/sample"
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
},
|
|
216
|
+
"params": {
|
|
217
|
+
"mcpClientsKey": "key"
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
```
|
|
221
|
+
|
|
222
|
+
- mcpToolsListAgent
|
|
223
|
+
|
|
224
|
+
```typescript
|
|
225
|
+
{
|
|
226
|
+
"inputs": {},
|
|
227
|
+
"params": {
|
|
228
|
+
"services": [
|
|
229
|
+
"filesystem"
|
|
230
|
+
]
|
|
231
|
+
}
|
|
232
|
+
}
|
|
175
233
|
```
|
|
176
234
|
|
|
177
235
|
- pdf2textAgent
|
|
@@ -244,6 +302,8 @@ const result = await graph.run();
|
|
|
244
302
|
- BROWSERLESS_API_TOKEN
|
|
245
303
|
- serperAgent
|
|
246
304
|
- SERPER_API_KEY
|
|
305
|
+
- sttOpenaiAgent
|
|
306
|
+
- OPENAI_API_KEY
|
|
247
307
|
- ttsNijivoiceAgent
|
|
248
308
|
- NIJIVOICE_API_KEY
|
|
249
309
|
- ttsOpenaiAgent
|
|
@@ -254,9 +314,11 @@ const result = await graph.run();
|
|
|
254
314
|
- [@graphai/awesome_chatgpt_prompts_agent](https://www.npmjs.com/package/@graphai/awesome_chatgpt_prompts_agent)
|
|
255
315
|
- [@graphai/brave_search_agent](https://www.npmjs.com/package/@graphai/brave_search_agent)
|
|
256
316
|
- [@graphai/browserless_agent](https://www.npmjs.com/package/@graphai/browserless_agent)
|
|
317
|
+
- [@graphai/mcp_agent](https://www.npmjs.com/package/@graphai/mcp_agent)
|
|
257
318
|
- [@graphai/pdf2text_agent](https://www.npmjs.com/package/@graphai/pdf2text_agent)
|
|
258
319
|
- [@graphai/serper_agent](https://www.npmjs.com/package/@graphai/serper_agent)
|
|
259
320
|
- [@graphai/slack_agent](https://www.npmjs.com/package/@graphai/slack_agent)
|
|
321
|
+
- [@graphai/stt_openai_agent](https://www.npmjs.com/package/@graphai/stt_openai_agent)
|
|
260
322
|
- [@graphai/tts_nijivoice_agent](https://www.npmjs.com/package/@graphai/tts_nijivoice_agent)
|
|
261
323
|
- [@graphai/tts_openai_agent](https://www.npmjs.com/package/@graphai/tts_openai_agent)
|
|
262
324
|
|
package/lib/index.d.ts
CHANGED
package/lib/index.js
CHANGED
|
@@ -33,3 +33,7 @@ __exportStar(require("@graphai/prompts"), exports);
|
|
|
33
33
|
// tts
|
|
34
34
|
__exportStar(require("@graphai/tts_nijivoice_agent"), exports);
|
|
35
35
|
__exportStar(require("@graphai/tts_openai_agent"), exports);
|
|
36
|
+
// stt
|
|
37
|
+
__exportStar(require("@graphai/stt_openai_agent"), exports);
|
|
38
|
+
// protocol
|
|
39
|
+
__exportStar(require("@graphai/mcp_agent"), exports);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphai/extra-agents",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "Extra agents for GraphAI.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"files": [
|
|
@@ -30,10 +30,12 @@
|
|
|
30
30
|
"@graphai/awesome_chatgpt_prompts_agent": "^0.0.1",
|
|
31
31
|
"@graphai/brave_search_agent": "^0.0.1",
|
|
32
32
|
"@graphai/browserless_agent": "^0.0.3",
|
|
33
|
+
"@graphai/mcp_agent": "^0.0.3",
|
|
33
34
|
"@graphai/pdf2text_agent": "^0.2.0",
|
|
34
35
|
"@graphai/prompts": "^0.0.1",
|
|
35
36
|
"@graphai/serper_agent": "^0.0.1",
|
|
36
37
|
"@graphai/slack_agent": "^0.0.3",
|
|
38
|
+
"@graphai/stt_openai_agent": "^0.0.2",
|
|
37
39
|
"@graphai/tts_nijivoice_agent": "^0.0.2",
|
|
38
40
|
"@graphai/tts_openai_agent": "^0.0.2"
|
|
39
41
|
},
|