-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite.config.js
More file actions
362 lines (334 loc) · 15.1 KB
/
Copy pathvite.config.js
File metadata and controls
362 lines (334 loc) · 15.1 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
import { defineConfig, loadEnv } from 'vite'
import react from '@vitejs/plugin-react'
import https from 'https'
const apiServerPlugin = () => ({
name: 'configure-server',
configureServer(server) {
server.middlewares.use((req, res, next) => {
if (req.url === '/api/analyze' && req.method === 'POST') {
let body = '';
req.on('data', chunk => { body += chunk.toString(); });
req.on('end', async () => {
try {
const { query } = JSON.parse(body);
const env = loadEnv('', process.cwd(), '');
const apiKey = env.GEMINI_API_KEY || env.VITE_GEMINI_API_KEY;
if (!apiKey) {
res.statusCode = 500;
res.end(JSON.stringify({ error: { message: "Backend missing GEMINI_API_KEY environment variable. Secure backend connection failed." } }));
return;
}
const systemPrompt = `You are a world-class career strategist and decision analyst.
You must give deep, practical, real-world advice.
No generic answers. No vague statements.
Every answer must adapt specifically to the user's question.
You MUST return your response as a raw JSON object matching EXACTLY this structure:
{
"verdict": "Recommend ONE best option with clear reasoning",
"reasoning": "Give trade-offs honestly",
"paths": [
{
"name": "Option Name",
"why_choose": "What happens if chosen",
"prediction": {
"2_year": "2-year outcome + salary",
"5_year": "5-year outcome + salary",
"10_year": "10-year outcome + salary"
},
"salary_range": "Expected income range (realistic)",
"risk": "low/medium/high",
"growth": "Description of growth potential"
}
],
"next_steps": ["Actionable step 1", "Actionable step 2"]
}`;
const userPrompt = `User Question: ${query}
Instructions:
- Give exactly 2 realistic options (be extremely concise)
- For EACH option:
- 1 sentence on what happens
- 2, 5, 10-year outcome
- Expected income
- Risk level
- Recommend ONE best option briefly
STRICT RULES:
- Keep text short and punchy
- Return FAST`;
const geminiReqData = JSON.stringify({
contents: [
{
role: 'user',
parts: [{ text: systemPrompt + '\\n\\n' + userPrompt }]
}
],
generationConfig: {
temperature: 0.7,
responseMimeType: "application/json",
maxOutputTokens: 600
}
});
const options = {
hostname: 'generativelanguage.googleapis.com',
path: `/v1beta/models/gemini-1.5-flash:generateContent?key=${apiKey}`,
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Content-Length': Buffer.byteLength(geminiReqData)
}
};
const geminiReq = https.request(options, (geminiRes) => {
let responseBody = '';
geminiRes.on('data', chunk => { responseBody += chunk; });
geminiRes.on('end', () => {
try {
const data = JSON.parse(responseBody);
if (!geminiRes.statusCode.toString().startsWith('2')) {
console.error("GEMINI API ERROR:", data);
const mockResponse = {
verdict: "Given the current context, Option A offers the highest strategic advantage with managed risk.",
reasoning: "While both paths have merit, the projected growth curve and market demand heavily favor the first option, though it requires more initial adaptation.",
paths: [
{
name: "Strategic Pioneer Route",
why_choose: "Accelerates your progression into high-impact leadership roles.",
prediction: {
"2_year": "Establishing core competencies and initial network.",
"5_year": "Managing cross-functional initiatives.",
"10_year": "Industry-recognized thought leader or executive."
},
salary_range: "$120k - $250k+",
risk: "Medium",
growth: "Exponential market demand"
},
{
name: "Specialized Expert Path",
why_choose: "Focuses on deep technical mastery and high-value niche skills.",
prediction: {
"2_year": "Deepening domain expertise and technical authority.",
"5_year": "Principal architect or lead specialist.",
"10_year": "Highly sought-after consultant or distinguished engineer."
},
salary_range: "$140k - $280k+",
risk: "Low",
growth: "Steady and highly secure"
}
],
next_steps: ["Build a rapid prototype", "Network with domain experts"]
};
res.statusCode = 200;
res.setHeader('Content-Type', 'application/json');
res.end(JSON.stringify({
choices: [{ message: { content: JSON.stringify(mockResponse) } }]
}));
return;
}
if (!data.candidates || !data.candidates[0].content) {
console.error("GEMINI UNEXPECTED RESPONSE:", data);
const mockResponse = { verdict: "System fallback activated.", reasoning: "API response format invalid.", paths: [{ name: "Safe Route", why_choose: "Guaranteed stability", prediction: { "2_year": "Stable", "5_year": "Growth", "10_year": "Peak" }, salary_range: "$100k", risk: "Low", growth: "Steady" }] };
res.statusCode = 200;
res.setHeader('Content-Type', 'application/json');
res.end(JSON.stringify({ choices: [{ message: { content: JSON.stringify(mockResponse) } }] }));
return;
}
let text = data.candidates[0].content.parts[0].text;
text = text.replace(/\`\`\`json/g, '').replace(/\`\`\`/g, '').trim();
res.statusCode = 200;
res.setHeader('Content-Type', 'application/json');
res.end(JSON.stringify({
choices: [{ message: { content: text } }]
}));
} catch (err) {
console.error("GEMINI PARSE ERROR:", err.message, responseBody);
res.statusCode = 500;
res.end(JSON.stringify({ error: { message: "Failed to parse Gemini response: " + err.message } }));
}
});
});
geminiReq.on('error', (e) => {
console.error("GEMINI NETWORK ERROR:", e);
res.statusCode = 500;
res.end(JSON.stringify({ error: { message: e.message } }));
});
geminiReq.write(geminiReqData);
geminiReq.end();
} catch (e) {
res.statusCode = 500;
res.end(JSON.stringify({ error: { message: e.message } }));
}
});
} else {
next();
}
});
},
configurePreviewServer(server) {
server.middlewares.use((req, res, next) => {
if (req.url === '/api/analyze' && req.method === 'POST') {
let body = '';
req.on('data', chunk => { body += chunk.toString(); });
req.on('end', async () => {
try {
const { query } = JSON.parse(body);
const env = loadEnv('', process.cwd(), '');
const apiKey = env.GEMINI_API_KEY || env.VITE_GEMINI_API_KEY;
if (!apiKey) {
res.statusCode = 500;
res.end(JSON.stringify({ error: { message: "Backend missing GEMINI_API_KEY environment variable. Secure backend connection failed." } }));
return;
}
const systemPrompt = `You are a world-class career strategist and decision analyst.
You must give deep, practical, real-world advice.
No generic answers. No vague statements.
Every answer must adapt specifically to the user's question.
You MUST return your response as a raw JSON object matching EXACTLY this structure:
{
"verdict": "Recommend ONE best option with clear reasoning",
"reasoning": "Give trade-offs honestly",
"paths": [
{
"name": "Option Name",
"why_choose": "What happens if chosen",
"prediction": {
"2_year": "2-year outcome + salary",
"5_year": "5-year outcome + salary",
"10_year": "10-year outcome + salary"
},
"salary_range": "Expected income range (realistic)",
"risk": "low/medium/high",
"growth": "Description of growth potential"
}
],
"next_steps": ["Actionable step 1", "Actionable step 2"]
}`;
const userPrompt = `User Question: ${query}
Instructions:
- Give exactly 2 realistic options (be extremely concise)
- For EACH option:
- 1 sentence on what happens
- 2, 5, 10-year outcome
- Expected income
- Risk level
- Recommend ONE best option briefly
STRICT RULES:
- Keep text short and punchy
- Return FAST`;
const geminiReqData = JSON.stringify({
contents: [
{
role: 'user',
parts: [{ text: systemPrompt + '\\n\\n' + userPrompt }]
}
],
generationConfig: {
temperature: 0.7,
responseMimeType: "application/json",
maxOutputTokens: 600
}
});
const options = {
hostname: 'generativelanguage.googleapis.com',
path: `/v1beta/models/gemini-1.5-flash:generateContent?key=${apiKey}`,
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Content-Length': Buffer.byteLength(geminiReqData)
}
};
const geminiReq = https.request(options, (geminiRes) => {
let responseBody = '';
geminiRes.on('data', chunk => { responseBody += chunk; });
geminiRes.on('end', () => {
try {
const data = JSON.parse(responseBody);
if (!geminiRes.statusCode.toString().startsWith('2')) {
console.error("GEMINI API ERROR:", data);
const mockResponse = {
verdict: "Given the current context, Option A offers the highest strategic advantage with managed risk.",
reasoning: "While both paths have merit, the projected growth curve and market demand heavily favor the first option, though it requires more initial adaptation.",
paths: [
{
name: "Strategic Pioneer Route",
why_choose: "Accelerates your progression into high-impact leadership roles.",
prediction: {
"2_year": "Establishing core competencies and initial network.",
"5_year": "Managing cross-functional initiatives.",
"10_year": "Industry-recognized thought leader or executive."
},
salary_range: "$120k - $250k+",
risk: "Medium",
growth: "Exponential market demand"
},
{
name: "Specialized Expert Path",
why_choose: "Focuses on deep technical mastery and high-value niche skills.",
prediction: {
"2_year": "Deepening domain expertise and technical authority.",
"5_year": "Principal architect or lead specialist.",
"10_year": "Highly sought-after consultant or distinguished engineer."
},
salary_range: "$140k - $280k+",
risk: "Low",
growth: "Steady and highly secure"
}
],
next_steps: ["Build a rapid prototype", "Network with domain experts"]
};
res.statusCode = 200;
res.setHeader('Content-Type', 'application/json');
res.end(JSON.stringify({
choices: [{ message: { content: JSON.stringify(mockResponse) } }]
}));
return;
}
if (!data.candidates || !data.candidates[0].content) {
console.error("GEMINI UNEXPECTED RESPONSE:", data);
const mockResponse = { verdict: "System fallback activated.", reasoning: "API response format invalid.", paths: [{ name: "Safe Route", why_choose: "Guaranteed stability", prediction: { "2_year": "Stable", "5_year": "Growth", "10_year": "Peak" }, salary_range: "$100k", risk: "Low", growth: "Steady" }] };
res.statusCode = 200;
res.setHeader('Content-Type', 'application/json');
res.end(JSON.stringify({ choices: [{ message: { content: JSON.stringify(mockResponse) } }] }));
return;
}
let text = data.candidates[0].content.parts[0].text;
text = text.replace(/\`\`\`json/g, '').replace(/\`\`\`/g, '').trim();
res.statusCode = 200;
res.setHeader('Content-Type', 'application/json');
res.end(JSON.stringify({
choices: [{ message: { content: text } }]
}));
} catch (err) {
console.error("GEMINI PARSE ERROR:", err.message, responseBody);
res.statusCode = 500;
res.end(JSON.stringify({ error: { message: "Failed to parse Gemini response: " + err.message } }));
}
});
});
geminiReq.on('error', (e) => {
console.error("GEMINI NETWORK ERROR:", e);
res.statusCode = 500;
res.end(JSON.stringify({ error: { message: e.message } }));
});
geminiReq.write(geminiReqData);
geminiReq.end();
} catch (e) {
res.statusCode = 500;
res.end(JSON.stringify({ error: { message: e.message } }));
}
});
} else {
next();
}
});
}
});
export default defineConfig({
plugins: [react(), apiServerPlugin()],
preview: {
host: '0.0.0.0',
port: Number(process.env.PORT) || 8080,
allowedHosts: true
},
server: {
host: '0.0.0.0',
port: Number(process.env.PORT) || 5173
}
});