Files
automatisch/packages/backend/src/apps/openai/auth/verify-credentials.ts
2023-01-18 22:41:34 +01:00

8 lines
185 B
TypeScript

import { IGlobalVariable } from '@automatisch/types';
const verifyCredentials = async ($: IGlobalVariable) => {
await $.http.get('/v1/models');
};
export default verifyCredentials;