import Morphik from 'morphik';const client = new Morphik({ apiKey: process.env['MORPHIK_API_KEY'], // This is the default and can be omitted});const model = await client.models.delete('model_id');console.log(model);
{}
models
Delete Model
Delete a custom model.
DELETE
/
models
/
{model_id}
JavaScript
import Morphik from 'morphik';const client = new Morphik({ apiKey: process.env['MORPHIK_API_KEY'], // This is the default and can be omitted});const model = await client.models.delete('model_id');console.log(model);