import Morphik from 'morphik';
const client = new Morphik({
apiKey: process.env['MORPHIK_API_KEY'], // This is the default and can be omitted
});
const modelResponses = await client.models.listCustom();
console.log(modelResponses);
List all custom models for the authenticated user.
GET
/
models
/
custom
JavaScript
import Morphik from 'morphik';
const client = new Morphik({
apiKey: process.env['MORPHIK_API_KEY'], // This is the default and can be omitted
});
const modelResponses = await client.models.listCustom();
console.log(modelResponses);