get__ai_llm
⚠️ TEST ENVIRONMENT ONLY
TypeScript Client Library
public getAiLlms = async (workspaceId?: string): Promise<GetAiLlmsResponse> => {
const queryParams = new URLSearchParams();
if (workspaceId) {
queryParams.append('workspaceId', workspaceId);
}
return this.makeRequest<GetAiLlmsResponse>(
`ai/llm${queryParams.toString() ? `?${queryParams.toString()}` : ''}`,
'GET',
null
);
};Code Samples
Parameters
Name
In
Type
Required
Description
Responses
Status
Meaning
Description
Schema
Response Schema
Name
Type
Required
Restrictions
Description
Name
Type
Required
Restrictions
Description
Name
Type
Required
Restrictions
Description
Last updated
Was this helpful?