DevelopedBy-Siva commited on
Commit
bc3ead7
·
1 Parent(s): 279ac83
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .env +0 -7
  2. .env.example +0 -7
  3. backend/__pycache__/__init__.cpython-311.pyc +0 -0
  4. backend/__pycache__/__init__.cpython-312.pyc +0 -0
  5. backend/__pycache__/config.cpython-311.pyc +0 -0
  6. backend/__pycache__/config.cpython-312.pyc +0 -0
  7. backend/__pycache__/main.cpython-311.pyc +0 -0
  8. backend/__pycache__/main.cpython-312.pyc +0 -0
  9. backend/ai/__pycache__/__init__.cpython-311.pyc +0 -0
  10. backend/ai/__pycache__/__init__.cpython-312.pyc +0 -0
  11. backend/ai/__pycache__/analyzer.cpython-311.pyc +0 -0
  12. backend/ai/__pycache__/analyzer.cpython-312.pyc +0 -0
  13. backend/ai/__pycache__/classifier.cpython-311.pyc +0 -0
  14. backend/ai/__pycache__/classifier.cpython-312.pyc +0 -0
  15. backend/ai/__pycache__/client.cpython-311.pyc +0 -0
  16. backend/ai/__pycache__/client.cpython-312.pyc +0 -0
  17. backend/ai/__pycache__/composer.cpython-311.pyc +0 -0
  18. backend/ai/__pycache__/composer.cpython-312.pyc +0 -0
  19. backend/ai/__pycache__/extractor.cpython-311.pyc +0 -0
  20. backend/ai/__pycache__/extractor.cpython-312.pyc +0 -0
  21. backend/ai/__pycache__/prompts.cpython-311.pyc +0 -0
  22. backend/ai/__pycache__/prompts.cpython-312.pyc +0 -0
  23. backend/ai/__pycache__/workflow_builder.cpython-311.pyc +0 -0
  24. backend/ai/__pycache__/workflow_builder.cpython-312.pyc +0 -0
  25. backend/ai/__pycache__/workflow_suggester.cpython-311.pyc +0 -0
  26. backend/ai/__pycache__/workflow_suggester.cpython-312.pyc +0 -0
  27. backend/api/__pycache__/__init__.cpython-311.pyc +0 -0
  28. backend/api/__pycache__/__init__.cpython-312.pyc +0 -0
  29. backend/api/__pycache__/middleware.cpython-312.pyc +0 -0
  30. backend/api/__pycache__/routes.cpython-311.pyc +0 -0
  31. backend/api/__pycache__/routes.cpython-312.pyc +0 -0
  32. backend/engine/__pycache__/__init__.cpython-311.pyc +0 -0
  33. backend/engine/__pycache__/__init__.cpython-312.pyc +0 -0
  34. backend/engine/__pycache__/compiler.cpython-311.pyc +0 -0
  35. backend/engine/__pycache__/compiler.cpython-312.pyc +0 -0
  36. backend/engine/__pycache__/executor.cpython-311.pyc +0 -0
  37. backend/engine/__pycache__/executor.cpython-312.pyc +0 -0
  38. backend/engine/__pycache__/primitives.cpython-311.pyc +0 -0
  39. backend/engine/__pycache__/primitives.cpython-312.pyc +0 -0
  40. backend/engine/__pycache__/scheduler.cpython-312.pyc +0 -0
  41. backend/engine/__pycache__/state.cpython-312.pyc +0 -0
  42. backend/engine/__pycache__/validator.cpython-311.pyc +0 -0
  43. backend/engine/__pycache__/validator.cpython-312.pyc +0 -0
  44. backend/integrations/__pycache__/__init__.cpython-311.pyc +0 -0
  45. backend/integrations/__pycache__/__init__.cpython-312.pyc +0 -0
  46. backend/integrations/__pycache__/file_parser.cpython-311.pyc +0 -0
  47. backend/integrations/__pycache__/file_parser.cpython-312.pyc +0 -0
  48. backend/integrations/__pycache__/gmail_auth.cpython-312.pyc +0 -0
  49. backend/integrations/__pycache__/gmail_client.cpython-312.pyc +0 -0
  50. backend/integrations/__pycache__/sheets_auth.cpython-312.pyc +0 -0
.env DELETED
@@ -1,7 +0,0 @@
1
- AI_PROVIDER=vertex_ai
2
- ALLOW_ORIGINS=*
3
- GMAIL_POLL_SECONDS=30
4
- VERTEX_PROJECT_ID=flow-pilot-493104
5
- VERTEX_LOCATION=us-central1
6
- VERTEX_MODEL=gemini-2.5-flash
7
- GOOGLE_APPLICATION_CREDENTIALS=
 
 
 
 
 
 
 
 
.env.example DELETED
@@ -1,7 +0,0 @@
1
- AI_PROVIDER=vertex_ai
2
- ALLOW_ORIGINS=*
3
- GMAIL_POLL_SECONDS=30
4
- VERTEX_PROJECT_ID=your-gcp-project-id
5
- VERTEX_LOCATION=us-central1
6
- VERTEX_MODEL=gemini-2.5-flash
7
- GOOGLE_APPLICATION_CREDENTIALS=
 
 
 
 
 
 
 
 
backend/__pycache__/__init__.cpython-311.pyc DELETED
Binary file (207 Bytes)
 
