本项目是深迈 API 的 nodejs 客户端,以让用户更加方便地使用深迈API,更好地探索和使用AI模型,以及开发自己的应用产品。
您可以直接通过 npm 安装:
npm install shenmind
您可以在个人中心 查看自己的 Api Token,并进行配置。
export SHENMIND_API_TOKEN=xxxxxxxxxxxxxxxxxxxx
const shenmind = require('shenmind');
async function main() {
const modelId = 'yP1jM07UrYuQ6xHZ-lqYSQ==';
const files = {
'image_path': 'test.png'
};
const params = {
'prompt': 'the product is for sale'
};
const prediction = await shenmind.run(modelId, files, params, waitResult = true);
console.log(prediction);
}
main();
const shenmind = require('shenmind');
async function main() {
const predictionId = 'HkzotuoaEy3rcsCLK8WRyQ==';
const predictionOutput = await shenmind.getPredictionOutput(predictionId);
console.log(predictionOutput);
}
main();
const shenmind = require('shenmind');
async function main() {
const predictionId = 'HkzotuoaEy3rcsCLK8WRyQ==';
const predictionOutput = await shenmind.cancelPrediction(predictionId);
console.log(predictionOutput);
}
main();