feat(chat): AI chat agent with history and markdown#17
Open
alon710 wants to merge 2 commits into
Open
Conversation
Adds a streaming /chat page that uses the same AI provider configured for categorization (Claude or Ollama). The agent answers free-text questions about the user's finances through tool calls that wrap existing read-only DB queries (transactions, monthly summary, top merchants, category breakdown). Page and sidebar entry are disabled when no AI provider is configured. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
- Persist chat sessions and messages in SQLite (migration 021) - Add session APIs: list, get, rename, delete - Add history sidebar with new/load/rename/delete actions - Auto-generate session titles via internal setChatTitle tool with live sidebar rename - Render assistant markdown via react-markdown + remark-gfm - Re-key chat by workspaceId so workspace switches do not leak headers - Inject today's Asia/Jerusalem date into the system prompt for relative-period queries - Clear AI SDK error on input change and submit so the composer stays usable after a failure Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
021_chat_sessions.sql), session APIs (/api/chat/sessions[/id]), a history sidebar with new/load/rename/delete, and auto-generated titles via an internalsetChatTitletool with live sidebar rename.react-markdown+remark-gfm.workspaceIdso switching workspaces no longer keeps sending the previousx-workspace-id.Test plan
npm run buildpasses/chat, ask a question that hits a tool, confirm a session appears in the sidebar with an auto-generated title🤖 Generated with Claude Code