File size: 539 Bytes
d04e364
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import axios from "axios";
export const config = {
    "name": "mistral",
    "url": "/api/mistral",
    "description": "Get response from Mistral AI Model. Mistral AI is a very powerful AI that can do a lot of things.",
    "query": "prompt",
    "response": "text",
    "testURL": "./api/mistral?prompt=hello"

}

const {mistral} = require('@shuddho11288/mistral-api')

export default async function handler(req, res) {
  const prompt = req.query.prompt;
  const response = await mistral(prompt);
  res.status(200).json({...response});
}