-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.ts
69 lines (63 loc) · 1.8 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import { Application, Router } from "oak";
import manifest from "./manifest.json" assert { type: "json" };
import openapi from "./openapi.json" assert { type: "json" };
console.log("Hello from `chatgpt-plugin` Function!");
const _TODOS: { [key: string]: Array<string> } = {
global: ["test this plugin template"],
};
/**
* @openapi
* components:
* schemas:
* getTodosResponse:
* type: object
* properties:
* todos:
* type: array
* items:
* type: string
* description: The list of todos.
*/
const router = new Router();
router
.get("/chatgpt-plugin", (ctx) => {
ctx.response.body =
"Building ChatGPT plugins with Supabase Edge Functions!";
})
/**
* @openapi
* /todos/{username}:
* get:
* operationId: getTodos
* summary: Get the list of todos
* parameters:
* - in: path
* name: username
* schema:
* type: string
* required: true
* description: The name of the user.
* responses:
* 200:
* description: OK
* content:
* application/json:
* schema:
* $ref: '#/components/schemas/getTodosResponse'
*/
.get("/chatgpt-plugin/todos/:username", (ctx) => {
const username = ctx.params.username;
ctx.response.body = _TODOS[username] ?? [];
})
.get("/chatgpt-plugin/.well-known/ai-plugin.json", (ctx) => {
ctx.response.type = "text/json";
ctx.response.body = JSON.stringify(manifest);
})
.get("/chatgpt-plugin/openapi.json", (ctx) => {
ctx.response.type = "text/json";
ctx.response.body = JSON.stringify(openapi);
});
const app = new Application();
app.use(router.routes());
app.use(router.allowedMethods());
await app.listen({ port: 8000 });