Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thesolaai/nexa-toolkit
A simple framework to build voice agents powered by SOLA.
https://github.com/thesolaai/nexa-toolkit
blockchain extension solana
Last synced: 20 days ago
JSON representation
A simple framework to build voice agents powered by SOLA.
- Host: GitHub
- URL: https://github.com/thesolaai/nexa-toolkit
- Owner: TheSolaAI
- License: mit
- Created: 2025-01-23T12:12:55.000Z (23 days ago)
- Default Branch: main
- Last Pushed: 2025-01-23T14:56:57.000Z (22 days ago)
- Last Synced: 2025-01-23T15:21:58.503Z (22 days ago)
- Topics: blockchain, extension, solana
- Language: TypeScript
- Homepage:
- Size: 71.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# NEXA ToolKit
A simple framework to build voice agents powered by SOLA.
Follow the steps below to get started.
## Installation
1. Clone the repository
```sh
git clone https://github.com/sola-ai/sola-voice-agent-kit.git
```2. Install the dependencies
```sh
npm install
```3. Create a agent
```tsx
const agent = new SolaAgent(
"private-key",
"rpc-url",
"open-ai-key"
);
```4. Follow ```examples/basic.tsx``` for a ui demo.
5. Add the component to your main file , ie, ```main.tsx```
```tsx
import React from "react";
import ReactDOM from "react-dom/client";
import App from ".path/to/your/agent/component";ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
);
```