![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.
api-ai-speech-context
Advanced tools
Generates a Google Cloud Speech API SpeechContext for an API.AI agent.
Generates a Google Cloud Speech API
SpeechContext
for your
API.AI agent.
generateSpeechContext
takes two parameters:
summary
: An API.AI agent summary object with the keys name
, entities
, and intents
.blacklist
: An array of words to blacklist from the context.The summary can be created with api-ai-agent-downloader
.
It returns an array containing words and phrases based on your agent's entities and intents. Non-blacklisted single words are given highest priority, then phrases that contain at least one non-blacklisted word. Entities within intent templates (e.g. '@sys.any') are removed.
The array comports with the Google Cloud Speech API's SpeechContext usage limits.
const agentDownloader = require('api-ai-agent-downloader');
const { generateSpeechContext } = require('api-ai-speech-context');
const fs = require('fs');
const agentName = 'agent_foo';
const developerToken = 'abc123';
const blacklist = ['bad', 'words', 'and phrases'];
const removeCommonWords = true; // true by default
agentDownloader.getSummary(agentName, developerToken)
.then(summary => {
const context = generateSpeechContext(summary, blacklist, removeCommonWords);
fs.writeFileSync('./speechContext.json', JSON.stringify(context));
})
.catch(error => console.error(error));
FAQs
Generates a Google Cloud Speech API SpeechContext for an API.AI agent.
We found that api-ai-speech-context demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.