JavaScript
import Morphik from 'morphik'; const client = new Morphik({ apiKey: 'My API Key', }); const response = await client.models.listAvailable(); console.log(response);
{ "detail": [ { "loc": [ "<string>" ], "msg": "<string>", "type": "<string>" } ] }
Get list of available models for UI selection.
Returns a list of models that can be used for queries. Each model includes:
Successful Response
Was this page helpful?