This directory contains examples demonstrating various uses of the WaveQuery Conductor package.
Simple example showing how to use the basic features:
cd examples/basic
cp .env.example .env # Copy and edit with your API keys
yarn install
yarn startand you can run them like:
tsx file-name.tsDemonstrates advanced features like custom tools and visualization:
cd examples/advanced
cp .env.example .env
yarn install
yarn startEach example is a standalone project that demonstrates specific features. To run any example:
- Navigate to the example directory
- Install dependencies:
yarn install - Set up environment variables: Copy
.env.exampleto.envand add your API keys - Run the example:
yarn start