feat(openai): add app with auth

This commit is contained in:
Ali BARIN
2023-01-17 13:20:28 +01:00
parent 0870fa7e8f
commit 577d5215cd
7 changed files with 82 additions and 0 deletions

View File

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