
Security News
PEP 810 Proposes Explicit Lazy Imports for Python 3.15
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
@aivue/core
Advanced tools
Core AI functionality for Vue.js components
@aivue/core
provides a unified interface for working with multiple AI providers in Vue.js applications. It serves as the foundation for all VueAI components, offering a consistent API for interacting with various AI services.
# npm
npm install @aivue/core
# yarn
yarn add @aivue/core
# pnpm
pnpm add @aivue/core
This package is compatible with both Vue 2 and Vue 3:
The package automatically detects which version of Vue you're using and provides the appropriate compatibility layer. This means you can use the same package regardless of whether your project is using Vue 2 or Vue 3.
import { AIClient } from '@aivue/core';
// Create a client with your preferred provider
const client = new AIClient({
provider: 'openai',
apiKey: import.meta.env.VITE_OPENAI_API_KEY, // Use environment variables for API keys
model: 'gpt-4o' // Optional - uses provider's default if missing
});
// Chat functionality
async function getResponse() {
const response = await client.chat([
{ role: 'user', content: 'Hello, can you help me with Vue.js?' }
]);
console.log(response);
}
import { AIClient } from '@aivue/core';
const client = new AIClient({
provider: 'claude',
apiKey: import.meta.env.VITE_ANTHROPIC_API_KEY,
model: 'claude-3-7-sonnet-20250219'
});
// Streaming chat functionality
client.chatStream(
[{ role: 'user', content: 'Write a short poem about Vue.js' }],
{
onStart: () => console.log('Stream started'),
onToken: (token) => console.log(token), // Process each token as it arrives
onComplete: (fullText) => console.log('Complete response:', fullText),
onError: (error) => console.error('Error:', error)
}
);
import { ref, onMounted } from 'vue';
import { AIClient } from '@aivue/core';
export default {
setup() {
const response = ref('');
const loading = ref(false);
const client = new AIClient({
provider: 'openai',
apiKey: import.meta.env.VITE_OPENAI_API_KEY
});
async function askQuestion(question) {
loading.value = true;
try {
response.value = await client.chat([
{ role: 'user', content: question }
]);
} catch (error) {
console.error('Error:', error);
} finally {
loading.value = false;
}
}
return {
response,
loading,
askQuestion
};
}
};
import { registerProviders } from '@aivue/core';
// Register multiple providers at once
registerProviders({
openai: {
apiKey: import.meta.env.VITE_OPENAI_API_KEY,
defaultModel: 'gpt-4o'
},
claude: {
apiKey: import.meta.env.VITE_ANTHROPIC_API_KEY,
defaultModel: 'claude-3-7-sonnet-20250219'
},
gemini: {
apiKey: import.meta.env.VITE_GEMINI_API_KEY
}
});
new AIClient(options: AIClientOptions)
Property | Type | Description | Required |
---|---|---|---|
provider | string | AI provider to use ('openai', 'claude', 'gemini', etc.) | Yes |
apiKey | string | API key for the provider | No |
model | string | Model to use (e.g., 'gpt-4o', 'claude-3-7-sonnet') | No |
baseUrl | string | Custom base URL for the API | No |
organizationId | string | Organization ID (for OpenAI) | No |
Method | Description | Parameters | Return Type |
---|---|---|---|
chat | Send a chat request | messages: Message[], options?: ChatOptions | Promise |
chatStream | Stream a chat response | messages: Message[], callbacks: StreamCallbacks, options?: ChatOptions | Promise |
interface Message {
role: 'system' | 'user' | 'assistant';
content: string;
}
interface ChatOptions {
temperature?: number;
maxTokens?: number;
topP?: number;
frequencyPenalty?: number;
presencePenalty?: number;
stopSequences?: string[];
}
interface StreamCallbacks {
onStart?: () => void;
onToken?: (token: string) => void;
onComplete?: (completeText: string) => void;
onError?: (error: Error) => void;
}
The package includes a comprehensive compatibility layer that handles differences between Vue 2 and Vue 3 automatically. If you need to use the compatibility utilities directly:
import {
// Version detection
vueVersion, // 2 or 3 depending on detected Vue version
// Component utilities
createCompatComponent, // Create components that work in both Vue 2 and 3
registerCompatComponent, // Register components globally in both Vue 2 and 3
// Plugin utilities
createCompatPlugin, // Create plugins that work in both Vue 2 and 3
installCompatPlugin, // Install plugins in both Vue 2 and 3
// Reactivity utilities
createReactiveState, // Create reactive state in both Vue 2 and 3
createCompatRef // Create refs that work in both Vue 2 and 3
} from '@aivue/core';
// Example: Create a component that works in both Vue 2 and 3
const MyComponent = createCompatComponent({
// component options
});
// Example: Register a component globally in both Vue 2 and 3
// For Vue 2, this uses Vue.component()
// For Vue 3, this uses app.component()
registerCompatComponent(app, 'MyComponent', MyComponent);
// Example: Create reactive state
const state = createReactiveState({ count: 0 });
// Example: Create a ref
const count = createCompatRef(0);
If you're working with different versions of Vue 3, the package also provides utilities to handle differences between Vue 3.0.x and Vue 3.2+:
import {
compatCreateElementBlock,
compatCreateElementVNode,
compatNormalizeClass
} from '@aivue/core';
// These functions work across all Vue 3 versions
MIT © Bharatkumar Subramanian
FAQs
Core AI functionality for Vue.js components
The npm package @aivue/core receives a total of 53 weekly downloads. As such, @aivue/core popularity was classified as not popular.
We found that @aivue/core demonstrated a healthy version release cadence and project activity because the last version was released less than 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
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.