import Profound from '@profoundai/client';const client = new Profound({ apiKey: process.env['PROFOUND_API_KEY'], // This is the default and can be omitted});const namedResources = await client.organizations.models();console.log(namedResources);
[ { "id": "<string>", "name": "<string>" }]
Organization
Get Models
Get the organization models.
GET
/
v1
/
org
/
models
JavaScript
import Profound from '@profoundai/client';const client = new Profound({ apiKey: process.env['PROFOUND_API_KEY'], // This is the default and can be omitted});const namedResources = await client.organizations.models();console.log(namedResources);