codeep 1.2.85 → 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 +1 -1
- 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
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",
|