Commit Graph

14 Commits

Author SHA1 Message Date
4142c93d89 feat: add user_id index to profiles table for faster lookups
The profiles table previously lacked an index on the user_id column, causing full table scans during user lookups. This change adds a B-tree index on user_id to improve query performance for profile retrieval operations.
2026-06-13 13:24:48 +00:00
19551d8e93 fix: correct spelling of "Update" in commit message to "Update" 2026-06-13 12:56:35 +00:00
d5609880e2 fix: correct typo in user authentication error message for invalid credentials 2026-06-09 16:48:08 +00:00
f101ffdc5e feat: add comprehensive agent system with memory, planning, and tool use
This commit introduces a full-featured agent architecture including persistent memory storage using vector embeddings, multi-step planning capabilities with dynamic replanning, and an extensible tool registry supporting custom function definitions. The agent now maintains conversation history with summarization, supports parallel tool execution, and includes a feedback loop for self-correction on failed actions.
2026-06-08 15:38:33 +00:00
8a9ce93858 feat: add user_id index to profiles table for faster lookups 2026-06-05 17:22:29 +00:00
50b784b472 fix: correct typo in user authentication error message for invalid credentials 2026-06-05 03:36:18 +00:00
6bf41a5d84 feat: add user_id index to profiles table for faster lookups
The index on user_id column in profiles table improves query performance for user-specific profile retrieval operations.
2026-06-02 21:17:51 +00:00
247b7d738e feat: add user_id index to profiles table for faster lookups
The new index on the `user_id` column in the `profiles` table improves query performance for user-specific profile retrieval operations, reducing full table scans during authentication and profile loading workflows.
2026-05-30 18:16:39 +00:00
3f8c57d525 fix: correct spelling of "Update" in commit message to "Update" 2026-05-23 08:16:56 +00:00
77367644c5 feat: add user_id index to profiles table for faster lookups
The new index on the `user_id` column in the `profiles` table improves query performance when filtering or joining by user identifier, reducing full table scans during authentication and profile retrieval operations.
2026-05-23 01:21:55 +00:00
473da60636 chore: initialize repository with empty state and no tracked files 2026-05-12 10:45:52 +00:00
0ab8d63cc4 fix: correct typo in progress tracking variable name from Progss to Progress 2026-05-11 05:02:06 +00:00
ba91b1b3b1 chore: remove pre-locust configuration files and test stubs 2026-05-10 22:41:41 +00:00
97689f86d7 feat: implement basic version of the application with core functionality 2026-05-10 07:08:12 +00:00