quolo
v1.0.0
Published
Quolo - An open-source project integrating large language models with a role-based permissions model.
Downloads
2
Maintainers
Readme
Quolo
Quolo is an open-source project integrating large language models with a role-based permissions model.
Getting Started
Installation
Install the package via npm:
npm install quolo
Usage
OpenAI Service
First, set your OpenAI API key in your environment variables:
OPENAI_API_KEY='your-openai-api-key'
Then, use the library in your project:
import { getOpenAIResponse, getOpenAIEngines } from 'quolo';
const main = async () => {
const prompt = 'Hello, how are you?';
const response = await getOpenAIResponse(prompt);
console.log('Response from OpenAI:', response);
const engines = await getOpenAIEngines();
console.log('Available OpenAI engines:', engines);
};
main();
Running Tests
npm test
Credits
This project was developed with contributions from the following individuals and organizations:
Special thanks to the open-source community and the following projects:
License
This project is licensed under the MIT License - see the LICENSE file for details.