@code-insights/cli 3.3.0 → 3.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +39 -0
- package/README.md +11 -7
- package/dashboard-dist/assets/{index-cAfuFBOl.js → index-BRUFVAPq.js} +148 -138
- package/dashboard-dist/assets/index-CYJdtaMC.css +1 -0
- package/dashboard-dist/favicon.svg +17 -3
- package/dashboard-dist/index.html +2 -2
- package/dist/commands/dashboard.d.ts.map +1 -1
- package/dist/commands/dashboard.js +9 -1
- package/dist/commands/dashboard.js.map +1 -1
- package/dist/commands/init.d.ts.map +1 -1
- package/dist/commands/init.js +4 -1
- package/dist/commands/init.js.map +1 -1
- package/dist/commands/install-hook.d.ts.map +1 -1
- package/dist/commands/install-hook.js +48 -40
- package/dist/commands/install-hook.js.map +1 -1
- package/dist/commands/reset.d.ts.map +1 -1
- package/dist/commands/reset.js +4 -1
- package/dist/commands/reset.js.map +1 -1
- package/dist/commands/status.d.ts.map +1 -1
- package/dist/commands/status.js +66 -58
- package/dist/commands/status.js.map +1 -1
- package/dist/commands/sync.d.ts.map +1 -1
- package/dist/commands/sync.js +5 -1
- package/dist/commands/sync.js.map +1 -1
- package/dist/types.d.ts +27 -3
- package/dist/types.d.ts.map +1 -1
- package/dist/utils/banner.d.ts +6 -0
- package/dist/utils/banner.d.ts.map +1 -0
- package/dist/utils/banner.js +30 -0
- package/dist/utils/banner.js.map +1 -0
- package/dist/utils/telemetry.d.ts +16 -0
- package/dist/utils/telemetry.d.ts.map +1 -1
- package/dist/utils/telemetry.js +76 -0
- package/dist/utils/telemetry.js.map +1 -1
- package/dist/utils/welcome.d.ts.map +1 -1
- package/dist/utils/welcome.js +2 -3
- package/dist/utils/welcome.js.map +1 -1
- package/package.json +1 -1
- package/server-dist/llm/analysis.d.ts +5 -1
- package/server-dist/llm/analysis.d.ts.map +1 -1
- package/server-dist/llm/analysis.js +58 -17
- package/server-dist/llm/analysis.js.map +1 -1
- package/server-dist/llm/prompts.d.ts +45 -9
- package/server-dist/llm/prompts.d.ts.map +1 -1
- package/server-dist/llm/prompts.js +199 -60
- package/server-dist/llm/prompts.js.map +1 -1
- package/server-dist/llm/providers/anthropic.js +1 -1
- package/server-dist/llm/providers/gemini.js +1 -1
- package/server-dist/llm/providers/openai.d.ts.map +1 -1
- package/server-dist/llm/providers/openai.js +1 -0
- package/server-dist/llm/providers/openai.js.map +1 -1
- package/server-dist/routes/analysis.d.ts.map +1 -1
- package/server-dist/routes/analysis.js +80 -28
- package/server-dist/routes/analysis.js.map +1 -1
- package/server-dist/routes/analytics.d.ts.map +1 -1
- package/server-dist/routes/analytics.js +10 -0
- package/server-dist/routes/analytics.js.map +1 -1
- package/dashboard-dist/assets/index-BMhL7wL8.css +0 -1
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
// Analysis prompts and response parsers for LLM session analysis.
|
|
2
2
|
// Ported from web repo (src/lib/llm/prompts.ts) with SQLite-aware message formatting.
|
|
3
|
+
import { jsonrepair } from 'jsonrepair';
|
|
3
4
|
/**
|
|
4
5
|
* Format SQLite message rows for LLM consumption.
|
|
5
6
|
* Handles snake_case fields and JSON-encoded tool_calls/tool_results.
|
|
@@ -38,9 +39,9 @@ export function formatMessagesForAnalysis(messages) {
|
|
|
38
39
|
const thinkingInfo = m.thinking
|
|
39
40
|
? `\n[Thinking: ${m.thinking.slice(0, 1000)}]`
|
|
40
41
|
: '';
|
|
41
|
-
// Include tool results for context —
|
|
42
|
+
// Include tool results for context — 500 chars per result (error messages need ~300-400 chars)
|
|
42
43
|
const resultInfo = toolResults.length > 0
|
|
43
|
-
? `\n[Tool results: ${toolResults.map(r => (r.output || '').slice(0,
|
|
44
|
+
? `\n[Tool results: ${toolResults.map(r => (r.output || '').slice(0, 500)).join(' | ')}]`
|
|
44
45
|
: '';
|
|
45
46
|
return `### ${roleLabel}:\n${m.content}${thinkingInfo}${toolInfo}${resultInfo}`;
|
|
46
47
|
})
|
|
@@ -49,12 +50,22 @@ export function formatMessagesForAnalysis(messages) {
|
|
|
49
50
|
/**
|
|
50
51
|
* System prompt for session analysis.
|
|
51
52
|
*/
|
|
52
|
-
export const SESSION_ANALYSIS_SYSTEM_PROMPT = `You are
|
|
53
|
+
export const SESSION_ANALYSIS_SYSTEM_PROMPT = `You are a senior staff engineer writing entries for a team's engineering knowledge base. You've just observed an AI-assisted coding session and your job is to extract the insights that would save another engineer time if they encountered a similar situation 6 months from now.
|
|
53
54
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
Your audience is a developer who has never seen this session but works on the same codebase. They need enough context to understand WHY a decision was made, WHAT specific gotcha was discovered, and WHEN this knowledge applies.
|
|
56
|
+
|
|
57
|
+
You will extract:
|
|
58
|
+
1. **Summary**: A narrative of what was accomplished and the outcome
|
|
59
|
+
2. **Decisions**: Technical choices made — with full situation context, reasoning, rejected alternatives, trade-offs, and conditions for revisiting (max 3)
|
|
60
|
+
3. **Learnings**: Technical discoveries, gotchas, debugging breakthroughs — with the observable symptom, root cause, and a transferable takeaway (max 5)
|
|
61
|
+
4. **Session Character**: Classify the session into exactly one of these types based on its overall nature:
|
|
62
|
+
- deep_focus: Long, concentrated work on a specific problem or area (50+ messages, deep into one topic)
|
|
63
|
+
- bug_hunt: Debugging-driven — investigating errors, tracing issues, fixing bugs
|
|
64
|
+
- feature_build: Building new functionality — creating files, adding endpoints, wiring components
|
|
65
|
+
- exploration: Research-oriented — reading code, searching, understanding before acting
|
|
66
|
+
- refactor: Restructuring existing code — renaming, moving, reorganizing without new features
|
|
67
|
+
- learning: Knowledge-seeking — asking questions, understanding concepts, getting explanations
|
|
68
|
+
- quick_task: Short and focused — small fix, config change, or one-off task (<10 messages)
|
|
58
69
|
|
|
59
70
|
Quality Standards:
|
|
60
71
|
- Only include insights you would write in a team knowledge base for future reference
|
|
@@ -63,7 +74,12 @@ Quality Standards:
|
|
|
63
74
|
- Rate your confidence in each insight's value (0-100). Only include insights you rate 70+.
|
|
64
75
|
- It is better to return 0 insights in a category than to include generic or trivial ones
|
|
65
76
|
- If a session is straightforward with no notable decisions or learnings, say so in the summary and leave other categories empty
|
|
66
|
-
|
|
77
|
+
|
|
78
|
+
Length Guidance:
|
|
79
|
+
- Fill every field in the schema. An empty "trade_offs" or "revisit_when" is worse than a longer response.
|
|
80
|
+
- Total response: stay under 2000 tokens. If you must cut, drop lower-confidence insights rather than compressing high-confidence ones.
|
|
81
|
+
- Evidence: 1-3 short quotes per insight, referencing turn labels.
|
|
82
|
+
- Prefer precision over brevity — a specific 3-sentence insight beats a vague 1-sentence insight.
|
|
67
83
|
|
|
68
84
|
DO NOT include insights like these (too generic/trivial):
|
|
69
85
|
- "Used debugging techniques to fix an issue"
|
|
@@ -73,6 +89,35 @@ DO NOT include insights like these (too generic/trivial):
|
|
|
73
89
|
- "Fixed a bug in the code" (what bug? what was the root cause?)
|
|
74
90
|
- Anything that restates the task without adding transferable knowledge
|
|
75
91
|
|
|
92
|
+
Here are examples of EXCELLENT insights — this is the quality bar:
|
|
93
|
+
|
|
94
|
+
EXCELLENT decision:
|
|
95
|
+
{
|
|
96
|
+
"title": "Use better-sqlite3 instead of sql.js for local database",
|
|
97
|
+
"situation": "Needed a SQLite driver for a Node.js CLI that stores session data locally. Single-user, read-heavy from dashboard, occasional writes during sync.",
|
|
98
|
+
"choice": "better-sqlite3 — synchronous C++ binding with native SQLite access, no async overhead.",
|
|
99
|
+
"reasoning": "CLI runs locally with no concurrent users. Synchronous API eliminates callback complexity. WAL mode provides concurrent read access for the dashboard while CLI writes.",
|
|
100
|
+
"alternatives": [
|
|
101
|
+
{"option": "sql.js (WASM build)", "rejected_because": "3x slower for bulk inserts, entire DB in memory, no WAL support"},
|
|
102
|
+
{"option": "PostgreSQL via Docker", "rejected_because": "Violates local-first constraint — requires running a server process"}
|
|
103
|
+
],
|
|
104
|
+
"trade_offs": "Requires native compilation (node-gyp) which can fail on some systems. No browser compatibility.",
|
|
105
|
+
"revisit_when": "If multi-device sync is added or users report node-gyp build failures.",
|
|
106
|
+
"confidence": 92,
|
|
107
|
+
"evidence": ["User#3: 'We need something that works without a server'", "Assistant#4: 'better-sqlite3 with WAL mode gives concurrent reads...'"]
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
EXCELLENT learning:
|
|
111
|
+
{
|
|
112
|
+
"title": "Tailwind v4 requires @theme inline{} for CSS variable utilities",
|
|
113
|
+
"symptom": "After Tailwind v3→v4 upgrade, custom utilities like bg-primary stopped working. Classes present in HTML but no styles applied.",
|
|
114
|
+
"root_cause": "Tailwind v4 removed tailwind.config.js theme extension. CSS variables in :root are not automatically available as utilities — must be registered via @theme inline {} in the CSS file.",
|
|
115
|
+
"takeaway": "When migrating Tailwind v3→v4 with shadcn/ui: add @theme inline {} mapping CSS variables, add @custom-variant dark for class-based dark mode, replace tailwindcss-animate with tw-animate-css.",
|
|
116
|
+
"applies_when": "Any Tailwind v3→v4 migration using CSS variables for theming, especially with shadcn/ui.",
|
|
117
|
+
"confidence": 95,
|
|
118
|
+
"evidence": ["User#12: 'The colors are all gone after the upgrade'", "Assistant#13: 'Tailwind v4 requires explicit @theme inline registration...'"]
|
|
119
|
+
}
|
|
120
|
+
|
|
76
121
|
Respond with valid JSON only, wrapped in <json>...</json> tags. Do not include any other text.`;
|
|
77
122
|
/**
|
|
78
123
|
* Generate the user prompt for session analysis.
|
|
@@ -88,28 +133,37 @@ ${formattedMessages}
|
|
|
88
133
|
|
|
89
134
|
Extract insights in this JSON format:
|
|
90
135
|
{
|
|
136
|
+
"session_character": "deep_focus | bug_hunt | feature_build | exploration | refactor | learning | quick_task",
|
|
91
137
|
"summary": {
|
|
92
|
-
"title": "Brief title describing main accomplishment (max
|
|
93
|
-
"content": "2-
|
|
94
|
-
"
|
|
138
|
+
"title": "Brief title describing main accomplishment (max 80 chars)",
|
|
139
|
+
"content": "2-4 sentence narrative: what was the goal, what was done, what was the outcome. Mention the primary file or component changed.",
|
|
140
|
+
"outcome": "success | partial | abandoned | blocked",
|
|
141
|
+
"bullets": ["Each bullet names a specific artifact (file, function, endpoint) and what changed"]
|
|
95
142
|
},
|
|
96
143
|
"decisions": [
|
|
97
144
|
{
|
|
98
|
-
"title": "The specific
|
|
99
|
-
"
|
|
100
|
-
"
|
|
101
|
-
"
|
|
145
|
+
"title": "The specific technical choice made (max 80 chars)",
|
|
146
|
+
"situation": "What problem or requirement led to this decision point",
|
|
147
|
+
"choice": "What was chosen and how it was implemented",
|
|
148
|
+
"reasoning": "Why this choice was made — the key factors that tipped the decision",
|
|
149
|
+
"alternatives": [
|
|
150
|
+
{"option": "Name of alternative", "rejected_because": "Why it was not chosen"}
|
|
151
|
+
],
|
|
152
|
+
"trade_offs": "What downsides were accepted, what was given up",
|
|
153
|
+
"revisit_when": "Under what conditions this decision should be reconsidered (or 'N/A' if permanent)",
|
|
102
154
|
"confidence": 85,
|
|
103
|
-
"evidence": ["User#4: ...", "Assistant#5: ..."]
|
|
155
|
+
"evidence": ["User#4: quoted text...", "Assistant#5: quoted text..."]
|
|
104
156
|
}
|
|
105
157
|
],
|
|
106
158
|
"learnings": [
|
|
107
159
|
{
|
|
108
|
-
"title": "Specific
|
|
109
|
-
"
|
|
110
|
-
"
|
|
160
|
+
"title": "Specific technical discovery or gotcha (max 80 chars)",
|
|
161
|
+
"symptom": "What went wrong or was confusing — the observable behavior that triggered investigation",
|
|
162
|
+
"root_cause": "The underlying technical reason — why it happened",
|
|
163
|
+
"takeaway": "The transferable lesson — what to do or avoid in similar situations, useful outside this project",
|
|
164
|
+
"applies_when": "Conditions under which this knowledge is relevant (framework version, configuration, etc.)",
|
|
111
165
|
"confidence": 80,
|
|
112
|
-
"evidence": ["User#7: ...", "Assistant#8: ..."]
|
|
166
|
+
"evidence": ["User#7: quoted text...", "Assistant#8: quoted text..."]
|
|
113
167
|
}
|
|
114
168
|
]
|
|
115
169
|
}
|
|
@@ -119,6 +173,14 @@ Evidence should reference the labeled turns in the conversation (e.g., "User#2",
|
|
|
119
173
|
|
|
120
174
|
Respond with valid JSON only, wrapped in <json>...</json> tags. Do not include any other text.`;
|
|
121
175
|
}
|
|
176
|
+
const VALID_SESSION_CHARACTERS = new Set([
|
|
177
|
+
'deep_focus', 'bug_hunt', 'feature_build', 'exploration', 'refactor', 'learning', 'quick_task',
|
|
178
|
+
]);
|
|
179
|
+
function buildResponsePreview(text, head = 200, tail = 200) {
|
|
180
|
+
if (text.length <= head + tail + 20)
|
|
181
|
+
return text;
|
|
182
|
+
return `${text.slice(0, head)}\n...[${text.length - head - tail} chars omitted]...\n${text.slice(-tail)}`;
|
|
183
|
+
}
|
|
122
184
|
function extractJsonPayload(response) {
|
|
123
185
|
const tagged = response.match(/<json>\s*([\s\S]*?)\s*<\/json>/i);
|
|
124
186
|
if (tagged?.[1])
|
|
@@ -130,45 +192,83 @@ function extractJsonPayload(response) {
|
|
|
130
192
|
* Parse the LLM response into structured insights.
|
|
131
193
|
*/
|
|
132
194
|
export function parseAnalysisResponse(response) {
|
|
195
|
+
const response_length = response.length;
|
|
196
|
+
const preview = buildResponsePreview(response);
|
|
197
|
+
const jsonPayload = extractJsonPayload(response);
|
|
198
|
+
if (!jsonPayload) {
|
|
199
|
+
console.error('No JSON found in analysis response');
|
|
200
|
+
return {
|
|
201
|
+
success: false,
|
|
202
|
+
error: { error_type: 'no_json_found', error_message: 'No JSON found in analysis response', response_length, response_preview: preview },
|
|
203
|
+
};
|
|
204
|
+
}
|
|
205
|
+
let parsed;
|
|
133
206
|
try {
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
207
|
+
parsed = JSON.parse(jsonPayload);
|
|
208
|
+
}
|
|
209
|
+
catch {
|
|
210
|
+
// Attempt repair — handles trailing commas, unclosed braces, truncated output
|
|
211
|
+
try {
|
|
212
|
+
parsed = JSON.parse(jsonrepair(jsonPayload));
|
|
138
213
|
}
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
console.error('
|
|
142
|
-
return
|
|
214
|
+
catch (err) {
|
|
215
|
+
const msg = err instanceof Error ? err.message : String(err);
|
|
216
|
+
console.error('Failed to parse analysis response (after jsonrepair):', err);
|
|
217
|
+
return {
|
|
218
|
+
success: false,
|
|
219
|
+
error: { error_type: 'json_parse_error', error_message: msg, response_length, response_preview: preview },
|
|
220
|
+
};
|
|
143
221
|
}
|
|
144
|
-
parsed.decisions = parsed.decisions || [];
|
|
145
|
-
parsed.learnings = parsed.learnings || [];
|
|
146
|
-
return parsed;
|
|
147
222
|
}
|
|
148
|
-
|
|
149
|
-
console.error('
|
|
150
|
-
return
|
|
223
|
+
if (!parsed.summary || typeof parsed.summary.title !== 'string') {
|
|
224
|
+
console.error('Invalid analysis response structure');
|
|
225
|
+
return {
|
|
226
|
+
success: false,
|
|
227
|
+
error: { error_type: 'invalid_structure', error_message: 'Missing or invalid summary field', response_length, response_preview: preview },
|
|
228
|
+
};
|
|
229
|
+
}
|
|
230
|
+
parsed.decisions = parsed.decisions || [];
|
|
231
|
+
parsed.learnings = parsed.learnings || [];
|
|
232
|
+
// Validate session_character — drop if not a recognized value
|
|
233
|
+
if (parsed.session_character && !VALID_SESSION_CHARACTERS.has(parsed.session_character)) {
|
|
234
|
+
parsed.session_character = undefined;
|
|
151
235
|
}
|
|
236
|
+
return { success: true, data: parsed };
|
|
152
237
|
}
|
|
153
238
|
// --- Prompt Quality Analysis ---
|
|
154
|
-
export const PROMPT_QUALITY_SYSTEM_PROMPT = `You are
|
|
239
|
+
export const PROMPT_QUALITY_SYSTEM_PROMPT = `You are a prompt engineering coach helping developers communicate more effectively with AI coding assistants. You review conversations and identify specific moments where better prompting would have saved time.
|
|
155
240
|
|
|
156
241
|
You will identify:
|
|
157
242
|
1. **Wasted turns**: User messages that led to clarifications, corrections, or repeated instructions because the original prompt was unclear, missing context, or too vague.
|
|
158
|
-
2. **Anti-patterns**: Recurring bad habits in the user's prompting style.
|
|
159
|
-
3. **
|
|
160
|
-
4. **
|
|
243
|
+
2. **Anti-patterns**: Recurring bad habits in the user's prompting style, with specific fixes.
|
|
244
|
+
3. **Session traits**: Higher-level behavioral patterns about how the session was structured and managed.
|
|
245
|
+
4. **Efficiency score**: A 0-100 rating of how optimally the user communicated.
|
|
246
|
+
5. **Actionable tips**: Specific improvements the user can make.
|
|
247
|
+
|
|
248
|
+
Before evaluating, mentally walk through the conversation and identify:
|
|
249
|
+
1. Each time the assistant asked for clarification that could have been avoided
|
|
250
|
+
2. Each time the user corrected the assistant's interpretation
|
|
251
|
+
3. Each time the user repeated an instruction they gave earlier
|
|
252
|
+
4. Whether the session covers too many unrelated objectives (context drift / session bloat)
|
|
253
|
+
5. Whether the user provided critical context or requirements late that should have been mentioned upfront
|
|
254
|
+
6. Whether the user discussed the plan/approach before jumping into implementation, or dove straight into code
|
|
255
|
+
These are your candidate findings. Only include them if they are genuinely actionable.
|
|
161
256
|
|
|
162
257
|
Guidelines:
|
|
163
258
|
- Focus on USER messages only — don't critique the assistant's responses
|
|
164
259
|
- A "wasted turn" is when the user had to send a follow-up message to clarify, correct, or repeat something that could have been included in the original prompt
|
|
165
260
|
- Only mark a wasted turn if the assistant explicitly asked for clarification or corrected a misunderstanding
|
|
166
|
-
- Common anti-patterns: vague instructions, missing file paths, not providing error messages, incomplete requirements, repeated instructions, not specifying what "it" refers to
|
|
167
261
|
- Be constructive, not judgmental — the goal is to help users improve
|
|
168
262
|
- Consider the context: some clarification exchanges are normal and expected
|
|
169
263
|
- A score of 100 means every user message was perfectly clear and complete
|
|
170
264
|
- A score of 50 means about half the messages could have been more efficient
|
|
171
265
|
|
|
266
|
+
Length Guidance:
|
|
267
|
+
- Max 5 wasted turns, max 3 anti-patterns, max 3 session traits, max 5 tips
|
|
268
|
+
- suggestedRewrite must be a complete, usable prompt — not vague meta-advice
|
|
269
|
+
- overallAssessment: 2-3 sentences
|
|
270
|
+
- Total response: stay under 2000 tokens
|
|
271
|
+
|
|
172
272
|
Respond with valid JSON only, wrapped in <json>...</json> tags. Do not include any other text.`;
|
|
173
273
|
export function generatePromptQualityPrompt(projectName, formattedMessages, messageCount) {
|
|
174
274
|
return `Analyze the user's prompting efficiency in this AI coding session.
|
|
@@ -188,15 +288,28 @@ Evaluate the user's prompting quality and respond with this JSON format:
|
|
|
188
288
|
"wastedTurns": [
|
|
189
289
|
{
|
|
190
290
|
"messageIndex": 5,
|
|
191
|
-
"
|
|
192
|
-
"
|
|
291
|
+
"originalMessage": "The user's original message (abbreviated if long)",
|
|
292
|
+
"whatWentWrong": "What information was missing or ambiguous that caused a follow-up",
|
|
293
|
+
"suggestedRewrite": "A concrete rewrite that includes the missing context — must be a complete, usable prompt",
|
|
294
|
+
"turnsWasted": 2
|
|
193
295
|
}
|
|
194
296
|
],
|
|
195
297
|
"antiPatterns": [
|
|
196
298
|
{
|
|
197
299
|
"name": "Vague Instructions",
|
|
300
|
+
"description": "Requests that lack specificity about what file, function, or behavior to change",
|
|
198
301
|
"count": 3,
|
|
199
|
-
"examples": ["fix it", "make it work",
|
|
302
|
+
"examples": ["User#2: 'fix it'", "User#5: 'make it work'"],
|
|
303
|
+
"fix": "Include the file path, function name, and expected vs actual behavior in the initial request"
|
|
304
|
+
}
|
|
305
|
+
],
|
|
306
|
+
"sessionTraits": [
|
|
307
|
+
{
|
|
308
|
+
"trait": "context_drift | objective_bloat | late_context | no_planning | good_structure",
|
|
309
|
+
"severity": "high | medium | low",
|
|
310
|
+
"description": "What was observed and why it matters",
|
|
311
|
+
"evidence": "User#3 switched from auth to styling, then back to auth at User#12",
|
|
312
|
+
"suggestion": "Break into separate sessions: one for auth, one for styling"
|
|
200
313
|
}
|
|
201
314
|
],
|
|
202
315
|
"tips": [
|
|
@@ -205,6 +318,13 @@ Evaluate the user's prompting quality and respond with this JSON format:
|
|
|
205
318
|
]
|
|
206
319
|
}
|
|
207
320
|
|
|
321
|
+
Session trait definitions:
|
|
322
|
+
- **context_drift**: Session covers too many unrelated objectives, causing the AI to lose context and produce lower quality output
|
|
323
|
+
- **objective_bloat**: Too many different tasks crammed into one session instead of focused, single-purpose sessions
|
|
324
|
+
- **late_context**: Critical requirements, constraints, or context provided late in the conversation that should have been mentioned upfront — causing rework or wasted turns
|
|
325
|
+
- **no_planning**: User jumped straight into implementation without discussing approach, requirements, or plan — leading to course corrections mid-session
|
|
326
|
+
- **good_structure**: Session was well-structured with clear objectives, upfront context, and logical flow (only include this if truly exemplary)
|
|
327
|
+
|
|
208
328
|
Rules:
|
|
209
329
|
- messageIndex refers to the 0-based index of the USER message, as labeled in the conversation (e.g., User#0)
|
|
210
330
|
- Only include genuinely wasted turns, not normal back-and-forth
|
|
@@ -215,28 +335,47 @@ Rules:
|
|
|
215
335
|
Respond with valid JSON only, wrapped in <json>...</json> tags. Do not include any other text.`;
|
|
216
336
|
}
|
|
217
337
|
export function parsePromptQualityResponse(response) {
|
|
338
|
+
const response_length = response.length;
|
|
339
|
+
const preview = buildResponsePreview(response);
|
|
340
|
+
const jsonPayload = extractJsonPayload(response);
|
|
341
|
+
if (!jsonPayload) {
|
|
342
|
+
console.error('No JSON found in prompt quality response');
|
|
343
|
+
return {
|
|
344
|
+
success: false,
|
|
345
|
+
error: { error_type: 'no_json_found', error_message: 'No JSON found in prompt quality response', response_length, response_preview: preview },
|
|
346
|
+
};
|
|
347
|
+
}
|
|
348
|
+
let parsed;
|
|
218
349
|
try {
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
350
|
+
parsed = JSON.parse(jsonPayload);
|
|
351
|
+
}
|
|
352
|
+
catch {
|
|
353
|
+
try {
|
|
354
|
+
parsed = JSON.parse(jsonrepair(jsonPayload));
|
|
223
355
|
}
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
console.error('
|
|
227
|
-
return
|
|
356
|
+
catch (err) {
|
|
357
|
+
const msg = err instanceof Error ? err.message : String(err);
|
|
358
|
+
console.error('Failed to parse prompt quality response (after jsonrepair):', err);
|
|
359
|
+
return {
|
|
360
|
+
success: false,
|
|
361
|
+
error: { error_type: 'json_parse_error', error_message: msg, response_length, response_preview: preview },
|
|
362
|
+
};
|
|
228
363
|
}
|
|
229
|
-
parsed.efficiencyScore = Math.max(0, Math.min(100, Math.round(parsed.efficiencyScore)));
|
|
230
|
-
parsed.potentialMessageReduction = parsed.potentialMessageReduction || 0;
|
|
231
|
-
parsed.overallAssessment = parsed.overallAssessment || '';
|
|
232
|
-
parsed.wastedTurns = parsed.wastedTurns || [];
|
|
233
|
-
parsed.antiPatterns = parsed.antiPatterns || [];
|
|
234
|
-
parsed.tips = parsed.tips || [];
|
|
235
|
-
return parsed;
|
|
236
364
|
}
|
|
237
|
-
|
|
238
|
-
console.error('
|
|
239
|
-
return
|
|
365
|
+
if (typeof parsed.efficiencyScore !== 'number') {
|
|
366
|
+
console.error('Invalid prompt quality response: missing efficiencyScore');
|
|
367
|
+
return {
|
|
368
|
+
success: false,
|
|
369
|
+
error: { error_type: 'invalid_structure', error_message: 'Missing or invalid efficiencyScore field', response_length, response_preview: preview },
|
|
370
|
+
};
|
|
240
371
|
}
|
|
372
|
+
parsed.efficiencyScore = Math.max(0, Math.min(100, Math.round(parsed.efficiencyScore)));
|
|
373
|
+
parsed.potentialMessageReduction = parsed.potentialMessageReduction || 0;
|
|
374
|
+
parsed.overallAssessment = parsed.overallAssessment || '';
|
|
375
|
+
parsed.wastedTurns = parsed.wastedTurns || [];
|
|
376
|
+
parsed.antiPatterns = parsed.antiPatterns || [];
|
|
377
|
+
parsed.sessionTraits = parsed.sessionTraits || [];
|
|
378
|
+
parsed.tips = parsed.tips || [];
|
|
379
|
+
return { success: true, data: parsed };
|
|
241
380
|
}
|
|
242
381
|
//# sourceMappingURL=prompts.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"prompts.js","sourceRoot":"","sources":["../../src/llm/prompts.ts"],"names":[],"mappings":"AAAA,kEAAkE;AAClE,sFAAsF;
|
|
1
|
+
{"version":3,"file":"prompts.js","sourceRoot":"","sources":["../../src/llm/prompts.ts"],"names":[],"mappings":"AAAA,kEAAkE;AAClE,sFAAsF;AAEtF,OAAO,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AA0BxC;;;GAGG;AACH,MAAM,UAAU,yBAAyB,CAAC,QAA4B;IACpE,IAAI,SAAS,GAAG,CAAC,CAAC;IAClB,IAAI,cAAc,GAAG,CAAC,CAAC;IAEvB,OAAO,QAAQ;SACZ,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE;QACT,MAAM,IAAI,GAAG,CAAC,CAAC,IAAI,KAAK,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,KAAK,WAAW,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,QAAQ,CAAC;QAC1F,MAAM,SAAS,GAAG,IAAI,KAAK,MAAM;YAC/B,CAAC,CAAC,QAAQ,SAAS,EAAE,EAAE;YACvB,CAAC,CAAC,IAAI,KAAK,WAAW;gBACpB,CAAC,CAAC,aAAa,cAAc,EAAE,EAAE;gBACjC,CAAC,CAAC,QAAQ,CAAC;QAEf,gCAAgC;QAChC,IAAI,SAAS,GAAqB,EAAE,CAAC;QACrC,IAAI,CAAC;YACH,SAAS,GAAG,CAAC,CAAC,UAAU,CAAC,CAAC,CAAE,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,UAAU,CAAsB,CAAC,CAAC,CAAC,EAAE,CAAC;QACjF,CAAC;QAAC,MAAM,CAAC;YACP,SAAS,GAAG,EAAE,CAAC;QACjB,CAAC;QAED,kCAAkC;QAClC,IAAI,WAAW,GAAuB,EAAE,CAAC;QACzC,IAAI,CAAC;YACH,WAAW,GAAG,CAAC,CAAC,YAAY,CAAC,CAAC,CAAE,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,YAAY,CAAwB,CAAC,CAAC,CAAC,EAAE,CAAC;QACzF,CAAC;QAAC,MAAM,CAAC;YACP,WAAW,GAAG,EAAE,CAAC;QACnB,CAAC;QAED,MAAM,QAAQ,GAAG,SAAS,CAAC,MAAM,GAAG,CAAC;YACnC,CAAC,CAAC,kBAAkB,SAAS,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,IAAI,SAAS,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG;YACzE,CAAC,CAAC,EAAE,CAAC;QAEP,8EAA8E;QAC9E,MAAM,YAAY,GAAG,CAAC,CAAC,QAAQ;YAC7B,CAAC,CAAC,gBAAgB,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,EAAE,IAAI,CAAC,GAAG;YAC9C,CAAC,CAAC,EAAE,CAAC;QAEP,+FAA+F;QAC/F,MAAM,UAAU,GAAG,WAAW,CAAC,MAAM,GAAG,CAAC;YACvC,CAAC,CAAC,oBAAoB,WAAW,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,MAAM,IAAI,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG;YACzF,CAAC,CAAC,EAAE,CAAC;QAEP,OAAO,OAAO,SAAS,MAAM,CAAC,CAAC,OAAO,GAAG,YAAY,GAAG,QAAQ,GAAG,UAAU,EAAE,CAAC;IAClF,CAAC,CAAC;SACD,IAAI,CAAC,MAAM,CAAC,CAAC;AAClB,CAAC;AAED;;GAEG;AACH,MAAM,CAAC,MAAM,8BAA8B,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+FAoEiD,CAAC;AAEhG;;GAEG;AACH,MAAM,UAAU,6BAA6B,CAC3C,WAAmB,EACnB,cAA6B,EAC7B,iBAAyB;IAEzB,OAAO;;WAEE,WAAW;EACpB,cAAc,CAAC,CAAC,CAAC,oBAAoB,cAAc,IAAI,CAAC,CAAC,CAAC,EAAE;;EAE5D,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+FA2C4E,CAAC;AAChG,CAAC;AAED,MAAM,wBAAwB,GAAG,IAAI,GAAG,CAAS;IAC/C,YAAY,EAAE,UAAU,EAAE,eAAe,EAAE,aAAa,EAAE,UAAU,EAAE,UAAU,EAAE,YAAY;CAC/F,CAAC,CAAC;AAuCH,SAAS,oBAAoB,CAAC,IAAY,EAAE,IAAI,GAAG,GAAG,EAAE,IAAI,GAAG,GAAG;IAChE,IAAI,IAAI,CAAC,MAAM,IAAI,IAAI,GAAG,IAAI,GAAG,EAAE;QAAE,OAAO,IAAI,CAAC;IACjD,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,IAAI,CAAC,SAAS,IAAI,CAAC,MAAM,GAAG,IAAI,GAAG,IAAI,uBAAuB,IAAI,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC;AAC5G,CAAC;AAMD,SAAS,kBAAkB,CAAC,QAAgB;IAC1C,MAAM,MAAM,GAAG,QAAQ,CAAC,KAAK,CAAC,iCAAiC,CAAC,CAAC;IACjE,IAAI,MAAM,EAAE,CAAC,CAAC,CAAC;QAAE,OAAO,MAAM,CAAC,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC;IACzC,MAAM,SAAS,GAAG,QAAQ,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC;IAChD,OAAO,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;AACzC,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,qBAAqB,CAAC,QAAgB;IACpD,MAAM,eAAe,GAAG,QAAQ,CAAC,MAAM,CAAC;IAExC,MAAM,OAAO,GAAG,oBAAoB,CAAC,QAAQ,CAAC,CAAC;IAE/C,MAAM,WAAW,GAAG,kBAAkB,CAAC,QAAQ,CAAC,CAAC;IACjD,IAAI,CAAC,WAAW,EAAE,CAAC;QACjB,OAAO,CAAC,KAAK,CAAC,oCAAoC,CAAC,CAAC;QACpD,OAAO;YACL,OAAO,EAAE,KAAK;YACd,KAAK,EAAE,EAAE,UAAU,EAAE,eAAe,EAAE,aAAa,EAAE,oCAAoC,EAAE,eAAe,EAAE,gBAAgB,EAAE,OAAO,EAAE;SACxI,CAAC;IACJ,CAAC;IAED,IAAI,MAAwB,CAAC;IAC7B,IAAI,CAAC;QACH,MAAM,GAAG,IAAI,CAAC,KAAK,CAAC,WAAW,CAAqB,CAAC;IACvD,CAAC;IAAC,MAAM,CAAC;QACP,8EAA8E;QAC9E,IAAI,CAAC;YACH,MAAM,GAAG,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,WAAW,CAAC,CAAqB,CAAC;QACnE,CAAC;QAAC,OAAO,GAAG,EAAE,CAAC;YACb,MAAM,GAAG,GAAG,GAAG,YAAY,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC;YAC7D,OAAO,CAAC,KAAK,CAAC,uDAAuD,EAAE,GAAG,CAAC,CAAC;YAC5E,OAAO;gBACL,OAAO,EAAE,KAAK;gBACd,KAAK,EAAE,EAAE,UAAU,EAAE,kBAAkB,EAAE,aAAa,EAAE,GAAG,EAAE,eAAe,EAAE,gBAAgB,EAAE,OAAO,EAAE;aAC1G,CAAC;QACJ,CAAC;IACH,CAAC;IAED,IAAI,CAAC,MAAM,CAAC,OAAO,IAAI,OAAO,MAAM,CAAC,OAAO,CAAC,KAAK,KAAK,QAAQ,EAAE,CAAC;QAChE,OAAO,CAAC,KAAK,CAAC,qCAAqC,CAAC,CAAC;QACrD,OAAO;YACL,OAAO,EAAE,KAAK;YACd,KAAK,EAAE,EAAE,UAAU,EAAE,mBAAmB,EAAE,aAAa,EAAE,kCAAkC,EAAE,eAAe,EAAE,gBAAgB,EAAE,OAAO,EAAE;SAC1I,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,SAAS,GAAG,MAAM,CAAC,SAAS,IAAI,EAAE,CAAC;IAC1C,MAAM,CAAC,SAAS,GAAG,MAAM,CAAC,SAAS,IAAI,EAAE,CAAC;IAE1C,8DAA8D;IAC9D,IAAI,MAAM,CAAC,iBAAiB,IAAI,CAAC,wBAAwB,CAAC,GAAG,CAAC,MAAM,CAAC,iBAAiB,CAAC,EAAE,CAAC;QACxF,MAAM,CAAC,iBAAiB,GAAG,SAAS,CAAC;IACvC,CAAC;IAED,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;AACzC,CAAC;AAED,kCAAkC;AAElC,MAAM,CAAC,MAAM,4BAA4B,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+FAiCmD,CAAC;AAEhG,MAAM,UAAU,2BAA2B,CACzC,WAAmB,EACnB,iBAAyB,EACzB,YAAoB;IAEpB,OAAO;;WAEE,WAAW;kBACJ,YAAY;;;EAG5B,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+FAuD4E,CAAC;AAChG,CAAC;AAoCD,MAAM,UAAU,0BAA0B,CAAC,QAAgB;IACzD,MAAM,eAAe,GAAG,QAAQ,CAAC,MAAM,CAAC;IAExC,MAAM,OAAO,GAAG,oBAAoB,CAAC,QAAQ,CAAC,CAAC;IAE/C,MAAM,WAAW,GAAG,kBAAkB,CAAC,QAAQ,CAAC,CAAC;IACjD,IAAI,CAAC,WAAW,EAAE,CAAC;QACjB,OAAO,CAAC,KAAK,CAAC,0CAA0C,CAAC,CAAC;QAC1D,OAAO;YACL,OAAO,EAAE,KAAK;YACd,KAAK,EAAE,EAAE,UAAU,EAAE,eAAe,EAAE,aAAa,EAAE,0CAA0C,EAAE,eAAe,EAAE,gBAAgB,EAAE,OAAO,EAAE;SAC9I,CAAC;IACJ,CAAC;IAED,IAAI,MAA6B,CAAC;IAClC,IAAI,CAAC;QACH,MAAM,GAAG,IAAI,CAAC,KAAK,CAAC,WAAW,CAA0B,CAAC;IAC5D,CAAC;IAAC,MAAM,CAAC;QACP,IAAI,CAAC;YACH,MAAM,GAAG,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,WAAW,CAAC,CAA0B,CAAC;QACxE,CAAC;QAAC,OAAO,GAAG,EAAE,CAAC;YACb,MAAM,GAAG,GAAG,GAAG,YAAY,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC;YAC7D,OAAO,CAAC,KAAK,CAAC,6DAA6D,EAAE,GAAG,CAAC,CAAC;YAClF,OAAO;gBACL,OAAO,EAAE,KAAK;gBACd,KAAK,EAAE,EAAE,UAAU,EAAE,kBAAkB,EAAE,aAAa,EAAE,GAAG,EAAE,eAAe,EAAE,gBAAgB,EAAE,OAAO,EAAE;aAC1G,CAAC;QACJ,CAAC;IACH,CAAC;IAED,IAAI,OAAO,MAAM,CAAC,eAAe,KAAK,QAAQ,EAAE,CAAC;QAC/C,OAAO,CAAC,KAAK,CAAC,0DAA0D,CAAC,CAAC;QAC1E,OAAO;YACL,OAAO,EAAE,KAAK;YACd,KAAK,EAAE,EAAE,UAAU,EAAE,mBAAmB,EAAE,aAAa,EAAE,0CAA0C,EAAE,eAAe,EAAE,gBAAgB,EAAE,OAAO,EAAE;SAClJ,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,eAAe,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,IAAI,CAAC,GAAG,CAAC,GAAG,EAAE,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,CAAC,CAAC;IACxF,MAAM,CAAC,yBAAyB,GAAG,MAAM,CAAC,yBAAyB,IAAI,CAAC,CAAC;IACzE,MAAM,CAAC,iBAAiB,GAAG,MAAM,CAAC,iBAAiB,IAAI,EAAE,CAAC;IAC1D,MAAM,CAAC,WAAW,GAAG,MAAM,CAAC,WAAW,IAAI,EAAE,CAAC;IAC9C,MAAM,CAAC,YAAY,GAAG,MAAM,CAAC,YAAY,IAAI,EAAE,CAAC;IAChD,MAAM,CAAC,aAAa,GAAG,MAAM,CAAC,aAAa,IAAI,EAAE,CAAC;IAClD,MAAM,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,IAAI,EAAE,CAAC;IAEhC,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;AACzC,CAAC"}
|
|
@@ -19,7 +19,7 @@ export function createAnthropicClient(apiKey, model) {
|
|
|
19
19
|
signal: options?.signal,
|
|
20
20
|
body: JSON.stringify({
|
|
21
21
|
model,
|
|
22
|
-
max_tokens:
|
|
22
|
+
max_tokens: 8192,
|
|
23
23
|
system: systemMessage?.content,
|
|
24
24
|
messages: chatMessages.map(m => ({ role: m.role, content: m.content })),
|
|
25
25
|
}),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"openai.d.ts","sourceRoot":"","sources":["../../../src/llm/providers/openai.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAwC,MAAM,aAAa,CAAC;AAEnF,wBAAgB,kBAAkB,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,SAAS,
|
|
1
|
+
{"version":3,"file":"openai.d.ts","sourceRoot":"","sources":["../../../src/llm/providers/openai.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAwC,MAAM,aAAa,CAAC;AAEnF,wBAAgB,kBAAkB,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,SAAS,CA6C3E"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"openai.js","sourceRoot":"","sources":["../../../src/llm/providers/openai.ts"],"names":[],"mappings":"AAAA,wEAAwE;AAIxE,MAAM,UAAU,kBAAkB,CAAC,MAAc,EAAE,KAAa;IAC9D,OAAO;QACL,QAAQ,EAAE,QAAQ;QAClB,KAAK;QAEL,KAAK,CAAC,IAAI,CAAC,QAAsB,EAAE,OAAqB;YACtD,MAAM,QAAQ,GAAG,MAAM,KAAK,CAAC,4CAA4C,EAAE;gBACzE,MAAM,EAAE,MAAM;gBACd,OAAO,EAAE;oBACP,cAAc,EAAE,kBAAkB;oBAClC,eAAe,EAAE,UAAU,MAAM,EAAE;iBACpC;gBACD,MAAM,EAAE,OAAO,EAAE,MAAM;gBACvB,IAAI,EAAE,IAAI,CAAC,SAAS,CAAC;oBACnB,KAAK;oBACL,QAAQ,EAAE,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,IAAI,EAAE,CAAC,CAAC,IAAI,EAAE,OAAO,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC;oBACnE,WAAW,EAAE,GAAG;iBACjB,CAAC;aACH,CAAC,CAAC;YAEH,IAAI,CAAC,QAAQ,CAAC,EAAE,EAAE,CAAC;gBACjB,MAAM,KAAK,GAAG,MAAM,QAAQ,CAAC,IAAI,EAAE,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,CAAC,CAAqC,CAAC;gBAC1F,MAAM,IAAI,KAAK,CAAC,KAAK,CAAC,KAAK,EAAE,OAAO,IAAI,qBAAqB,QAAQ,CAAC,MAAM,EAAE,CAAC,CAAC;YAClF,CAAC;YAED,MAAM,IAAI,GAAG,MAAM,QAAQ,CAAC,IAAI,EAG/B,CAAC;YAEF,OAAO;gBACL,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,OAAO,EAAE,OAAO,IAAI,EAAE;gBAChD,KAAK,EAAE,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC;oBAClB,WAAW,EAAE,IAAI,CAAC,KAAK,CAAC,aAAa;oBACrC,YAAY,EAAE,IAAI,CAAC,KAAK,CAAC,iBAAiB;iBAC3C,CAAC,CAAC,CAAC,SAAS;aACd,CAAC;QACJ,CAAC;QAED,cAAc,CAAC,IAAY;YACzB,sDAAsD;YACtD,OAAO,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;QACpC,CAAC;KACF,CAAC;AACJ,CAAC"}
|
|
1
|
+
{"version":3,"file":"openai.js","sourceRoot":"","sources":["../../../src/llm/providers/openai.ts"],"names":[],"mappings":"AAAA,wEAAwE;AAIxE,MAAM,UAAU,kBAAkB,CAAC,MAAc,EAAE,KAAa;IAC9D,OAAO;QACL,QAAQ,EAAE,QAAQ;QAClB,KAAK;QAEL,KAAK,CAAC,IAAI,CAAC,QAAsB,EAAE,OAAqB;YACtD,MAAM,QAAQ,GAAG,MAAM,KAAK,CAAC,4CAA4C,EAAE;gBACzE,MAAM,EAAE,MAAM;gBACd,OAAO,EAAE;oBACP,cAAc,EAAE,kBAAkB;oBAClC,eAAe,EAAE,UAAU,MAAM,EAAE;iBACpC;gBACD,MAAM,EAAE,OAAO,EAAE,MAAM;gBACvB,IAAI,EAAE,IAAI,CAAC,SAAS,CAAC;oBACnB,KAAK;oBACL,QAAQ,EAAE,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,IAAI,EAAE,CAAC,CAAC,IAAI,EAAE,OAAO,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC;oBACnE,WAAW,EAAE,GAAG;oBAChB,UAAU,EAAE,IAAI;iBACjB,CAAC;aACH,CAAC,CAAC;YAEH,IAAI,CAAC,QAAQ,CAAC,EAAE,EAAE,CAAC;gBACjB,MAAM,KAAK,GAAG,MAAM,QAAQ,CAAC,IAAI,EAAE,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,CAAC,CAAqC,CAAC;gBAC1F,MAAM,IAAI,KAAK,CAAC,KAAK,CAAC,KAAK,EAAE,OAAO,IAAI,qBAAqB,QAAQ,CAAC,MAAM,EAAE,CAAC,CAAC;YAClF,CAAC;YAED,MAAM,IAAI,GAAG,MAAM,QAAQ,CAAC,IAAI,EAG/B,CAAC;YAEF,OAAO;gBACL,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,OAAO,EAAE,OAAO,IAAI,EAAE;gBAChD,KAAK,EAAE,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC;oBAClB,WAAW,EAAE,IAAI,CAAC,KAAK,CAAC,aAAa;oBACrC,YAAY,EAAE,IAAI,CAAC,KAAK,CAAC,iBAAiB;iBAC3C,CAAC,CAAC,CAAC,SAAS;aACd,CAAC;QACJ,CAAC;QAED,cAAc,CAAC,IAAY;YACzB,sDAAsD;YACtD,OAAO,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;QACpC,CAAC;KACF,CAAC;AACJ,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"analysis.d.ts","sourceRoot":"","sources":["../../src/routes/analysis.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAC;AAS5B,QAAA,MAAM,GAAG,4EAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"analysis.d.ts","sourceRoot":"","sources":["../../src/routes/analysis.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAC;AAS5B,QAAA,MAAM,GAAG,4EAAa,CAAC;AAmZvB,eAAe,GAAG,CAAC"}
|