![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
waii-sdk-js
Advanced tools
Typescript / Javascript SDK for the waii api. SQL generation and much more.
Welcome to the SDK documentation for Waii - the worlds most powerful SQL API built on LLM agents. This documentation provides detailed information on how to use the SDK to interact with the system.
The SDK allows enables developers to generate, explain, describe, modify, transcode, optimize and run SQL queries from text input, as well as manage the semantic layer, handle database connections, perform semantic search, and access the history of generated queries. You can also generate visualizations from the SQL you are working with.
Whether you are looking to build a conversational client, analtyics tooling or database infrastructure, you have come to the right place. Waii makes it much easier to integrate advanced AI capabilities into your data-centric applications. Happy coding!
The SDK packages are maintained on npm: https://www.npmjs.com/package/waii-sdk-js
You can install the package via npm directly or add the dependency to your project's package.json file.
npm i waii-sdk-js -g
You will also need an API key to use the API. You can get your API key by reaching out to us here: https://www.waii.ai
That wraps up the pre-requisites. To get started with the WAII API, you first need to initialize the system.
// Import the WAII module
import WAII from 'waii-sdk-js';
// Initialize WAII with the URL and API key
WAII.initialize('https://tweakit.waii.ai/api/', 'your_api_key');
If it's the first time you're using the system you have to add a database connection. This can be done ahead of time / outside the sdk (using the UI for instance).
let result = await WAII.Database.modifyConnections(
{
updated: [{
key: null, // will be generated by the system
account_name: 'your account',
database: 'your database name',
warehouse: 'your warehouse name',
role: 'desired user role',
username: 'your username',
password: 'your password',
db_type: 'snowflake',
}]
}
);
If you already have database connections configured you can activate them by key. Like so:
WAII.Database.activateConnection(<connection key>);
It can take little time depending on the number of tables in the system.
And now you are ready to generate queries:
let result = await WAII.Query.generate({
ask: 'show me the revenue month over month for the last three years by store location'
});
FAQs
Typescript / Javascript SDK for the waii api. SQL generation and much more.
The npm package waii-sdk-js receives a total of 124 weekly downloads. As such, waii-sdk-js popularity was classified as not popular.
We found that waii-sdk-js demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.