-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplan.lua
More file actions
79 lines (79 loc) · 2.45 KB
/
plan.lua
File metadata and controls
79 lines (79 loc) · 2.45 KB
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
70
71
72
73
74
75
76
77
78
79
voicey-app/
├── src/
│ ├── app/
│ │ ├── api/
│ │ │ ├── stt/
│ │ │ │ └── route.ts
│ │ │ ├── tts/
│ │ │ │ └── route.ts
│ │ │ ├── vision/
│ │ │ │ └── route.ts
│ │ │ └── nlu/
│ │ │ └── route.ts
│ │ ├── (auth)/ -- maybe later
│ │ │ ├── login/
│ │ │ │ └── page.tsx
│ │ │ └── register/
│ │ │ └── page.tsx
│ │ ├── dashboard/ -- maybe later
│ │ │ └── page.tsx
│ │ ├── settings/ -- maybe later
│ │ │ └── page.tsx
│ │ ├── layout.tsx
│ │ └── page.tsx
│ ├── components/
│ │ ├── ui/
│ │ │ ├── Button.tsx
│ │ │ ├── Input.tsx
│ │ │ └── Modal.tsx
│ │ ├── VoiceAssistant.tsx
│ │ ├── WakeWordDetector.tsx
│ │ └── WebPageAnalyzer.tsx
│ ├── hooks/
│ │ ├── useAzureSpeech.ts
│ │ ├── useAzureVision.ts
│ │ └── useWebSockets.ts
│ ├── lib/
│ │ ├── azure/
│ │ │ ├── speechClient.ts
│ │ │ └── visionClient.ts
│ │ ├── prisma.ts
│ │ └── openai.ts
│ ├── utils/
│ │ ├── audio.ts
│ │ ├── domManipulation.ts
│ │ └── imageProcessing.ts
│ └── types/
│ └── index.d.ts
├── public/
│ ├── models/
│ │ └── wake-word-model.json
│ └── fonts/
├── prisma/
│ └── schema.prisma
├── tests/
│ ├── unit/
│ └── integration/
├── extension/
│ ├── src/
│ │ ├── content-scripts/
│ │ │ └── index.ts
│ │ ├── background/
│ │ │ └── index.ts
│ │ └── popup/
│ │ ├── index.html
│ │ └── index.ts
│ ├── public/
│ │ ├── manifest.json
│ │ └── icons/
│ └── webpack.config.js
├── scripts/
│ └── build-extension.js
├── .env
├── .env.example
├── .eslintrc.json
├── .prettierrc
├── next.config.js
├── package.json
├── tsconfig.json
└── README.md