large-models-interface
Version:
A comprehensive, unified interface for all types of AI models - natural language, vision, audio, and video. Supports 51 providers with dynamic model discovery and multi-modal capabilities.
24 lines (18 loc) • 657 B
JavaScript
/**
* @file src/interfaces/llamacpp.js
* @class LLamaCPP
* @description Wrapper class for the LLamaCPP API.
* @param {string} apiKey - The API key for the LLamaCPP API.
*/
const BaseInterface = require('./baseInterface.js');
const { llamacppApiKey } = require('../utils/loadApiKeysFromEnv.js');
const { getConfig, loadProviderConfig } = require('../utils/configManager.js');
const interfaceName = 'llamacpp';
loadProviderConfig(interfaceName);
const config = getConfig();
class LLamaCPP extends BaseInterface {
constructor(apiKey) {
super(interfaceName, apiKey || llamacppApiKey, config[interfaceName].url);
}
}
module.exports = LLamaCPP;