codeep 1.0.79 → 1.0.80

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.
@@ -55,6 +55,9 @@ export const ChatInput = ({ onSubmit, disabled, history = [], clearTrigger = 0 }
55
55
  }, [clearTrigger]);
56
56
  // Filter commands based on input
57
57
  const suggestions = useMemo(() => {
58
+ // No suggestions for empty input
59
+ if (!value || value.length === 0)
60
+ return [];
58
61
  // Show all commands when user types just '/'
59
62
  if (value === '/')
60
63
  return COMMANDS;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeep",
3
- "version": "1.0.79",
3
+ "version": "1.0.80",
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",