msiai
v2.2.2
Published
Advanced artificial intelligence free api service msiai
Downloads
69
Maintainers
Readme
MSIAI
MSIAI: A flexible API library offering streamlined access to diverse AI models. Enhance your projects with powerful machine learning capabilities and simplify complex AI integrations
MSIAI leverages cutting-edge language models to provide intelligent responses across a wide range of topics and languages.
📦 Installation
# npm
npm install msiai
# yarn
yarn add msiai
# pnpm
pnpm add msiai
# Python
pip install msiai
# Ruby
gem install msiai
🚀 Quick Start
JavaScript (Node.js)
const MSIAI = require('msiai');
const msiai = new MSIAI();
msiai.chat({
model: "gpt-3.5-turbo",
prompt: "What are the benefits of exercise?",
system: "You are a fitness expert."
}).then(response => {
console.log(response.reply);
}).catch(error => {
console.error(error.message);
});
TypeScript
import MSIAI from 'msiai';
const msiai = new MSIAI();
msiai.chat({
model: "gpt-4",
prompt: "Explain quantum computing in simple terms.",
system: "You are a quantum physics educator."
})
.then(response => {
console.log(response.reply);
})
.catch(error => {
console.error(error.message);
});
Python
from msiai import MSIAI
msiai = MSIAI()
try:
response = msiai.chat(
model="gpt-3.5-turbo",
prompt="Describe the process of photosynthesis.",
system="You are a biology professor."
)
print(response['reply'])
except Exception as error:
print(f"An error occurred: {str(error)}")
Ruby
require 'msiai'
msiai = MSIAI.new()
begin
response = msiai.chat(
model: "gpt-4",
prompt: "Write a short story about time travel.",
system: "You are a creative science fiction author."
)
puts response[:reply]
rescue => error
puts "An error occurred: #{error.message}"
end
📚 Available Models
MSIAI offers the following AI models:
- gpt-3.5-turbo
- gpt-4
- o1-preview
- o1-preview-2024-09-12
- o1-mini-2024-09-12
- o1-mini
- gpt-4o-latest
- gpt-4o-2024-08-06
🤝 Support
If you have any questions, need assistance, or want to provide feedback, please contact me via Discord:
You can also join our Discord server for community support: