codeep 1.2.84 → 1.2.86
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/dist/renderer/App.d.ts +4 -1
- package/dist/renderer/App.js +4 -4
- package/package.json +1 -1
package/dist/renderer/App.d.ts
CHANGED
|
@@ -127,7 +127,10 @@ export declare class App {
|
|
|
127
127
|
/**
|
|
128
128
|
* Get all messages (for API history)
|
|
129
129
|
*/
|
|
130
|
-
getMessages():
|
|
130
|
+
getMessages(): Array<{
|
|
131
|
+
role: 'user' | 'assistant' | 'system';
|
|
132
|
+
content: string;
|
|
133
|
+
}>;
|
|
131
134
|
/**
|
|
132
135
|
* Scroll to a specific message by index
|
|
133
136
|
*/
|
package/dist/renderer/App.js
CHANGED
|
@@ -252,7 +252,7 @@ export class App {
|
|
|
252
252
|
* Get all messages (for API history)
|
|
253
253
|
*/
|
|
254
254
|
getMessages() {
|
|
255
|
-
return this.messages;
|
|
255
|
+
return this.messages.filter(m => m.role !== 'welcome');
|
|
256
256
|
}
|
|
257
257
|
/**
|
|
258
258
|
* Scroll to a specific message by index
|
|
@@ -1296,7 +1296,7 @@ export class App {
|
|
|
1296
1296
|
y++;
|
|
1297
1297
|
}
|
|
1298
1298
|
// Gradient separator
|
|
1299
|
-
this.screen.writeRaw(separatorLine,
|
|
1299
|
+
this.screen.writeRaw(separatorLine, PRIMARY_COLOR + '─'.repeat(width) + style.reset);
|
|
1300
1300
|
// Input (don't render cursor when menu/settings is open)
|
|
1301
1301
|
this.renderInput(inputLine, width, this.menuOpen || this.settingsOpen);
|
|
1302
1302
|
// Status bar
|
|
@@ -1987,9 +1987,9 @@ export class App {
|
|
|
1987
1987
|
const helpText = ' Esc to stop ';
|
|
1988
1988
|
const helpPadLeft = Math.floor((width - helpText.length) / 2);
|
|
1989
1989
|
const helpPadRight = Math.max(0, width - helpPadLeft - helpText.length);
|
|
1990
|
-
this.screen.write(0, y,
|
|
1990
|
+
this.screen.write(0, y, PRIMARY_COLOR + '─'.repeat(helpPadLeft) + style.reset);
|
|
1991
1991
|
this.screen.write(helpPadLeft, y, helpText, fg.gray);
|
|
1992
|
-
this.screen.write(helpPadLeft + helpText.length, y,
|
|
1992
|
+
this.screen.write(helpPadLeft + helpText.length, y, PRIMARY_COLOR + '─'.repeat(helpPadRight) + style.reset);
|
|
1993
1993
|
}
|
|
1994
1994
|
/**
|
|
1995
1995
|
* Get color for action type
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeep",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.86",
|
|
4
4
|
"description": "AI-powered coding assistant built for the terminal. Multiple LLM providers, project-aware context, and a seamless development workflow.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|