We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f642391 commit c4bbfdfCopy full SHA for c4bbfdf
8 files changed
api/models.ts
@@ -0,0 +1,8 @@
1
+import { client } from "./client.ts";
2
+
3
+export const models = {
4
+ list: client("/models").get,
5
+ create: client("/models").post,
6
+ get: client("/models/{id}").get,
7
+ delete: client("/models/{id}").delete,
8
+};
0 commit comments