backend/__pycache__/__init__.cpython-312.pyc DELETED
Binary file (157 Bytes)
 
backend/__pycache__/config.cpython-311.pyc DELETED
Binary file (2.8 kB)
 
backend/__pycache__/config.cpython-312.pyc DELETED
Binary file (2.36 kB)
 
backend/__pycache__/main.cpython-311.pyc DELETED
Binary file (1.76 kB)
 
backend/__pycache__/main.cpython-312.pyc DELETED
Binary file (1.55 kB)
 
backend/ai/__pycache__/__init__.cpython-311.pyc DELETED
Binary file (195 Bytes)
 
backend/ai/__pycache__/__init__.cpython-312.pyc DELETED
Binary file (145 Bytes)
 
backend/ai/__pycache__/analyzer.cpython-311.pyc DELETED
Binary file (4.25 kB)
 
backend/ai/__pycache__/analyzer.cpython-312.pyc DELETED
Binary file (3.82 kB)
 
backend/ai/__pycache__/classifier.cpython-311.pyc DELETED
Binary file (1.43 kB)
 
backend/ai/__pycache__/classifier.cpython-312.pyc DELETED
Binary file (1.26 kB)
 
backend/ai/__pycache__/client.cpython-311.pyc DELETED
Binary file (5.01 kB)
 
backend/ai/__pycache__/client.cpython-312.pyc DELETED
Binary file (4.49 kB)
 
backend/ai/__pycache__/composer.cpython-311.pyc DELETED
Binary file (1.99 kB)
 
backend/ai/__pycache__/composer.cpython-312.pyc DELETED
Binary file (1.74 kB)
 
backend/ai/__pycache__/extractor.cpython-311.pyc DELETED
Binary file (1.7 kB)
 
backend/ai/__pycache__/extractor.cpython-312.pyc DELETED
Binary file (1.52 kB)
 
backend/ai/__pycache__/prompts.cpython-311.pyc DELETED
Binary file (8.73 kB)
 
backend/ai/__pycache__/prompts.cpython-312.pyc DELETED
Binary file (8.61 kB)
 
backend/ai/__pycache__/workflow_builder.cpython-311.pyc DELETED
Binary file (4.86 kB)
 
backend/ai/__pycache__/workflow_builder.cpython-312.pyc DELETED
Binary file (4.36 kB)
 
backend/ai/__pycache__/workflow_suggester.cpython-311.pyc DELETED
Binary file (2.51 kB)
 
backend/ai/__pycache__/workflow_suggester.cpython-312.pyc DELETED
Binary file (2.18 kB)
 
backend/api/__pycache__/__init__.cpython-311.pyc DELETED
Binary file (197 Bytes)
 
backend/api/__pycache__/__init__.cpython-312.pyc DELETED
Binary file (147 Bytes)
 
backend/api/__pycache__/middleware.cpython-312.pyc DELETED
Binary file (439 Bytes)
 
backend/api/__pycache__/routes.cpython-311.pyc DELETED
Binary file (10 kB)
 
backend/api/__pycache__/routes.cpython-312.pyc DELETED
Binary file (9.14 kB)
 
backend/engine/__pycache__/__init__.cpython-311.pyc DELETED
Binary file (323 Bytes)
 
backend/engine/__pycache__/__init__.cpython-312.pyc DELETED
Binary file (260 Bytes)
 
backend/engine/__pycache__/compiler.cpython-311.pyc DELETED
Binary file (483 Bytes)
 
backend/engine/__pycache__/compiler.cpython-312.pyc DELETED
Binary file (388 Bytes)
 
backend/engine/__pycache__/executor.cpython-311.pyc DELETED
Binary file (3.07 kB)
 
backend/engine/__pycache__/executor.cpython-312.pyc DELETED
Binary file (2.78 kB)
 
backend/engine/__pycache__/primitives.cpython-311.pyc DELETED
Binary file (7.47 kB)
 
backend/engine/__pycache__/primitives.cpython-312.pyc DELETED
Binary file (5.98 kB)
 
backend/engine/__pycache__/scheduler.cpython-312.pyc DELETED
Binary file (490 Bytes)
 
backend/engine/__pycache__/state.cpython-312.pyc DELETED
Binary file (627 Bytes)
 
backend/engine/__pycache__/validator.cpython-311.pyc DELETED
Binary file (1.18 kB)
 
backend/engine/__pycache__/validator.cpython-312.pyc DELETED
Binary file (945 Bytes)
 
backend/integrations/__pycache__/__init__.cpython-311.pyc DELETED
Binary file (212 Bytes)
 
backend/integrations/__pycache__/__init__.cpython-312.pyc DELETED
Binary file (162 Bytes)
 
backend/integrations/__pycache__/file_parser.cpython-311.pyc DELETED
Binary file (1.05 kB)
 
backend/integrations/__pycache__/file_parser.cpython-312.pyc DELETED
Binary file (912 Bytes)
 
backend/integrations/__pycache__/gmail_auth.cpython-312.pyc DELETED
Binary file (311 Bytes)
 
backend/integrations/__pycache__/gmail_client.cpython-312.pyc DELETED
Binary file (777 Bytes)
 
backend/integrations/__pycache__/sheets_auth.cpython-312.pyc DELETED
Binary file (313 Bytes)