Active Learning System(ALS) is a model that we created with the aim of creating an artificial intelligence model that can learn actively.
Caution: This model is still under development and far from perfect. Please use it wisely.
We put a complete and detailed usage guide for this API on our official AI website, specifically on the Get Started page. There you will find a complete and detailed usage guide.
First of all you have to install our API package first.
npm install @soteen/als-model
After successfully installing our API package, you can import @soteen/als-model into your project.
import { ALSModel } from '@soteen/als-model';Finally, you can use the functions provided.
// Initialize an instance of the ALSModel class
const model = new ALSModel({
apiKey: 'YOUR_API_KEY', // For now, please leave this section blank.
model: "ALS-v0.1-alpha",
maxLength: 12
});
// Send prompts and get responses
const result = model.response({ user: 'guess', prompt: 'How are you?' });
// Show response results in console
console.log(result.details.response);We provide all the documentation about this API on our official AI website, specifically on the Documentation page. There you can read all the documentation about this API.