Commit Graph
11 Commits
Author SHA1 Message Date
furyhawk 21cea2cf97 feat: refactor agent initialization and enhance API proxy configuration in nginx 2026-06-16 20:58:23 +08:00
furyhawk ac64ad9994 feat: Enhance logging across services for better traceability and debugging 2026-06-14 13:21:19 +08:00
furyhawk bb4b614711 feat: Implement RAG document and sync services with vector store integration
- Added `vectorstore.py` for managing vector storage operations using Milvus.
- Introduced `rag_document.py` for handling RAG document lifecycle, including ingestion and status updates.
- Created `rag_status.py` for streaming RAG ingestion status via Redis pub/sub.
- Developed `rag_sync.py` for managing synchronization operations and logs.
- Implemented `sync_source.py` for managing sync source configurations and triggering syncs.
- Established a lightweight task dispatcher in `dispatcher.py` for background task execution.
- Registered task functions for RAG ingestion and sync operations in `rag_tasks.py`.
- Configured task dispatcher settings in `arq_settings.py`.
- Added necessary database models and schemas for RAG document and sync operations.
2026-06-13 21:52:27 +08:00
furyhawk ac2a0f7c15 feat(logging): add debug logging configuration and environment variable support 2026-06-13 11:07:18 +08:00
furyhawk 0fde3e9490 feat(admin): add admin dashboard with user and session management APIs 2026-06-12 21:55:37 +08:00
furyhawk 58a41093c6 feat(auth): implement authentication API with login, register, and token management
- Added token management functions in frontend API for storing and retrieving auth tokens.
- Created authentication routes in backend for user registration, login, and profile retrieval.
- Implemented JWT token creation and validation for secure user sessions.
- Updated frontend API calls to include authorization headers for protected routes.
- Added bcrypt dependency for password hashing in user registration.
2026-06-12 21:37:45 +08:00
furyhawk dc4ed7c48d feat: add user management API with CRUD operations
- Implemented SQLAlchemy ORM models for User with role-based access control.
- Created API routes for user creation, retrieval, updating, and listing.
- Added input and output schemas for user data handling.
- Included session management for users.
2026-06-12 21:08:28 +08:00
furyhawk 55b5a18b90 feat: add PostgreSQL and Valkey configuration with async support, enhance database management 2026-06-12 20:05:45 +08:00
furyhawk efac920413 feat: enhance logging configuration and update agent capabilities for improved monitoring and functionality 2026-06-12 18:42:46 +08:00
furyhawk 61d2e511f6 feat: refactor backend structure with AppBuilder and AgentService for improved dependency management 2026-06-12 18:37:28 +08:00
furyhawk 358baece76 feat: initialize frontend with React, Vite, and Tailwind CSS
- Add package.json with dependencies and scripts for development and build
- Create PostCSS configuration for Tailwind CSS and autoprefixer
- Implement main App component with chat functionality and message handling
- Create API module for sending messages to backend
- Add global CSS file with Tailwind directives and custom scrollbar styles
- Set up entry point for React application in main.tsx
- Define TypeScript environment types for Vite
- Configure Tailwind CSS with content paths
- Set up TypeScript configuration with strict settings
- Configure Vite with React plugin and API proxy for development
2026-06-12 17:07:26 +08:00