
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
@asicupv/paella-ai-plugins
Advanced tools
The paella-ai-plugins plugin provides Paella plugins related to artificial intelligence.
Install the plugin via npm:
npm install @asicupv/paella-ai-plugins
The es.upv.paella.ai.content plugin provides AI-generated content to enhance the user experience in the Paella Player. This content includes summaries, key questions, study plans, timelines, and podcasts.
"dialog" or "popup".import { AIContentPlugin } from '@asicupv/paella-ai-plugins';
import '@asicupv/paella-ai-plugins/es.upv.paella.aitools.css';
let paella = new Paella('player-container', {
plugins: [
{
plugin: AIContentPlugin,
config: {
mode: "dialog"
}
}
]
});
The plugin can be configured in the config.json file:
{
"plugins": {
"es.upv.paella.ai.content": {
"mode": "dialog"
}
}
}
mode: Defines the interaction mode of the plugin. It can be "dialog" or "popup".
The es.upv.paella.ai.content.data-test plugin allows loading test data for AI-generated content from files configured in the system.
The plugin can be configured in the config.json file:
{
"plugins": {
"es.upv.paella.ai.content.data-test": {
"enabled": true,
"context": ["ai.content"],
"files": {
"summary": {
"file": "summary.txt",
"media": "summary.mp3"
},
"faq": {
"file": "faq.txt"
}
}
}
}
}
enabled: Enables or disables the plugin.context: Specifies the contexts supported by the plugin. For example, "ai.content".files: Defines the test files containing AI-generated content. Each entry includes:
file: Name of the file containing the content.media: (Optional) Multimedia file associated with the content.FAQs
Plugins for Paella Player that provides AI functionality.
We found that @asicupv/paella-ai-plugins demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 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
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.