Nanny7 Claude Sonnet 4.5 commited on
Commit
b5e0c9f
·
1 Parent(s): 6aaed8c

fix: deploy latest backend code with AI chat endpoints

Browse files

- Add all API endpoints (auth, todos, ai, chat)
- Add MCP tools integration
- Add AI client (Qwen)
- Fix requirements with all dependencies
- This enables /api/ai-chat/command endpoint

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>

Files changed (36) hide show
  1. src/__pycache__/__init__.cpython-312.pyc +0 -0
  2. src/__pycache__/main.cpython-312.pyc +0 -0
  3. src/ai/__pycache__/prompt_builder.cpython-312.pyc +0 -0
  4. src/ai/__pycache__/qwen_client.cpython-312.pyc +0 -0
  5. src/api/__pycache__/__init__.cpython-312.pyc +0 -0
  6. src/api/__pycache__/ai.cpython-312.pyc +0 -0
  7. src/api/__pycache__/auth.cpython-312.pyc +0 -0
  8. src/api/__pycache__/chat.cpython-312.pyc +0 -0
  9. src/api/__pycache__/deps.cpython-312.pyc +0 -0
  10. src/api/__pycache__/todos.cpython-312.pyc +0 -0
  11. src/api/__pycache__/users.cpython-312.pyc +0 -0
  12. src/core/__pycache__/__init__.cpython-312.pyc +0 -0
  13. src/core/__pycache__/config.cpython-312.pyc +0 -0
  14. src/core/__pycache__/database.cpython-312.pyc +0 -0
  15. src/core/__pycache__/security.cpython-312.pyc +0 -0
  16. src/mcp/__pycache__/__init__.cpython-312.pyc +0 -0
  17. src/mcp/__pycache__/registry.cpython-312.pyc +0 -0
  18. src/mcp/__pycache__/server.cpython-312.pyc +0 -0
  19. src/mcp/__pycache__/tools.cpython-312.pyc +0 -0
  20. src/middleware/__pycache__/auth.cpython-312.pyc +0 -0
  21. src/models/__pycache__/__init__.cpython-312.pyc +0 -0
  22. src/models/__pycache__/ai_request.cpython-312.pyc +0 -0
  23. src/models/__pycache__/conversation.cpython-312.pyc +0 -0
  24. src/models/__pycache__/message.cpython-312.pyc +0 -0
  25. src/models/__pycache__/session.cpython-312.pyc +0 -0
  26. src/models/__pycache__/todo.cpython-312.pyc +0 -0
  27. src/models/__pycache__/user.cpython-312.pyc +0 -0
  28. src/repositories/__pycache__/__init__.cpython-312.pyc +0 -0
  29. src/repositories/__pycache__/todo_repository.cpython-312.pyc +0 -0
  30. src/schemas/__pycache__/__init__.cpython-312.pyc +0 -0
  31. src/schemas/__pycache__/auth.cpython-312.pyc +0 -0
  32. src/schemas/__pycache__/todo.cpython-312.pyc +0 -0
  33. src/schemas/__pycache__/user.cpython-312.pyc +0 -0
  34. src/services/__pycache__/__init__.cpython-312.pyc +0 -0
  35. src/services/__pycache__/ai_service.cpython-312.pyc +0 -0
  36. src/services/__pycache__/auth_service.cpython-312.pyc +0 -0
src/__pycache__/__init__.cpython-312.pyc ADDED
Binary file (169 Bytes). View file
 
src/__pycache__/main.cpython-312.pyc ADDED
Binary file (5.96 kB). View file
 
src/ai/__pycache__/prompt_builder.cpython-312.pyc ADDED
Binary file (6.64 kB). View file
 
src/ai/__pycache__/qwen_client.cpython-312.pyc ADDED
Binary file (5.26 kB). View file
 
src/api/__pycache__/__init__.cpython-312.pyc ADDED
Binary file (173 Bytes). View file
 
src/api/__pycache__/ai.cpython-312.pyc ADDED
Binary file (6.29 kB). View file
 
src/api/__pycache__/auth.cpython-312.pyc ADDED
Binary file (8.27 kB). View file
 
src/api/__pycache__/chat.cpython-312.pyc ADDED
Binary file (16.6 kB). View file
 
src/api/__pycache__/deps.cpython-312.pyc ADDED
Binary file (5.19 kB). View file
 
src/api/__pycache__/todos.cpython-312.pyc ADDED
Binary file (14.8 kB). View file
 
src/api/__pycache__/users.cpython-312.pyc ADDED
Binary file (7.12 kB). View file
 
src/core/__pycache__/__init__.cpython-312.pyc ADDED
Binary file (174 Bytes). View file
 
src/core/__pycache__/config.cpython-312.pyc ADDED
Binary file (5.14 kB). View file
 
src/core/__pycache__/database.cpython-312.pyc ADDED
Binary file (3.93 kB). View file
 
src/core/__pycache__/security.cpython-312.pyc ADDED
Binary file (5.09 kB). View file
 
src/mcp/__pycache__/__init__.cpython-312.pyc ADDED
Binary file (173 Bytes). View file
 
src/mcp/__pycache__/registry.cpython-312.pyc ADDED
Binary file (2.23 kB). View file
 
src/mcp/__pycache__/server.cpython-312.pyc ADDED
Binary file (3.82 kB). View file
 
src/mcp/__pycache__/tools.cpython-312.pyc ADDED
Binary file (13 kB). View file
 
src/middleware/__pycache__/auth.cpython-312.pyc ADDED
Binary file (2.53 kB). View file
 
src/models/__pycache__/__init__.cpython-312.pyc ADDED
Binary file (176 Bytes). View file
 
src/models/__pycache__/ai_request.cpython-312.pyc ADDED
Binary file (3.39 kB). View file
 
src/models/__pycache__/conversation.cpython-312.pyc ADDED
Binary file (1.36 kB). View file
 
src/models/__pycache__/message.cpython-312.pyc ADDED
Binary file (2.03 kB). View file
 
src/models/__pycache__/session.cpython-312.pyc ADDED
Binary file (3.37 kB). View file
 
src/models/__pycache__/todo.cpython-312.pyc ADDED
Binary file (4.87 kB). View file
 
src/models/__pycache__/user.cpython-312.pyc ADDED
Binary file (2.5 kB). View file
 
src/repositories/__pycache__/__init__.cpython-312.pyc ADDED
Binary file (182 Bytes). View file
 
src/repositories/__pycache__/todo_repository.cpython-312.pyc ADDED
Binary file (13.3 kB). View file
 
src/schemas/__pycache__/__init__.cpython-312.pyc ADDED
Binary file (177 Bytes). View file
 
src/schemas/__pycache__/auth.cpython-312.pyc ADDED
Binary file (2.73 kB). View file
 
src/schemas/__pycache__/todo.cpython-312.pyc ADDED
Binary file (2.9 kB). View file
 
src/schemas/__pycache__/user.cpython-312.pyc ADDED
Binary file (3.27 kB). View file
 
src/services/__pycache__/__init__.cpython-312.pyc ADDED
Binary file (178 Bytes). View file
 
src/services/__pycache__/ai_service.cpython-312.pyc ADDED
Binary file (10.3 kB). View file
 
src/services/__pycache__/auth_service.cpython-312.pyc ADDED
Binary file (6.72 kB). View file