codeep 1.2.14 → 1.2.15
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/utils/agent.js +1 -1
- package/package.json +1 -1
package/dist/utils/agent.js
CHANGED
|
@@ -80,7 +80,7 @@ export function loadProjectRules(projectRoot) {
|
|
|
80
80
|
* Keeps the most recent messages within a character budget so the agent
|
|
81
81
|
* has conversational context without overwhelming the context window.
|
|
82
82
|
*/
|
|
83
|
-
export function formatChatHistoryForAgent(history, maxChars =
|
|
83
|
+
export function formatChatHistoryForAgent(history, maxChars = 16000) {
|
|
84
84
|
if (!history || history.length === 0)
|
|
85
85
|
return '';
|
|
86
86
|
// Filter out agent execution messages
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeep",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.15",
|
|
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",
|