ethagent 3.1.0 → 3.1.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ethagent",
3
- "version": "3.1.0",
3
+ "version": "3.1.1",
4
4
  "description": "A privacy-first AI agent with a portable Ethereum identity",
5
5
  "type": "module",
6
6
  "main": "bin/ethagent.js",
@@ -53,7 +53,6 @@ type ChatBottomPaneProps = {
53
53
  modelPickerContextFit: ModelPickerContextFit | null
54
54
  permissionRequest: PermissionRequest | null
55
55
  history: string[]
56
- busy: boolean
57
56
  streaming: boolean
58
57
  streamingStartedAt: number | null
59
58
  activity: BottomPaneActivity
@@ -100,7 +99,6 @@ export function ChatBottomPane({
100
99
  modelPickerContextFit,
101
100
  permissionRequest,
102
101
  history,
103
- busy,
104
102
  streaming,
105
103
  streamingStartedAt,
106
104
  activity,
@@ -265,7 +263,6 @@ export function ChatBottomPane({
265
263
  <ChatInput
266
264
  onSubmit={handleSubmit}
267
265
  history={history}
268
- disabled={busy}
269
266
  placeholderHints={placeholderHints}
270
267
  queuedMessages={queuedInputs}
271
268
  slashSuggestions={slashSuggestions}
@@ -1586,7 +1586,6 @@ export const ChatScreen: React.FC<ChatScreenProps> = ({ config: initialConfig, o
1586
1586
  modelPickerContextFit={modelPickerContextFit}
1587
1587
  permissionRequest={permissionRequest}
1588
1588
  history={history}
1589
- busy={busy}
1590
1589
  streaming={streaming}
1591
1590
  streamingStartedAt={streamingStartedAt}
1592
1591
  activity={null}
@@ -324,8 +324,6 @@ export const ChatInput: React.FC<PromptInputProps> = ({
324
324
  const maxVisibleInputLines = Math.max(MIN_INPUT_VIEWPORT_LINES, Math.floor(rows / 2) - PROMPT_FOOTER_LINES)
325
325
 
326
326
  useAppInput((input, key, event) => {
327
- if (disabled) return
328
-
329
327
  const pastePending = pasteTimerRef.current !== null
330
328
  if (event.isPasted || pastePending || isFallbackPasteInput(input)) {
331
329
  if (input) enqueuePasteChunk(input)