Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
isamu committed Dec 17, 2024
1 parent 4624255 commit 7ea1864
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 17 deletions.
14 changes: 8 additions & 6 deletions tts/tts-nijivoice-agent/README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@

# tts_nijivoice_agent for GraphAI
# @graphai/tts_nijivoice_agent for GraphAI

TTS nijivoice agent
nijivoice TTS agent

### Install

```sh
yarn add tts_nijivoice_agent
yarn add @graphai/tts_nijivoice_agent
```


### Usage

```typescript
import { GraphAI } from "graphai";
import { ttsNijivoiceAgent } from "tts_nijivoice_agent";
import { ttsNijivoiceAgent } from "@graphai/tts_nijivoice_agent";

const agents = { ttsNijivoiceAgent };

Expand All @@ -26,11 +26,13 @@ const result = await graph.run();
- ttsNijivoiceAgent - TTS nijivoice agent

### Input/Output/Params Schema & samples
- [ttsNijivoiceAgent](https://github.com/receptron/graphai/blob/main/docs/agentDocs/tts/ttsNijivoiceAgent.md)

- [ttsNijivoiceAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/tts/ttsNijivoiceAgent.md)



### Environment Variables
- ttsNijivoiceAgent
- NIJIVOICE_API_KEY



Expand Down
15 changes: 11 additions & 4 deletions tts/tts-nijivoice-agent/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
"files": [
"./lib"
],
"repository": {
"type": "git",
"url": "[email protected]:receptron/graphai-agents.git"
},
"scripts": {
"build": "tsc",
"eslint": "eslint src --fix",
Expand All @@ -15,9 +19,12 @@
"test": "node --test --require ts-node/register ./tests/test_*.ts",
"ci": "yarn run format && yarn run eslint && yarn run test && yarn run build"
},
"author": "isamu arimoto",
"author": "receptron team",
"license": "MIT",
"devDependencies": {
},
"dependencies": {}
"devDependencies": {},
"dependencies": {},
"types": "./lib/index.d.ts",
"directories": {
"lib": "lib"
}
}
12 changes: 7 additions & 5 deletions tts/tts-openai-agent/README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@

# tts_openai_agent for GraphAI
# @graphai/tts_openai_agent for GraphAI

OpenAI TTS agent

### Install

```sh
yarn add tts_openai_agent
yarn add @graphai/tts_openai_agent
```


### Usage

```typescript
import { GraphAI } from "graphai";
import { ttsOpenaiAgent } from "tts_openai_agent";
import { ttsOpenaiAgent } from "@graphai/tts_openai_agent";

const agents = { ttsOpenaiAgent };

Expand All @@ -26,11 +26,13 @@ const result = await graph.run();
- ttsOpenaiAgent - OpenAI TTS agent

### Input/Output/Params Schema & samples
- [ttsOpenaiAgent](https://github.com/receptron/graphai/blob/main/docs/agentDocs/tts/ttsOpenaiAgent.md)

- [ttsOpenaiAgent](https://github.com/receptron/graphai-agents/blob/main/docs/agentDocs/tts/ttsOpenaiAgent.md)



### Environment Variables
- ttsOpenaiAgent
- OPENAI_API_KEY



Expand Down
12 changes: 10 additions & 2 deletions tts/tts-openai-agent/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
"files": [
"./lib"
],
"repository": {
"type": "git",
"url": "[email protected]:receptron/graphai-agents.git"
},
"scripts": {
"build": "tsc",
"eslint": "eslint src --fix",
Expand All @@ -15,9 +19,13 @@
"test": "node --test --require ts-node/register ./tests/test_*.ts",
"ci": "yarn run format && yarn run eslint && yarn run test && yarn run build"
},
"author": "isamu arimoto",
"author": "receptron team",
"license": "MIT",
"devDependencies": {
},
"dependencies": {}
"dependencies": {},
"types": "./lib/index.d.ts",
"directories": {
"lib": "lib"
}
}

0 comments on commit 7ea1864

Please sign in to comment.