The plugin requires the following environment variables to be set:
AKASH_CHAT_API_KEY: Your Venice AI API keyAKASH_SMALL_MODEL: The model to use for small text generation (defaults to 'default')AKASH_LARGE_MODEL: The model to use for large text generation (defaults to 'default')AKASH_EMBEDDING_MODEL: The model to use for embeddings (optional)AKASH_EMBEDDING_DIMENSIONS: The dimensions for embeddings (optional)
To use the Venice plugin, add it to your ElizaOS configuration:
import { akashPlugin } from '@vpavlin/plugin-achash-chat-api';
// Add to your plugins array
const plugins = [
akashPlugin,
// ... other plugins
];To build the plugin:
bun run buildTo watch for changes during development:
bun run devMIT