MindsDB 25.2.3.0__py3-none-any.whl → 25.3.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of MindsDB might be problematic. Click here for more details.

Files changed (86) hide show
  1. mindsdb/__about__.py +1 -1
  2. mindsdb/__main__.py +16 -11
  3. mindsdb/api/executor/command_executor.py +1 -1
  4. mindsdb/api/executor/datahub/datanodes/system_tables.py +10 -2
  5. mindsdb/api/executor/planner/query_planner.py +6 -2
  6. mindsdb/api/executor/sql_query/steps/prepare_steps.py +2 -1
  7. mindsdb/api/http/initialize.py +8 -5
  8. mindsdb/api/http/namespaces/agents.py +0 -7
  9. mindsdb/api/http/namespaces/config.py +0 -48
  10. mindsdb/api/http/namespaces/knowledge_bases.py +1 -1
  11. mindsdb/api/http/namespaces/util.py +0 -28
  12. mindsdb/api/mongo/classes/query_sql.py +2 -1
  13. mindsdb/api/mongo/responders/aggregate.py +2 -2
  14. mindsdb/api/mongo/responders/coll_stats.py +3 -2
  15. mindsdb/api/mongo/responders/db_stats.py +2 -1
  16. mindsdb/api/mongo/responders/insert.py +4 -2
  17. mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/fake_mysql_proxy.py +2 -1
  18. mindsdb/api/mysql/mysql_proxy/mysql_proxy.py +5 -4
  19. mindsdb/api/postgres/postgres_proxy/postgres_proxy.py +2 -4
  20. mindsdb/integrations/handlers/anyscale_endpoints_handler/requirements.txt +0 -1
  21. mindsdb/integrations/handlers/autosklearn_handler/autosklearn_handler.py +1 -1
  22. mindsdb/integrations/handlers/dspy_handler/requirements.txt +0 -1
  23. mindsdb/integrations/handlers/gmail_handler/connection_args.py +2 -2
  24. mindsdb/integrations/handlers/gmail_handler/gmail_handler.py +19 -66
  25. mindsdb/integrations/handlers/gmail_handler/requirements.txt +0 -1
  26. mindsdb/integrations/handlers/google_calendar_handler/connection_args.py +15 -0
  27. mindsdb/integrations/handlers/google_calendar_handler/google_calendar_handler.py +31 -41
  28. mindsdb/integrations/handlers/google_calendar_handler/requirements.txt +0 -2
  29. mindsdb/integrations/handlers/langchain_embedding_handler/requirements.txt +0 -1
  30. mindsdb/integrations/handlers/langchain_handler/requirements.txt +0 -1
  31. mindsdb/integrations/handlers/llama_index_handler/requirements.txt +0 -1
  32. mindsdb/integrations/handlers/openai_handler/constants.py +3 -1
  33. mindsdb/integrations/handlers/openai_handler/requirements.txt +0 -1
  34. mindsdb/integrations/handlers/rag_handler/requirements.txt +0 -1
  35. mindsdb/integrations/handlers/ray_serve_handler/ray_serve_handler.py +33 -8
  36. mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py +3 -2
  37. mindsdb/integrations/handlers/web_handler/web_handler.py +42 -33
  38. mindsdb/integrations/handlers/youtube_handler/__init__.py +2 -0
  39. mindsdb/integrations/handlers/youtube_handler/connection_args.py +32 -0
  40. mindsdb/integrations/handlers/youtube_handler/youtube_handler.py +2 -38
  41. mindsdb/integrations/libs/llm/utils.py +7 -1
  42. mindsdb/integrations/libs/process_cache.py +2 -2
  43. mindsdb/integrations/utilities/handlers/auth_utilities/google/google_user_oauth_utilities.py +29 -38
  44. mindsdb/integrations/utilities/pydantic_utils.py +208 -0
  45. mindsdb/integrations/utilities/rag/chains/local_context_summarizer_chain.py +227 -0
  46. mindsdb/integrations/utilities/rag/pipelines/rag.py +11 -4
  47. mindsdb/integrations/utilities/rag/retrievers/sql_retriever.py +800 -135
  48. mindsdb/integrations/utilities/rag/settings.py +390 -152
  49. mindsdb/integrations/utilities/sql_utils.py +2 -1
  50. mindsdb/interfaces/agents/agents_controller.py +14 -10
  51. mindsdb/interfaces/agents/callback_handlers.py +52 -5
  52. mindsdb/interfaces/agents/langchain_agent.py +5 -3
  53. mindsdb/interfaces/agents/mindsdb_chat_model.py +4 -2
  54. mindsdb/interfaces/chatbot/chatbot_controller.py +9 -8
  55. mindsdb/interfaces/database/database.py +3 -2
  56. mindsdb/interfaces/database/integrations.py +1 -1
  57. mindsdb/interfaces/database/projects.py +28 -2
  58. mindsdb/interfaces/jobs/jobs_controller.py +4 -1
  59. mindsdb/interfaces/jobs/scheduler.py +1 -1
  60. mindsdb/interfaces/knowledge_base/preprocessing/constants.py +2 -2
  61. mindsdb/interfaces/model/model_controller.py +5 -2
  62. mindsdb/interfaces/skills/retrieval_tool.py +128 -39
  63. mindsdb/interfaces/skills/skill_tool.py +7 -7
  64. mindsdb/interfaces/skills/skills_controller.py +10 -6
  65. mindsdb/interfaces/skills/sql_agent.py +6 -1
  66. mindsdb/interfaces/storage/db.py +14 -12
  67. mindsdb/interfaces/storage/json.py +59 -0
  68. mindsdb/interfaces/storage/model_fs.py +85 -3
  69. mindsdb/interfaces/triggers/triggers_controller.py +2 -1
  70. mindsdb/migrations/versions/2022-10-14_43c52d23845a_projects.py +17 -3
  71. mindsdb/migrations/versions/2025-02-10_6ab9903fc59a_del_log_table.py +33 -0
  72. mindsdb/migrations/versions/2025-02-14_4521dafe89ab_added_encrypted_content_to_json_storage.py +29 -0
  73. mindsdb/migrations/versions/2025-02-19_11347c213b36_added_metadata_to_projects.py +41 -0
  74. mindsdb/utilities/config.py +6 -1
  75. mindsdb/utilities/functions.py +11 -0
  76. mindsdb/utilities/log.py +17 -2
  77. mindsdb/utilities/ml_task_queue/consumer.py +4 -2
  78. mindsdb/utilities/render/sqlalchemy_render.py +4 -0
  79. {MindsDB-25.2.3.0.dist-info → mindsdb-25.3.1.0.dist-info}/METADATA +226 -247
  80. {MindsDB-25.2.3.0.dist-info → mindsdb-25.3.1.0.dist-info}/RECORD +83 -80
  81. {MindsDB-25.2.3.0.dist-info → mindsdb-25.3.1.0.dist-info}/WHEEL +1 -1
  82. mindsdb/integrations/handlers/gmail_handler/utils.py +0 -45
  83. mindsdb/utilities/log_controller.py +0 -39
  84. mindsdb/utilities/telemetry.py +0 -44
  85. {MindsDB-25.2.3.0.dist-info → mindsdb-25.3.1.0.dist-info}/LICENSE +0 -0
  86. {MindsDB-25.2.3.0.dist-info → mindsdb-25.3.1.0.dist-info}/top_level.txt +0 -0
@@ -1,11 +1,11 @@
1
- mindsdb/__about__.py,sha256=uLW9FOsa76914MCeZsPLrQCq8Xx-uChOe89R4xgef8g,444
1
+ mindsdb/__about__.py,sha256=GbHD_Ez6vYgMQy6NvdycomymgDUng-r6k-Ye0LsKkh0,444
2
2
  mindsdb/__init__.py,sha256=fZopLiAYa9MzMZ0d48JgHc_LddfFKDzh7n_8icsjrVs,54
3
- mindsdb/__main__.py,sha256=VQ3RetGs34NhFRT9d76o5S3UpKxdr-G3c0138kz3f8Y,21435
3
+ mindsdb/__main__.py,sha256=rW-_mLgFu5UGtHY3PY0svt8M8l62DVVQpACnVM7qwLo,21827
4
4
  mindsdb/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
5
  mindsdb/api/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
6
  mindsdb/api/common/check_auth.py,sha256=cQEZqsnCbrRtUf8j4H6uPF98cDPu79t8TdtwBi5g30w,1345
7
7
  mindsdb/api/executor/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
8
- mindsdb/api/executor/command_executor.py,sha256=_2Y-WgEDdfh-nZSEb93Qp8tFl0Y-CgRJB-kQcUfec5k,78210
8
+ mindsdb/api/executor/command_executor.py,sha256=XEX0xoNaUfefZpkOARDElwoTbbhEKECqqvf6HtkrFxs,78243
9
9
  mindsdb/api/executor/exceptions.py,sha256=SoxhetIKIVOAwbVP_NatfoKnwt-Xj2yFCiAIqSDxpIE,566
10
10
  mindsdb/api/executor/controllers/__init__.py,sha256=px47lPVKqfpqgcoEBHyWoax-ad01rNOTJQCgQmG0Flo,50
11
11
  mindsdb/api/executor/controllers/session_controller.py,sha256=2Jf-V0nj7k0aB4scujNVyx91h54odkDrdK1ydsCo46g,3072
@@ -21,13 +21,13 @@ mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py,sha256=9gs
21
21
  mindsdb/api/executor/datahub/datanodes/integration_datanode.py,sha256=HowB1lnbs__qiVOE63uAuOqhDEj-2IcuiPh5bb3RgPg,9797
22
22
  mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py,sha256=OQJbmzGLYzbA0v-_rwmzB5gvwpJVO0c9h6oNjeGjGPU,12554
23
23
  mindsdb/api/executor/datahub/datanodes/project_datanode.py,sha256=KAYGMEDY4hVf7hZtyB26ehEwu1SCooql3mtoaN0itHs,6336
24
- mindsdb/api/executor/datahub/datanodes/system_tables.py,sha256=9WCgY8hodKrzwivRypN7Far5v8Z-A8-pVP_OAxC2jyc,14014
24
+ mindsdb/api/executor/datahub/datanodes/system_tables.py,sha256=PCmcxj_Jbhd5JuGpekfb8nQJBTJCfptibJuy0Wrz10I,14218
25
25
  mindsdb/api/executor/planner/__init__.py,sha256=Ysh8feXwejpVhJ9yDbrE_lBA3EsGqyWnrbIPdmtE1Oc,143
26
26
  mindsdb/api/executor/planner/exceptions.py,sha256=rvLQoFZgCpVsGWomSBdPeuOyr_6FM-QKmseVvUIw5E8,46
27
27
  mindsdb/api/executor/planner/plan_join.py,sha256=rZn21LGxWyRou4iVOpNpt9IY4TytPoIDJy8rfGqfhoE,22506
28
28
  mindsdb/api/executor/planner/plan_join_ts.py,sha256=LeQWq1dnhkLo36EaQG5B-EAlGfTFHT1szvEve75uMk8,16369
29
29
  mindsdb/api/executor/planner/query_plan.py,sha256=T2KAz19cYrtPwJp4JKAYU9WeBzFppCH3btAQZLknsNw,716
30
- mindsdb/api/executor/planner/query_planner.py,sha256=8cKZPvHh9Iqjc5UA0ZSCzbR6YRBcNhM4L8bPlgY7fnM,31079
30
+ mindsdb/api/executor/planner/query_planner.py,sha256=KaXQIFf0l9f9NtbX6VXDOOQXQq8ivJiq0PHhTATIzrA,31185
31
31
  mindsdb/api/executor/planner/query_prepare.py,sha256=ZH8fZ05tFMMy9aeuLU1R5F-ThSPtiGbvozoCZSNGz7A,16694
32
32
  mindsdb/api/executor/planner/step_result.py,sha256=t2xBRVSfqTRk4GY2JIi21cXSUiFlCw5hMbWRBSMtEjM,519
33
33
  mindsdb/api/executor/planner/steps.py,sha256=kB7FtJiUjiuDYk8a3qw_-EK4VKqcRZSr-udSTyctq6M,8830
@@ -45,7 +45,7 @@ mindsdb/api/executor/sql_query/steps/insert_step.py,sha256=xjVSFzopHVW85sq5p5WVp
45
45
  mindsdb/api/executor/sql_query/steps/join_step.py,sha256=8wW7AmIMhMinpMovSgl-2CGujV3mDX5kTFLxuI1KZfQ,4261
46
46
  mindsdb/api/executor/sql_query/steps/map_reduce_step.py,sha256=v1TZy0FBjw_Bqxx-X2KP-jeqrun-FH4yilghiYhsQEM,4452
47
47
  mindsdb/api/executor/sql_query/steps/multiple_step.py,sha256=jAwY8rGUOdecQNP5JSjjHmPpNLMVPX4adAU-PoHJBuY,656
48
- mindsdb/api/executor/sql_query/steps/prepare_steps.py,sha256=QATZ17UHZe5h41jqJP0yicXMsr1B7ak4p7CLHogFbAA,1538
48
+ mindsdb/api/executor/sql_query/steps/prepare_steps.py,sha256=IYsPxelD5WjtLIsfIxWBL22Jqcmq4eWXvIRn0PlN0fI,1602
49
49
  mindsdb/api/executor/sql_query/steps/project_step.py,sha256=WQ23VkfWrVHKRnyy91Kh9uRI7Twb-IBvSQl2TZy_21w,2854
50
50
  mindsdb/api/executor/sql_query/steps/sql_steps.py,sha256=RXZ1L05H_MHwVNdf6qDbIStsDjG_3QxEr3wPuFtZMdM,891
51
51
  mindsdb/api/executor/sql_query/steps/subselect_step.py,sha256=o7znv6v6mbtm1mrQpJBWHQeD8s02XDKiTSXHClNJDSE,7275
@@ -57,28 +57,28 @@ mindsdb/api/executor/utilities/sql.py,sha256=vULbEMKN3ZB5RULqC_VPRhuROQ0_CotHYqA
57
57
  mindsdb/api/http/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
58
58
  mindsdb/api/http/gui.py,sha256=V1_SYzBvEbRfpwSaNdxdlU2ylS-OhJ8IK6p6pcHNJXo,3087
59
59
  mindsdb/api/http/gunicorn_wrapper.py,sha256=U11cza-mn71RcLcJZOYwo2Aee3fRIhAYQxby_FF6_Yc,534
60
- mindsdb/api/http/initialize.py,sha256=irU6IAhiyFkRDPmLgakhrBqh0Xi4x4aAo4jViF7eSLk,16116
60
+ mindsdb/api/http/initialize.py,sha256=mjeQLszyfSXkbD_EVzrvbQp0w01Jl-OwyRlV8Wz-8_U,16121
61
61
  mindsdb/api/http/start.py,sha256=3F2iob1EHNh9cCeuxD1RjlVp0wnRw-ybh7lU5KaYGK8,2350
62
62
  mindsdb/api/http/utils.py,sha256=nWP2HxeS0Ami0VSFCyoWyhLsz52mRaYkylQCKzH6d7c,1155
63
63
  mindsdb/api/http/namespaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
64
- mindsdb/api/http/namespaces/agents.py,sha256=G_7SMVFNgM7uL-BgatA2iBqYJA3pTLT2l2nKt_5zn-s,18947
64
+ mindsdb/api/http/namespaces/agents.py,sha256=wLo4msX2kp1X9F--HN0_s5dS0RXg6d21a5jQctIgb7I,18712
65
65
  mindsdb/api/http/namespaces/analysis.py,sha256=Dp3izdLkG35cSAKNUPJfuGoFSRe34CzFPKk2CEVjDoI,3821
66
66
  mindsdb/api/http/namespaces/auth.py,sha256=Qm1ZUBdbv_nTDzSQHdzXEosdpYCRzIa17k1yYErOeuk,5483
67
67
  mindsdb/api/http/namespaces/chatbots.py,sha256=9UBguchWd04wfYCrsNcFkkt0RCbg-eJcv79RIcJa5Zk,11738
68
- mindsdb/api/http/namespaces/config.py,sha256=msgxhD9pBnit1w7WD4OYWaq-YtgNCzraxN7ibAvcGcU,9880
68
+ mindsdb/api/http/namespaces/config.py,sha256=-OZaCf32lHIi1hZ3gt6nuR0XF1gxkh3zv-oU28Z9Tfs,8382
69
69
  mindsdb/api/http/namespaces/databases.py,sha256=HAr2pvEuj3n2t1Wmxje0ZsSRxrY3sz9k_MGQ-yvgYWg,18570
70
70
  mindsdb/api/http/namespaces/default.py,sha256=r8PXn00Um2eyKB5e_Kj7fzk4e4LYH-JCzXCpxgJA2vY,4729
71
71
  mindsdb/api/http/namespaces/file.py,sha256=u6xYa_moAMb0UXWGkNtErGw9nk-FbloRuLHrLCANjoU,6644
72
72
  mindsdb/api/http/namespaces/handlers.py,sha256=zRWZvPOplwSAbKDKeQz93J38TsCQT89-GSlSug6Mtug,7911
73
73
  mindsdb/api/http/namespaces/jobs.py,sha256=Oif6biw5Bii1fboSbYbpkFJ7cZW9Ad1jpednWX14Xws,3186
74
- mindsdb/api/http/namespaces/knowledge_bases.py,sha256=khPdoF5O0SQDtlGj5W0Q1gyPiuzoaq7DEgCYxpRPsXQ,16651
74
+ mindsdb/api/http/namespaces/knowledge_bases.py,sha256=ZwzSXn_6DNn3awCnMlvCbZfCOTPM3VcsQNotMM05v3U,16653
75
75
  mindsdb/api/http/namespaces/models.py,sha256=rCUFF02CQcF_QKeCQJcyAWIZzyyNXw-Jl-aX5lGnvBc,11240
76
76
  mindsdb/api/http/namespaces/projects.py,sha256=g2dv_f4MGy7xZRARRqpjghLGSxq_FjHx-fHqPBfRP-E,1407
77
77
  mindsdb/api/http/namespaces/skills.py,sha256=2eG5NtaqJSXQ_ex9Tus0sHA7oF4_SKOxPTdlpnz2tkk,5923
78
78
  mindsdb/api/http/namespaces/sql.py,sha256=-uLWZPsd8q2vUjJeZE3c4qjBbatnrWgPhlHROSaFVnc,5964
79
79
  mindsdb/api/http/namespaces/tab.py,sha256=3qgdc6q2WmQQIonSTFvrSvbEgBdGAe98czWWx4OMRNQ,4054
80
80
  mindsdb/api/http/namespaces/tree.py,sha256=8I_X7Uhn6OAEsgWOfneF1UBif0T0YFmj-SG_iT20C3E,3807
81
- mindsdb/api/http/namespaces/util.py,sha256=cArp3u3UBZ1pzNagjB_JjqeRTtIvE5WTNG5iuygn9_4,4587
81
+ mindsdb/api/http/namespaces/util.py,sha256=3A_Ab16mHC83362PILbF6L4hh9zGAn8NG3nPlQZMhqk,3636
82
82
  mindsdb/api/http/namespaces/views.py,sha256=fIuK_D0-jr_F2UmYSdfxBWXhpbYjPhwxTs8yF0v35XI,6172
83
83
  mindsdb/api/http/namespaces/webhooks.py,sha256=HjSFv5MZatwrkU1CMVDJKx5bDeZsmuLnUs7nnEQ7kvw,1146
84
84
  mindsdb/api/http/namespaces/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -104,7 +104,7 @@ mindsdb/api/mongo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
104
104
  mindsdb/api/mongo/server.py,sha256=BB0qFC5OrSH_nAFvTiLmXEkBWTFQlZzliKSD1NKau7M,13763
105
105
  mindsdb/api/mongo/start.py,sha256=OdTSoUNsR9YF7Kr_QDFtIEJ8N50IoGbkfHu2K-Ia5_w,420
106
106
  mindsdb/api/mongo/classes/__init__.py,sha256=djMptbZ7tE2nfdbkIl4JS8--qISMWQ1t-dZCwYsF5X4,177
107
- mindsdb/api/mongo/classes/query_sql.py,sha256=VaaizxL9RaM7Udq3U4QAc3I01XwILvNWgAUoUwEnceg,575
107
+ mindsdb/api/mongo/classes/query_sql.py,sha256=-qxKa9xQtPB0EEEI6_xRwndsp7qLDmRZp1et3yT1xt8,639
108
108
  mindsdb/api/mongo/classes/responder.py,sha256=f70rusIQLTSfK2p2-Hrew09haP-SWEJaZQwEPM7ISmU,1764
109
109
  mindsdb/api/mongo/classes/responder_collection.py,sha256=nfqahPNvwqvzNtqQy_Rj1Ml4qWS_igDykvvldqqHOII,769
110
110
  mindsdb/api/mongo/classes/scram.py,sha256=pTSejWIV-lqu-WrXa8HNJrkWHPeEP0nle4POQXj6QOs,3217
@@ -112,13 +112,13 @@ mindsdb/api/mongo/classes/session.py,sha256=PscakqhYijuAjgxrwkJRgFuGtZhf38aKJbW-
112
112
  mindsdb/api/mongo/functions/__init__.py,sha256=4seMQSsLgygeK41jqIBdwymTj0R59XploqLrSsCqSgU,266
113
113
  mindsdb/api/mongo/responders/__init__.py,sha256=9P4apLtuhBegQBqm75nyliyodbJobxzgPZHxLoea3cA,2733
114
114
  mindsdb/api/mongo/responders/add_shard.py,sha256=QxtUNTom7utI6LI_qYCbKVJ-6ky4RDqptdJ-zRlUITo,228
115
- mindsdb/api/mongo/responders/aggregate.py,sha256=o-C0sAZwATRanS1isOzljJsQKxnK0ZrNLDOhuy7AXhc,2698
115
+ mindsdb/api/mongo/responders/aggregate.py,sha256=Xp96EmnR3a8ePEEW6-vm-4lzweQEfVqukDuE10B4qIg,2761
116
116
  mindsdb/api/mongo/responders/buildinfo.py,sha256=nhZHFAzwbdHW-KlSHWirv9znPnCejxlPi-MO4f6TYNY,317
117
- mindsdb/api/mongo/responders/coll_stats.py,sha256=jNJzxzDpl8MjOYkWSrCSs00Rbyr8b4O8qw1h3kxj8cE,1767
117
+ mindsdb/api/mongo/responders/coll_stats.py,sha256=38UGHKGTKewzW5erYFouQezbQNasyIrNJZRriRgXSdI,1851
118
118
  mindsdb/api/mongo/responders/company_id.py,sha256=ixY9HpSROzHEQ0CR_vAH2-3Mc0HBJVipSKhD2uxfXEs,689
119
119
  mindsdb/api/mongo/responders/connection_status.py,sha256=smUfHSg75_s49fxdjUGdpBsVd01bZjUlEhg8vvR3H8E,577
120
120
  mindsdb/api/mongo/responders/count.py,sha256=U1-r9adlVlkwnjNOheyWTxUg6J9M3o8uR-vApDrrmQY,487
121
- mindsdb/api/mongo/responders/db_stats.py,sha256=NdR31lYQi0Vb0kmeCNyiaQlcT8ButyyP01Q-euzP1NY,825
121
+ mindsdb/api/mongo/responders/db_stats.py,sha256=3fZtOAD_ydMUEWZ7ljDGLkGi5XNWncWbg3qVhtHu7s0,889
122
122
  mindsdb/api/mongo/responders/delete.py,sha256=B782oXqPjfaYyXjD9E-0E3l1a8GedzyL5uqQtb7R24Y,3642
123
123
  mindsdb/api/mongo/responders/describe.py,sha256=FP9Si2eIh_ZEXPHvQzIn3igGVmvKZTH6C4JRYFoey9s,612
124
124
  mindsdb/api/mongo/responders/end_sessions.py,sha256=nuArjKPdLI_e2ZmL-mSaEypIgYXG2bGqlfF8JyFwHkw,230
@@ -128,7 +128,7 @@ mindsdb/api/mongo/responders/get_free_monitoring_status.py,sha256=YwP9gVmtD9KHH_
128
128
  mindsdb/api/mongo/responders/get_parameter.py,sha256=DcdD9ELIvcA9b3DZZr7WW5ypXYaV7pkVrurI4CCRhFA,602
129
129
  mindsdb/api/mongo/responders/getlog.py,sha256=X8IWDSO0pvHw2B9x-YWYOvkaOUQoI8iB1frDOtGnSsw,244
130
130
  mindsdb/api/mongo/responders/host_info.py,sha256=k9y4UkU-_5iIvaDNofOl8GRM0DwkhTfW8pp9idvkYjI,627
131
- mindsdb/api/mongo/responders/insert.py,sha256=iOZfen6mqbuFcA3u4hEv6Dgh451VbPOX1mDY2F9-DEU,9468
131
+ mindsdb/api/mongo/responders/insert.py,sha256=dj_3ZnsWwJNQo1-FXXfGQzx2ZvdOJCvHnakye7a3o08,9572
132
132
  mindsdb/api/mongo/responders/is_master.py,sha256=En4AY_SlXmItUVfxv0_0XoE10zpKe68sAC7UldspyII,446
133
133
  mindsdb/api/mongo/responders/is_master_lower.py,sha256=w07COvzytNh8QCsDtKIO3yIljkWRoa7ax0yjffhqZ0o,285
134
134
  mindsdb/api/mongo/responders/list_collections.py,sha256=nNJnjIkFHwj0l23qruu_LQAtumKWD1yt_VoR-U4Dj3o,1536
@@ -148,13 +148,13 @@ mindsdb/api/mongo/utilities/mongodb_query.py,sha256=t6GIriKEGXH0mpaux71kCuVwYVaD
148
148
  mindsdb/api/mysql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
149
149
  mindsdb/api/mysql/start.py,sha256=gxW_29ozucMWxuBlGZHmT4f5WS24YogR4UL93Q0MMAk,377
150
150
  mindsdb/api/mysql/mysql_proxy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
151
- mindsdb/api/mysql/mysql_proxy/mysql_proxy.py,sha256=-xRKCBiGoP32IsYK6aEJss_uVn_c9wJF8SZlfPYi6XU,35283
151
+ mindsdb/api/mysql/mysql_proxy/mysql_proxy.py,sha256=RngY85eDzfHvyPRiUUZeyBzRir7sYSPZ8Rw7fzIaRQs,35310
152
152
  mindsdb/api/mysql/mysql_proxy/classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
153
153
  mindsdb/api/mysql/mysql_proxy/classes/client_capabilities.py,sha256=cUdIojE7yC8dGdaJtULSzZjkzlkJoP1CrKomwpFn0nI,3358
154
154
  mindsdb/api/mysql/mysql_proxy/classes/server_capabilities.py,sha256=oW1oARAZRSIv20Pkfy6nCTB0w69a6-ajVdo9APHohKg,586
155
155
  mindsdb/api/mysql/mysql_proxy/classes/sql_statement_parser.py,sha256=EPdgPoazneHngvbeBcAHzK3kLmUOOeZoGyJepYDO_P4,4436
156
156
  mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/__init__.py,sha256=TxhoWBkpVJShG-tPLDd4_7xhz-CtjoWBtq83k5U4oEc,75
157
- mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/fake_mysql_proxy.py,sha256=WaO0-VOItkG2rZzffQEz2aGiKZniqTicuuTuXmBz0lA,939
157
+ mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/fake_mysql_proxy.py,sha256=uUOaAJfmSIcZYLT4dppnbRun7Uawd5x_09bJfIN2EUs,1003
158
158
  mindsdb/api/mysql/mysql_proxy/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
159
159
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_datum.py,sha256=a8Gi2hcTPYSTtqscMcEW2R-1Qu_YmMcP1CN9DOfavo0,6246
160
160
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packet.py,sha256=3jjsF8bs9EJga-miiIElMZegi_-IRApeneer4AzawsA,4913
@@ -187,7 +187,7 @@ mindsdb/api/mysql/mysql_proxy/utilities/lightwood_dtype.py,sha256=dPtDWMh2S5ICsS
187
187
  mindsdb/api/postgres/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
188
188
  mindsdb/api/postgres/start.py,sha256=NVUZBkRBpL0j7eaNBrfQHorCOsNRAKdhtpgsdlv61YA,325
189
189
  mindsdb/api/postgres/postgres_proxy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
190
- mindsdb/api/postgres/postgres_proxy/postgres_proxy.py,sha256=fudxwxAwMN9mb82CUiUqSkaHW9YJ6g3s0nF-Px5QZXc,19392
190
+ mindsdb/api/postgres/postgres_proxy/postgres_proxy.py,sha256=Nus9OqgLaNd43iPQ3ses49muyi6CtQMBDY0V8GQeJGE,19360
191
191
  mindsdb/api/postgres/postgres_proxy/executor/__init__.py,sha256=ah4U7Z-XWrTGXwPovYZZLr1JTBbd7VB66CSBFgyNAxg,67
192
192
  mindsdb/api/postgres/postgres_proxy/executor/executor.py,sha256=aV9tuhflppO919B7HQGFyxeMuyv3XaGz2t-fwHLqVJI,6441
193
193
  mindsdb/api/postgres/postgres_proxy/postgres_packets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -248,7 +248,7 @@ mindsdb/integrations/handlers/anyscale_endpoints_handler/__init__.py,sha256=E93a
248
248
  mindsdb/integrations/handlers/anyscale_endpoints_handler/anyscale_endpoints_handler.py,sha256=qIu1OxZZ3hzrQGAaQ0_eqNB6sBB-4zNhqfU6XCGHIII,10699
249
249
  mindsdb/integrations/handlers/anyscale_endpoints_handler/creation_args.py,sha256=RUBy6Cw_gEUXq_7OXPGgeShUgFzPe5uoMhZ6qIFBmt8,374
250
250
  mindsdb/integrations/handlers/anyscale_endpoints_handler/icon.svg,sha256=VBWUTscZjn_SpZAC_2i5lvAE-LH6OixgH7KWNPtkpP8,1743
251
- mindsdb/integrations/handlers/anyscale_endpoints_handler/requirements.txt,sha256=rzdC67iknfxXMZrxfbRDox_DbNuIFEHzv8R2adXpWTE,109
251
+ mindsdb/integrations/handlers/anyscale_endpoints_handler/requirements.txt,sha256=akRKyhwvLrsRKZlseLcE3aKK82dAx5Y5ARfJ3b_Nn4c,92
252
252
  mindsdb/integrations/handlers/anyscale_endpoints_handler/settings.py,sha256=5vF3QvzIO8M1g-Kaja1zrpzohl7IM2Tt41VAVR2Kilk,1468
253
253
  mindsdb/integrations/handlers/anyscale_endpoints_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
254
254
  mindsdb/integrations/handlers/anyscale_endpoints_handler/tests/test_anyscale_endpoints_handler.py,sha256=gq0GHcJ-d21bqTl5NeIF6clAPlmMEaUniJMkXS4ryw8,7255
@@ -294,7 +294,7 @@ mindsdb/integrations/handlers/autokeras_handler/icon.svg,sha256=EBz7nZ-VyXT7Ps3e
294
294
  mindsdb/integrations/handlers/autokeras_handler/requirements.txt,sha256=Tt8vuUUNRP6fvafQQ7E80xO-kcZnzGWn6Zdasxb2swQ,21
295
295
  mindsdb/integrations/handlers/autosklearn_handler/__about__.py,sha256=5MLlCXNdhytRAHGaROfNZ6ZIS9u8bKFoYtSeDG1jvEI,359
296
296
  mindsdb/integrations/handlers/autosklearn_handler/__init__.py,sha256=KSndjfPj1fG_m1lFEEC_W4CR0PEphrtj-x4r-Fg-Stw,562
297
- mindsdb/integrations/handlers/autosklearn_handler/autosklearn_handler.py,sha256=QtQRyj-aKxtMFPrcOiYVqu1TuiN6zFxIT_NdpvYDc88,1683
297
+ mindsdb/integrations/handlers/autosklearn_handler/autosklearn_handler.py,sha256=hyfSKZGR_bMxgKLkGoQQ0XFLWevdAbtI-rmlJqlek1k,1684
298
298
  mindsdb/integrations/handlers/autosklearn_handler/config.py,sha256=COLDouTPwcSqxxLNAEd28h7IAcbWEKT61nZbz24dD0o,710
299
299
  mindsdb/integrations/handlers/autosklearn_handler/icon.png,sha256=kbcEAnyOFO2mj20-godaONlkzrtK-3Oj-yhQ-kX1O78,15729
300
300
  mindsdb/integrations/handlers/autosklearn_handler/requirements.txt,sha256=M80gYwMHVvAlFBJKtarluQacFmr6etbrUQgKjoX_hNM,32
@@ -535,7 +535,7 @@ mindsdb/integrations/handlers/dspy_handler/__about__.py,sha256=ccuDl-tLUGQXL38nv
535
535
  mindsdb/integrations/handlers/dspy_handler/__init__.py,sha256=jM_sypbHyhUmaDeyUfNI4YjSBFtbioGXlHU6uda0dCQ,484
536
536
  mindsdb/integrations/handlers/dspy_handler/dspy_handler.py,sha256=58hr9suXP0vOwypIpyRCHKmHorjFnJbcquTSJkMOt9w,9817
537
537
  mindsdb/integrations/handlers/dspy_handler/icon.svg,sha256=dMV03a2BDQvZTwxDAxRmd-GzmCCVXyYvJqTwdZb5Hbw,73222
538
- mindsdb/integrations/handlers/dspy_handler/requirements.txt,sha256=34t0xu_rRo5IIBj5QlxlXZafxslAydXcMrV0ABoYnYw,123
538
+ mindsdb/integrations/handlers/dspy_handler/requirements.txt,sha256=NStfVY_eYfySgFjgDohbv7wf-Bjss-m4TaZan0dqMbs,101
539
539
  mindsdb/integrations/handlers/duckdb_handler/__about__.py,sha256=3-dlZBVENpzU6Ixavw99OK8O5jLNG1h-K1AMB9KFRTY,342
540
540
  mindsdb/integrations/handlers/duckdb_handler/__init__.py,sha256=wlBN2aVSGipXwSyszMaa2dTwENjoZEh2ybWjYwNpKlk,629
541
541
  mindsdb/integrations/handlers/duckdb_handler/connection_args.py,sha256=-NWJxBuJCbVPPFqVgNt-_1aeYvC6TIhDymOGMb7lTkY,589
@@ -660,11 +660,10 @@ mindsdb/integrations/handlers/gitlab_handler/icon.svg,sha256=bQ1whEb3IObHqMiZAHo
660
660
  mindsdb/integrations/handlers/gitlab_handler/requirements.txt,sha256=1W6ZjjUzciSZ0BX4yJ7C54BWdhWYLCw5ASu-VQohWro,13
661
661
  mindsdb/integrations/handlers/gmail_handler/__about__.py,sha256=uj5U9JF0CynCH3ZE858VyDrJUiFgnTSZQcIbEhwnMbw,355
662
662
  mindsdb/integrations/handlers/gmail_handler/__init__.py,sha256=2Ed7Pfbdz56spFnl9WGf1vcRdL73LBjBr5lG_-dje38,540
663
- mindsdb/integrations/handlers/gmail_handler/connection_args.py,sha256=YTGF2c9QS9zsr7bWwc_WZaHQFe68mnxhItNe6fUJO84,780
664
- mindsdb/integrations/handlers/gmail_handler/gmail_handler.py,sha256=GF2hg8mzSktS8UCStMgWnmfULcOotgS8hmELoFdQMLM,19697
663
+ mindsdb/integrations/handlers/gmail_handler/connection_args.py,sha256=ICSjOPrCxpOQEpXLkyjm-osa-9fhm_tf77iekhqAsTo,780
664
+ mindsdb/integrations/handlers/gmail_handler/gmail_handler.py,sha256=IEsMHrzgyWEiiLYN1oJGOg4uEtvqw_1TdwoaJE98JuM,18088
665
665
  mindsdb/integrations/handlers/gmail_handler/icon.svg,sha256=0kKbNxgVVg3caKfTZSHrma_Ho8dyXNTAgXnQK25hYD4,862
666
- mindsdb/integrations/handlers/gmail_handler/requirements.txt,sha256=TyDnIqls4wGBI3n0t7ESsnQth4pkv698rxUwtjcqrj8,46
667
- mindsdb/integrations/handlers/gmail_handler/utils.py,sha256=jXNBgCJhBQjt0micfqvGG-Ly-4Uoor__HFUtmUNiVfU,1332
666
+ mindsdb/integrations/handlers/gmail_handler/requirements.txt,sha256=CE8Tu4MYTFbjPoVIYlwI55wCWl22Re5B2Sr4rDLiHKE,25
668
667
  mindsdb/integrations/handlers/gmail_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
669
668
  mindsdb/integrations/handlers/gmail_handler/tests/test_gmail_handler.py,sha256=wjJHWn2jBFHm4gBtuVSoc4MdFoIy54jkfnCbPz77KHc,1479
670
669
  mindsdb/integrations/handlers/google_analytics_handler/__about__.py,sha256=68QyRQWAMw0MGDM64tuGkSrjepQmQKQea5zvfw0r0Aw,369
@@ -685,11 +684,11 @@ mindsdb/integrations/handlers/google_books_handler/tests/__init__.py,sha256=47DE
685
684
  mindsdb/integrations/handlers/google_books_handler/tests/test_google_books_handler.py,sha256=tuww8tSsOPizyjPEcHcu7E73q08ErErQbXBSKxw9fWY,1487
686
685
  mindsdb/integrations/handlers/google_calendar_handler/__about__.py,sha256=ABiiMZz9sTlrSoW5FIUbFZqmW4WD1BNe-66IC1hj6Vs,388
687
686
  mindsdb/integrations/handlers/google_calendar_handler/__init__.py,sha256=ms_QDVhQf3b_jnweJXDVAUFYuyKkPb6JgEfGEzJ9uzA,580
688
- mindsdb/integrations/handlers/google_calendar_handler/connection_args.py,sha256=CEelHk3psXLlIaBHm8ks47Dp37qKJZvdwM--K0rXdgM,307
689
- mindsdb/integrations/handlers/google_calendar_handler/google_calendar_handler.py,sha256=gMTuUPEJXr4RFwOO3U2MZpG6GayDnv6K7YoBP1bDR2s,10756
687
+ mindsdb/integrations/handlers/google_calendar_handler/connection_args.py,sha256=HL1g-EYFULOoR3l874dFRmPGeP5bl0fNwRTftYDeF84,780
688
+ mindsdb/integrations/handlers/google_calendar_handler/google_calendar_handler.py,sha256=o-iXM8SNuRmoFxJJt8RlRVMqhbjqSYlT3xALifsZLfw,10851
690
689
  mindsdb/integrations/handlers/google_calendar_handler/google_calendar_tables.py,sha256=SWioh20npLHBTJu8XsYIImdWZ2mgs34pcvPrudCmOjs,8111
691
690
  mindsdb/integrations/handlers/google_calendar_handler/icon.svg,sha256=DQIgxyH7l5C7ONqeAIoofEH4PYDJdRZDFPK7A57XPMg,1915
692
- mindsdb/integrations/handlers/google_calendar_handler/requirements.txt,sha256=VLKq7qTszTaLU3DehUPxnYlzhgVwm7qXxAPocmXQoIs,110
691
+ mindsdb/integrations/handlers/google_calendar_handler/requirements.txt,sha256=CE8Tu4MYTFbjPoVIYlwI55wCWl22Re5B2Sr4rDLiHKE,25
693
692
  mindsdb/integrations/handlers/google_calendar_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
694
693
  mindsdb/integrations/handlers/google_calendar_handler/tests/test_google_calendar_handler.py,sha256=Tv1O__exOy2k58VNAG3LQgOUKICIUt_-RpqAzuGiiRA,2215
695
694
  mindsdb/integrations/handlers/google_content_shopping_handler/__about__.py,sha256=kUidXzaoLPxNOiywhLPrUFjG4JZl8krOHzS0QMWl7Tg,424
@@ -858,13 +857,13 @@ mindsdb/integrations/handlers/langchain_embedding_handler/__init__.py,sha256=7PK
858
857
  mindsdb/integrations/handlers/langchain_embedding_handler/fastapi_embeddings.py,sha256=h8feiZrRboFcaBGkv5VYdJRHdVeBUCZ6hz0hC_bNqf0,2479
859
858
  mindsdb/integrations/handlers/langchain_embedding_handler/icon.svg,sha256=dMV03a2BDQvZTwxDAxRmd-GzmCCVXyYvJqTwdZb5Hbw,73222
860
859
  mindsdb/integrations/handlers/langchain_embedding_handler/langchain_embedding_handler.py,sha256=GrXTyvb-nLSsfI6V2yblQWSgRgkbTXiWtmfWJYYordw,8277
861
- mindsdb/integrations/handlers/langchain_embedding_handler/requirements.txt,sha256=C_GVvAYnKB13ILpKZcGHSuNg8km5qIB4gbEUaD4Ifz0,24
860
+ mindsdb/integrations/handlers/langchain_embedding_handler/requirements.txt,sha256=u06ahGd1EskIW_Yy-5Y_jNLNbN1CtF9N3ylGPPOPBLA,9
862
861
  mindsdb/integrations/handlers/langchain_embedding_handler/vllm_embeddings.py,sha256=gxrwh_0d2FiOqAo4xmr-7KGLTFuSuBxLH0gfvmHPVIg,3734
863
862
  mindsdb/integrations/handlers/langchain_handler/__about__.py,sha256=rBZQP0fyIkObedPPwbyNl9tB0ygJN6qj0aPwPYI_fqc,345
864
863
  mindsdb/integrations/handlers/langchain_handler/__init__.py,sha256=4POM9M6p9cUDAIeQ4gy4Cj-F1p6RPokk3MC2cR77mSw,504
865
864
  mindsdb/integrations/handlers/langchain_handler/icon.svg,sha256=dMV03a2BDQvZTwxDAxRmd-GzmCCVXyYvJqTwdZb5Hbw,73222
866
865
  mindsdb/integrations/handlers/langchain_handler/langchain_handler.py,sha256=2MoMZYz4e4f4NCE-hHheJulxFJAkJudrvOn6-EAGv4Y,12816
867
- mindsdb/integrations/handlers/langchain_handler/requirements.txt,sha256=4aj8aQLjDOkfE6Fj85Gac143kFwDTW6dVaW8YR3TtZQ,252
866
+ mindsdb/integrations/handlers/langchain_handler/requirements.txt,sha256=t5uKtzYVlZUSYjEPnhHhvohm0yo56c90NUYzFYSOI-I,237
868
867
  mindsdb/integrations/handlers/langchain_handler/tools.py,sha256=lb0zKsVpTafWi5QSVTbQ0hgvVx1Yr1rLg_i6rTHcVsQ,11385
869
868
  mindsdb/integrations/handlers/leonardoai_handler/__about__.py,sha256=tohCA4vFctgcIkYTPoEhcNRW9C1YX07Sxe6n57vTl7A,353
870
869
  mindsdb/integrations/handlers/leonardoai_handler/__init__.py,sha256=qoDI2PYu2Kw5TapUlHC1QUIfufxvzuJ1RpLBEpd_woE,512
@@ -919,7 +918,7 @@ mindsdb/integrations/handlers/llama_index_handler/__about__.py,sha256=BtxlhE6R27
919
918
  mindsdb/integrations/handlers/llama_index_handler/__init__.py,sha256=xR7fPvGnYIOw4QOUZ88Gs6tUZHbcr-Wp2V-NmVK-Mlw,506
920
919
  mindsdb/integrations/handlers/llama_index_handler/icon.svg,sha256=yjhd8lFNW75F5o5ZRC69UMAu2P_Fxjj7SgLADwUQeJc,12609
921
920
  mindsdb/integrations/handlers/llama_index_handler/llama_index_handler.py,sha256=GJvKsXkFnrkCg1A6MZJApe9IQDC7g0n_aSSOWPZkG7s,7859
922
- mindsdb/integrations/handlers/llama_index_handler/requirements.txt,sha256=imQMM8eEbMS8XsR3zGGLuHkc6qCeSWAGLYUwwhZpfok,118
921
+ mindsdb/integrations/handlers/llama_index_handler/requirements.txt,sha256=tS1jwSXXbrsDrRxvvhyptH5AZiRhQaJejfAIuVjYaTc,101
923
922
  mindsdb/integrations/handlers/llama_index_handler/settings.py,sha256=4L4-EJn_D6z_DcVaQ3o22BpPwSsdmyG1ayRIrIaMTsU,2156
924
923
  mindsdb/integrations/handlers/ludwig_handler/__about__.py,sha256=5pC8567sj_ZZW70dm7Chkc4He6-F8l5oUKE1W9V98Ck,343
925
924
  mindsdb/integrations/handlers/ludwig_handler/__init__.py,sha256=Bz_CZB8XJiMLYb7rK_zPFFAIHGjEsGR_rc2FK8r8HyM,536
@@ -1111,13 +1110,13 @@ mindsdb/integrations/handlers/ollama_handler/icon.png,sha256=Uetj2OTGPx-taxPKdD3
1111
1110
  mindsdb/integrations/handlers/ollama_handler/ollama_handler.py,sha256=X-eLSoGg6Hg3xLdr_eAHrYTfWnO_SLm9R-SJahRz6PM,7268
1112
1111
  mindsdb/integrations/handlers/openai_handler/__about__.py,sha256=CHoor6pfv6jc7Lfp8SZYiRlHoCwA-QM0PYRqvIRNSEc,336
1113
1112
  mindsdb/integrations/handlers/openai_handler/__init__.py,sha256=2oicF7rVoEJTh-_p_7bpmh3shHYL2zZr4tPj0ZDXeCI,621
1114
- mindsdb/integrations/handlers/openai_handler/constants.py,sha256=Vvb5XEVtTIYV89_z_VErteTfv4Bh7Cht9E7iiRSh5Ys,1326
1113
+ mindsdb/integrations/handlers/openai_handler/constants.py,sha256=szFwNnhFO8g_XJh8DnqxlrmZh9YTkiTiCpvAI0txZak,1356
1115
1114
  mindsdb/integrations/handlers/openai_handler/creation_args.py,sha256=v1NHiz-tLvAHrcA_vIe1A6L5UbeGpHBl88XWZVgtric,342
1116
1115
  mindsdb/integrations/handlers/openai_handler/helpers.py,sha256=Tp-4KQQTCfYl5UYGQFBbP3hiqhmfLMnQzpiaCcA8LTk,6978
1117
1116
  mindsdb/integrations/handlers/openai_handler/icon.svg,sha256=r5vCiNm9_nL1ZbM1e6PYcTzw9KrgC0hqWT8IAi2pFbE,2625
1118
1117
  mindsdb/integrations/handlers/openai_handler/model_using_args.py,sha256=c5NBe6RGkRGVOLhc7Ksq3M3w96Kd9KECO6T01j7VS90,76
1119
1118
  mindsdb/integrations/handlers/openai_handler/openai_handler.py,sha256=Dx_5vrNLX02gTXERT9_oWzziDJ45EWp1EzyqIdaU8aU,48686
1120
- mindsdb/integrations/handlers/openai_handler/requirements.txt,sha256=KkH4wzs3vfzFXtZnDNpwv4a7R8-wqITWDZ3R9AbigM0,31
1119
+ mindsdb/integrations/handlers/openai_handler/requirements.txt,sha256=u06ahGd1EskIW_Yy-5Y_jNLNbN1CtF9N3ylGPPOPBLA,9
1121
1120
  mindsdb/integrations/handlers/openai_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1122
1121
  mindsdb/integrations/handlers/openai_handler/tests/test_openai_handler.py,sha256=W3b39JCQfCF_IXUS98j7KqTqIzeYne9RDba33AxM774,18651
1123
1122
  mindsdb/integrations/handlers/openbb_handler/__about__.py,sha256=uY_N_iBpfK56YgmWfiiEAz2g4-EDozP1DKqvhPKUP60,373
@@ -1270,12 +1269,12 @@ mindsdb/integrations/handlers/rag_handler/icon.svg,sha256=q8G2Qws-_E79MdxpSDHtNC
1270
1269
  mindsdb/integrations/handlers/rag_handler/ingest.py,sha256=E45U_5LnWcHJznxjAjPtgVBjk_02l4czBA-WqI8WJKE,5877
1271
1270
  mindsdb/integrations/handlers/rag_handler/rag.py,sha256=4PtyArS3tt4hzvjejR_9hq_W37MKop3h9XVkSFgqe2o,4764
1272
1271
  mindsdb/integrations/handlers/rag_handler/rag_handler.py,sha256=9VISfF6rRn6N3s_NMZTVo8So2aG49AH-A0-qZqAuE7E,5400
1273
- mindsdb/integrations/handlers/rag_handler/requirements.txt,sha256=c2JTCp297CM2yfsCSoEwxB9mTmE70_2GhH_1F-ARdx8,200
1272
+ mindsdb/integrations/handlers/rag_handler/requirements.txt,sha256=_7K_npewsQgRtUH_S-COwkUJ35urOaKDSEJsZZItr20,185
1274
1273
  mindsdb/integrations/handlers/rag_handler/settings.py,sha256=5T4_oZt9dUD67AJXeZrzaftMnv4I4uL-XlzhO5kTYSY,15627
1275
1274
  mindsdb/integrations/handlers/ray_serve_handler/__about__.py,sha256=42oqKM1C-nIisvPvAL5fIxBDP-rxEduXnGrUUjrfLIU,345
1276
1275
  mindsdb/integrations/handlers/ray_serve_handler/__init__.py,sha256=MYDLydWeimQ74znwnrrgnh9S6YgtE7UnJcYBVlWv6r8,596
1277
1276
  mindsdb/integrations/handlers/ray_serve_handler/icon.svg,sha256=spxNMpiGLzxt46VM70-m-z4xButrIQ_dzLTarJKYSOA,1990
1278
- mindsdb/integrations/handlers/ray_serve_handler/ray_serve_handler.py,sha256=X_7Y4mUjU45M3ieP-SlQ2Ez8-0Q91sGxJi4VLhzZI1c,3432
1277
+ mindsdb/integrations/handlers/ray_serve_handler/ray_serve_handler.py,sha256=WQlIVCA4-M5QKnUPlmd6zGbx1hZPFQuONc12bGiGZeo,4657
1279
1278
  mindsdb/integrations/handlers/reddit_handler/__about__.py,sha256=Xp4s3kJp-REycH83S1RLSaPZHpFqbn-MjRuQZ5BpBuQ,336
1280
1279
  mindsdb/integrations/handlers/reddit_handler/__init__.py,sha256=n3dhcPIHT_89hQxEXKQbHApOGBGQxtvWxp-fvFL083s,496
1281
1280
  mindsdb/integrations/handlers/reddit_handler/icon.svg,sha256=JAhHkvjiEfOz_BSbBVosQs8VXegNanxdnNUNz1bHyRM,3986
@@ -1614,8 +1613,8 @@ mindsdb/integrations/handlers/web_handler/__about__.py,sha256=CxQc3_pLSKuz1AnBj6
1614
1613
  mindsdb/integrations/handlers/web_handler/__init__.py,sha256=vfphmqTz8VmQlD7fmeE3B900gkZLuQ8QWQEvYFbTUkE,504
1615
1614
  mindsdb/integrations/handlers/web_handler/icon.svg,sha256=zd0x3UwSoGfJf7Vg5eAcaR4pEtkmJMZwVsgdha2Mtrc,1385
1616
1615
  mindsdb/integrations/handlers/web_handler/requirements.txt,sha256=DGTAMisIfhU-7xWdii0CEOyiwNDYYKBTsD4F-fKnNRo,13
1617
- mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py,sha256=4dAVqvoLDaxQsg3zZyyaGE2XPABjxGTV8GIuDq3KPPY,11275
1618
- mindsdb/integrations/handlers/web_handler/web_handler.py,sha256=AB-wNODo6WKlWkF8Iw1NEKgKVErPR5utkvXIihFtXn0,3320
1616
+ mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py,sha256=KHX_f-7_7mLwhxQNLUPB-WUmGBlA04FtFJb4N2jBM2c,11304
1617
+ mindsdb/integrations/handlers/web_handler/web_handler.py,sha256=XjM_hJTTjaA2MLjX0pCJpY4gpejICjme89K63Ghrr-U,3493
1619
1618
  mindsdb/integrations/handlers/webz_handler/__about__.py,sha256=WziIvpCflTd96urD_LFndy7sGYIxqzpfeql4yOTmt_Q,331
1620
1619
  mindsdb/integrations/handlers/webz_handler/__init__.py,sha256=06qa6pqDB-83d_TkU82CNRQYpq54-mP3r6fILAMVjRw,521
1621
1620
  mindsdb/integrations/handlers/webz_handler/icon.svg,sha256=Mvt32fMxE_p294_hTqGVY3vnRkbZOJ2a0n9M72aZjTk,1042
@@ -1644,10 +1643,11 @@ mindsdb/integrations/handlers/xata_handler/requirements.txt,sha256=D52V_FWSK6cpT
1644
1643
  mindsdb/integrations/handlers/xata_handler/xata_handler.py,sha256=UpHEKmbJamoNEM0G7gR3UeJhgyZ1WIRcY9Jlf6JKPTk,13207
1645
1644
  mindsdb/integrations/handlers/xata_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1646
1645
  mindsdb/integrations/handlers/youtube_handler/__about__.py,sha256=mhUWf5rM8hmHZsKyxyhGmjOMneU81yWltgLh4pMHI-g,347
1647
- mindsdb/integrations/handlers/youtube_handler/__init__.py,sha256=lxwfOkcSnEl3dmshrxMp91J73g7Hs20Kn4PFieTbf08,511
1646
+ mindsdb/integrations/handlers/youtube_handler/__init__.py,sha256=wz69UgXa3njxAci8Srh7FaIW2eLNuz45LR0sNiCux3I,583
1647
+ mindsdb/integrations/handlers/youtube_handler/connection_args.py,sha256=08xO6KHfAlFvgSq9QU6PxWDk9AmmPgXdx41ayKxHGAI,923
1648
1648
  mindsdb/integrations/handlers/youtube_handler/icon.svg,sha256=uvNffuRPGVzPxWkbZzkSrw2SHm8M8c4GbeypiHPWDss,954
1649
1649
  mindsdb/integrations/handlers/youtube_handler/requirements.txt,sha256=Hx27M_gHLgyZBIsNQZAcXYcnFtRgqlHvEgPnWhdisns,48
1650
- mindsdb/integrations/handlers/youtube_handler/youtube_handler.py,sha256=9ffQIU76A1SwyFrHrQt585NTiiAnMXdy785BHS0z3fg,5282
1650
+ mindsdb/integrations/handlers/youtube_handler/youtube_handler.py,sha256=FewpJAHZyYJItt2qKaHjXpZwajpxMAWAD6DibVWic5Y,4217
1651
1651
  mindsdb/integrations/handlers/youtube_handler/youtube_tables.py,sha256=-PiJbjpqoWjh-sdf-EiJ9nyan7DfmkNmPvROzHYgZjA,16797
1652
1652
  mindsdb/integrations/handlers/yugabyte_handler/__about__.py,sha256=tVimKqXLHCbBZFeVs2_LfbwaXt3oOBx2k_fTbiu4uwU,350
1653
1653
  mindsdb/integrations/handlers/yugabyte_handler/__init__.py,sha256=ZaXZKRnnzUOGLvydpoeSjOxlLx8L_ymcXdEydokAh28,490
@@ -1682,14 +1682,14 @@ mindsdb/integrations/libs/api_handler_exceptions.py,sha256=mw83eTmo9knpVHP1ISnud
1682
1682
  mindsdb/integrations/libs/base.py,sha256=fVs3nf98jfA9aH5O18ZlrGjhZuasYHwD9TrgF9fJ8Eo,12851
1683
1683
  mindsdb/integrations/libs/const.py,sha256=Pbdv7K_SvOWSwANwu4FK2S0jkJYaRnVZpfx4SexxR8c,407
1684
1684
  mindsdb/integrations/libs/ml_exec_base.py,sha256=lp4LGXZUfTaPfY4V44osJQfz0pq0-l3V4gc1vl4rWoc,17540
1685
- mindsdb/integrations/libs/process_cache.py,sha256=Ad63SQKKVJiZemISb2RnWdjTsyKVeN0DV1suwyZ4XGM,16052
1685
+ mindsdb/integrations/libs/process_cache.py,sha256=Razi-ybfANk1KUdUL7X_lR1IxCBmozuc7CCg1EXaQ5s,16079
1686
1686
  mindsdb/integrations/libs/realtime_chat_handler.py,sha256=bJxlLKzYUb8tYShRUsecdubZ_E0kWxzExXK-v37gqYc,1171
1687
1687
  mindsdb/integrations/libs/response.py,sha256=iyadSLc5e7gY-rviaaoFNIrgIhDBJ-DZux062PxRRz8,3119
1688
1688
  mindsdb/integrations/libs/storage_handler.py,sha256=g4rcAD4TzmxWmEtS00235_NAnrdulIir4If6E4y_OUo,3512
1689
1689
  mindsdb/integrations/libs/vectordatabase_handler.py,sha256=-TcUIzSSX21DPOGh7zI0-nuumqaW0NgUCElXzouWXjg,17523
1690
1690
  mindsdb/integrations/libs/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1691
1691
  mindsdb/integrations/libs/llm/config.py,sha256=M14flGRcngP8n37sT8XLuJj5w-145B4IAyx3vLllogM,3548
1692
- mindsdb/integrations/libs/llm/utils.py,sha256=vCiWWqCfmKElyyuka4Asd1UBhEZiH7YWn_xRAk3xies,24362
1692
+ mindsdb/integrations/libs/llm/utils.py,sha256=20KrNT9PdvVL0DTPLrOT1uPUw2bMtRhnEZ_7fxBYnRQ,24648
1693
1693
  mindsdb/integrations/libs/ml_handler_process/__init__.py,sha256=TW1DslwZTaD8oeGaxPx99uYkPAeDIeHWAturBcnDBFU,756
1694
1694
  mindsdb/integrations/libs/ml_handler_process/create_engine_process.py,sha256=YHbk1x7GEIZXcM0IazB2z2tvu5Yd24Fb4aJPpUg321A,788
1695
1695
  mindsdb/integrations/libs/ml_handler_process/create_validation_process.py,sha256=-69NRhBGnNG0hgNi9O_W5LffIxPBUmuxy4bbQY2Z-_8,444
@@ -1704,8 +1704,9 @@ mindsdb/integrations/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
1704
1704
  mindsdb/integrations/utilities/date_utils.py,sha256=TqCyde_jbknQnrJqYIkNwEHUg-dsjRElJZHX_UicYQk,2769
1705
1705
  mindsdb/integrations/utilities/handler_utils.py,sha256=UEgEckWFDZXLcu5AbBFrqPJuFFXgejDmDRkr6622CPc,2272
1706
1706
  mindsdb/integrations/utilities/install.py,sha256=wbg0pcIn8C8PEfjA45DmwueEZ5nX27t2YsLe1xXhC7s,5018
1707
+ mindsdb/integrations/utilities/pydantic_utils.py,sha256=JvB34a7XTMbA4z_vS1aURvU4PE0rNhZDkOVzb8xfRZw,6992
1707
1708
  mindsdb/integrations/utilities/query_traversal.py,sha256=XtAuZU58un1s40JMoxMZX0JzhBEqgsW95Ux1UqHGLgY,9882
1708
- mindsdb/integrations/utilities/sql_utils.py,sha256=WHlXN3Zjn8kS-sh_jqv1Q6abM-8YocS4WCWzpcIqlhY,6713
1709
+ mindsdb/integrations/utilities/sql_utils.py,sha256=zPXrG3pI-wbrrBTM9WXMwt66zsQHw2RZ1qXUX58rJ9Q,6777
1709
1710
  mindsdb/integrations/utilities/test_utils.py,sha256=eplCMcVjOsrXRhIhAUhgOPIt2zNiyUV67BYnJ2lvPiE,691
1710
1711
  mindsdb/integrations/utilities/time_series_utils.py,sha256=qWVqZaXW7gdVM3jJ6WWYt1VP4WoFmaKt7jhNU6OpMvE,8312
1711
1712
  mindsdb/integrations/utilities/utils.py,sha256=TuIgAbuZVkCRUSgLmqJ2STZ1CxVgBGrEnajW68SsKg0,972
@@ -1723,7 +1724,7 @@ mindsdb/integrations/utilities/handlers/auth_utilities/__init__.py,sha256=lyJdlw
1723
1724
  mindsdb/integrations/utilities/handlers/auth_utilities/exceptions.py,sha256=ZgrImndHmaGkTCcx2W-1SlQTWzv0IKCvQKvCLH5jE4g,259
1724
1725
  mindsdb/integrations/utilities/handlers/auth_utilities/google/__init__.py,sha256=badbjE9cfUwgdUzboBXksz8mLHi8pHW5eVr4xdhJYUo,150
1725
1726
  mindsdb/integrations/utilities/handlers/auth_utilities/google/google_service_account_oauth_utilities.py,sha256=Nuug_6Zggj5Q4D01sRLpyHrGLvyLL1ONg3SiZH8i4W4,2400
1726
- mindsdb/integrations/utilities/handlers/auth_utilities/google/google_user_oauth_utilities.py,sha256=6JRit6NCWhzThecl0BM5bFGsmST6CD4vSAOm-nAqBqE,4223
1727
+ mindsdb/integrations/utilities/handlers/auth_utilities/google/google_user_oauth_utilities.py,sha256=IJnVzD2WYavlKtZMJ5uW51CDUBthYnR0YoA_HBtKXDo,3737
1727
1728
  mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/__init__.py,sha256=_hlwBPWRZu1cW8dLQnrmJUr39tokoT2SkodHzJ8PzGM,78
1728
1729
  mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/ms_graph_api_auth_utilities.py,sha256=8xGoJtqMBRYNus6enlyHeFMeyl6Rnh76xIXBJ172RmU,5369
1729
1730
  mindsdb/integrations/utilities/handlers/query_utilities/__init__.py,sha256=Gy3epzeBeKSi5xFMs9Zq2ggAupWJTDWc_3C7X8rnSEU,279
@@ -1738,10 +1739,11 @@ mindsdb/integrations/utilities/handlers/validation_utilities/parameter_validatio
1738
1739
  mindsdb/integrations/utilities/rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1739
1740
  mindsdb/integrations/utilities/rag/config_loader.py,sha256=3m_hdTugNxbTevU79AMNzK-tjObpj5JBvpGMBZB0Iuw,3573
1740
1741
  mindsdb/integrations/utilities/rag/rag_pipeline_builder.py,sha256=0RhyafFoQPl1aniRYcOu57aljfqKqj_p0cNb_bfOrc8,3742
1741
- mindsdb/integrations/utilities/rag/settings.py,sha256=aV4u5syOXMBOU-hXgOD9MfhRRPe3xf-T6SsaU3otUh4,23489
1742
+ mindsdb/integrations/utilities/rag/settings.py,sha256=uTMiNMXIsQGZK1CpG7mrb-YzUfX2OCjPahvh_GRpgH4,33475
1742
1743
  mindsdb/integrations/utilities/rag/utils.py,sha256=AAMW1gybfAntUkAPb9AYUeWZUMtZAwWaYiLJcTHNB4A,1620
1743
1744
  mindsdb/integrations/utilities/rag/vector_store.py,sha256=EwCdCf0dXwJXKOYfqTUPWEDOPLumWl2EKQiiXzgy8XA,3782
1744
1745
  mindsdb/integrations/utilities/rag/chains/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1746
+ mindsdb/integrations/utilities/rag/chains/local_context_summarizer_chain.py,sha256=fBc68Qi0RWnmOX7oY17f7dDjcL0ChmendWACrQx-VAk,10000
1745
1747
  mindsdb/integrations/utilities/rag/chains/map_reduce_summarizer_chain.py,sha256=ExhMuc2KOqkx5-StmHcnVKLatWTFyH0Bte0WkM-Bgno,10655
1746
1748
  mindsdb/integrations/utilities/rag/loaders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1747
1749
  mindsdb/integrations/utilities/rag/loaders/file_loader.py,sha256=CZWcr1F2LHmiKxrQwqPModAlHCgJ4F9OLuVpaf14DR8,1868
@@ -1750,7 +1752,7 @@ mindsdb/integrations/utilities/rag/loaders/vector_store_loader/__init__.py,sha25
1750
1752
  mindsdb/integrations/utilities/rag/loaders/vector_store_loader/pgvector.py,sha256=1afkvEbBSzaeofZAbK80m3UxfZd7PO-SukbnNb1aW3w,5013
1751
1753
  mindsdb/integrations/utilities/rag/loaders/vector_store_loader/vector_store_loader.py,sha256=TaJkfrsajapchnP5ED0WMCP85ptbvN2d8y3UMdjMjDc,3188
1752
1754
  mindsdb/integrations/utilities/rag/pipelines/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1753
- mindsdb/integrations/utilities/rag/pipelines/rag.py,sha256=fFFwts-6Vai8rNaPmj8znLEvkTKyra3L9qQ0LEG581I,15095
1755
+ mindsdb/integrations/utilities/rag/pipelines/rag.py,sha256=Ij91MJ0QpqocHs2vLfLO43PFZPFCyt1mvFjwvDecVU4,15551
1754
1756
  mindsdb/integrations/utilities/rag/rerankers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1755
1757
  mindsdb/integrations/utilities/rag/rerankers/reranker_compressor.py,sha256=L-qCCGtNNdFck034wkeMgvRgO8ii-uNTh9Rp5Ga6ddM,9497
1756
1758
  mindsdb/integrations/utilities/rag/retrievers/__init__.py,sha256=Kuo3AJxzHVXMxPFxGqz2AXNPzjBzyMuk2yQj9pFpOsI,128
@@ -1759,22 +1761,22 @@ mindsdb/integrations/utilities/rag/retrievers/base.py,sha256=fomZCUibDLKg-g4_uoT
1759
1761
  mindsdb/integrations/utilities/rag/retrievers/multi_hop_retriever.py,sha256=wC2M3Vsgzs5Nu6uEuD4YQZZU9W8eW_bc7RrrqvN38mk,3319
1760
1762
  mindsdb/integrations/utilities/rag/retrievers/multi_vector_retriever.py,sha256=D9QzIRZWQ6LrT892twdgJj287_BlVEmXRQLYQegQuVA,4383
1761
1763
  mindsdb/integrations/utilities/rag/retrievers/retriever_factory.py,sha256=knmGLJNEG8x4KFhUYQiCIpghR5yEEeu_tonSUMUqXAQ,2205
1762
- mindsdb/integrations/utilities/rag/retrievers/sql_retriever.py,sha256=yLyDt1M28C9DlrzcLPhQIB0kkNdfkGMYkawN6u6sFO4,10390
1764
+ mindsdb/integrations/utilities/rag/retrievers/sql_retriever.py,sha256=uOJ8-UW09hkjMo4J6htrbbl5zmH_-YCWauRJxmdp3oc,35309
1763
1765
  mindsdb/integrations/utilities/rag/splitters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1764
1766
  mindsdb/integrations/utilities/rag/splitters/file_splitter.py,sha256=O14E_27omTti4jsxhgTiwHtlR2LdCa9D2DiEgc7yKmc,5260
1765
1767
  mindsdb/interfaces/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1766
1768
  mindsdb/interfaces/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1767
- mindsdb/interfaces/agents/agents_controller.py,sha256=4lb8t7S9IGG-ZbBCNQsN36-5JN40qHEBvDNq4JaQJqo,18159
1768
- mindsdb/interfaces/agents/callback_handlers.py,sha256=90mGvx6ZIXRA_PAoV6vf8OHjJN65GHgoM3ip_ULOVN8,4711
1769
+ mindsdb/interfaces/agents/agents_controller.py,sha256=NwqgRlZ1XyZggxLI98x0xVt2vyqrefqrzN6ZvXoU6kU,18318
1770
+ mindsdb/interfaces/agents/callback_handlers.py,sha256=_iOUz-g5Hglf2wtfpx6ENKNCu2Cba-ZbpQtXyR2xElY,6700
1769
1771
  mindsdb/interfaces/agents/constants.py,sha256=JUXpSW5PZxDZ84BD9zqZpU8u2tI2kUjHLZ1kVcDM7tY,4556
1770
1772
  mindsdb/interfaces/agents/event_dispatch_callback_handler.py,sha256=-76yTtxTHO5AkFTtr_RvYfkdUROJHcKZx6KJDZvj_-M,1331
1771
- mindsdb/interfaces/agents/langchain_agent.py,sha256=M4NsaCeUvu9grnAamMI1BqxvV3Cb7CsWYlsuymKQel8,27389
1773
+ mindsdb/interfaces/agents/langchain_agent.py,sha256=tLZGH4Flfd_H87YDjZF3K9ofFvtr0vM_aCPPoE137D4,27483
1772
1774
  mindsdb/interfaces/agents/langfuse_callback_handler.py,sha256=-51IWB5U2_m71xx00IwSOAK6gJ2n-HD_CzbtbmEfbBQ,11598
1773
- mindsdb/interfaces/agents/mindsdb_chat_model.py,sha256=9e_LxCKrCSOZWqURHWavw-FQUK9PLJ5O18IGYSHD9us,6051
1775
+ mindsdb/interfaces/agents/mindsdb_chat_model.py,sha256=dtVZU3k-aXiK9AC2_ZizeFP2er_-2YVLj4YxQ189nU0,6155
1774
1776
  mindsdb/interfaces/agents/mindsdb_database_agent.py,sha256=lk7UyE7tK807GXLBDr4-b2VVFUUzDtpMx2GjVtywv3o,2459
1775
1777
  mindsdb/interfaces/agents/safe_output_parser.py,sha256=x2G27UPT42iVjjj44vGUVNPEUDSHH3nlKJwe3GZDh9A,1605
1776
1778
  mindsdb/interfaces/chatbot/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1777
- mindsdb/interfaces/chatbot/chatbot_controller.py,sha256=Ex-_CoZayYW3GAde0XozTL5s5M3rwWJqxt_c1uU09vg,14181
1779
+ mindsdb/interfaces/chatbot/chatbot_controller.py,sha256=lZEjoa0zSagLXX8fpKnjaAJdORia0fOie9aeSccLf40,14234
1778
1780
  mindsdb/interfaces/chatbot/chatbot_executor.py,sha256=3qU98MHBmUcsIWYqaNNJhoudUQWLPWlCB_di6iFaP1g,7742
1779
1781
  mindsdb/interfaces/chatbot/chatbot_task.py,sha256=eKU-7FSygAzFq9lkHKLl5zlkiiQDGjzOX7oUb-rJNQo,7001
1780
1782
  mindsdb/interfaces/chatbot/memory.py,sha256=tkqBiA5mMvkuGITCjUC_r0JuyUS2DbeARxJ_GryOZJQ,8346
@@ -1782,45 +1784,45 @@ mindsdb/interfaces/chatbot/model_executor.py,sha256=qv8DRysWLbJwbv4TkQ-bsLmJOnDa
1782
1784
  mindsdb/interfaces/chatbot/polling.py,sha256=Pi7oPGoz8_LB_4k4YGSPf2XtEdb5ca2augjRHxscn48,8109
1783
1785
  mindsdb/interfaces/chatbot/types.py,sha256=nHFxK0FbxGrhv5gqPJc6PbP1LlIbWN-kTAHpS11iLZo,929
1784
1786
  mindsdb/interfaces/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1785
- mindsdb/interfaces/database/database.py,sha256=Uq02qqkkAhGTZTf_BiyyvAg8X5QhakjpDWMRn-kZOgU,4284
1786
- mindsdb/interfaces/database/integrations.py,sha256=9hTqsOihKipy66XiW5-vCGazHWdyIt7zVp3mODBduis,36797
1787
+ mindsdb/interfaces/database/database.py,sha256=ax8GlviJpdTyufQvBfy0ft4H8pxH7w4hp_ejNY_aYHM,4356
1788
+ mindsdb/interfaces/database/integrations.py,sha256=B4dfcOCsUMKgX5teNEGrXwUBnrX5L2sUP34XvbUaSdk,36825
1787
1789
  mindsdb/interfaces/database/log.py,sha256=tewoKWc-xvfbFC9RVaUUAjQGuRY__Lex8fbR_pwNMwc,11074
1788
- mindsdb/interfaces/database/projects.py,sha256=0ZjcqpDf437FmRhUk4z8YJR3MaoxtwJH60uPusLbfPU,15077
1790
+ mindsdb/interfaces/database/projects.py,sha256=pWNsjDgGzdRO4TaNvj9-LC5mvpyh6xzOlMp9hN3HZdg,16083
1789
1791
  mindsdb/interfaces/database/views.py,sha256=CthbUly3OgOyFV8a-VRQwhjLh6I1LXbBUzMAcfu8USI,4404
1790
1792
  mindsdb/interfaces/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1791
1793
  mindsdb/interfaces/file/file_controller.py,sha256=ebe0hEZhOHbrMhVg84XW33Jl1jUeo2uARKGp_NWBkKY,8626
1792
1794
  mindsdb/interfaces/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1793
1795
  mindsdb/interfaces/functions/controller.py,sha256=8kyWA8TnMsRDyIl2s3JcvdGYeww4_Qmf-jYq_wwOYH4,6057
1794
1796
  mindsdb/interfaces/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1795
- mindsdb/interfaces/jobs/jobs_controller.py,sha256=xBleXIpGLZ_Sg3j5e7BeTRV-Hp6ELMuFuQwtVZyQ72s,18247
1796
- mindsdb/interfaces/jobs/scheduler.py,sha256=m_C-QiTExljq0ilpe4vQiQv56AIWsrtfcdo0krMYQes,3664
1797
+ mindsdb/interfaces/jobs/jobs_controller.py,sha256=cRyR5JkcyqkeKmy0TTKYdceee7HI0vBGreJz9PsORgU,18346
1798
+ mindsdb/interfaces/jobs/scheduler.py,sha256=eHBWTpZozI_AC-hKmg4p0qRoGZW8O3gEt5Y9nDhHWpw,3696
1797
1799
  mindsdb/interfaces/knowledge_base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1798
1800
  mindsdb/interfaces/knowledge_base/controller.py,sha256=2DhhWQmZXDtWuQnSEa-J4m-HEvr6fsvBZ5Chs8xS9QA,36304
1799
1801
  mindsdb/interfaces/knowledge_base/preprocessing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1800
- mindsdb/interfaces/knowledge_base/preprocessing/constants.py,sha256=0sLB2GOQhh3d46WNcVPF0iTmJc01CIXJoPT99XktuMo,295
1802
+ mindsdb/interfaces/knowledge_base/preprocessing/constants.py,sha256=iW5q65albIfTT1ZuxNceJ8o7yrOcttCH1Kx4Vdo-iPY,296
1801
1803
  mindsdb/interfaces/knowledge_base/preprocessing/document_loader.py,sha256=t0ilsEKWLAC0iJrWNPnZXY4DxRNQjvwv4CweeHR9u0g,5542
1802
1804
  mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py,sha256=RdASLNgDdvfjwLawIqsSQeQKX2qf411e5N7bjQuCNmQ,14604
1803
1805
  mindsdb/interfaces/knowledge_base/preprocessing/models.py,sha256=s0O29xo7V1fjUgee6fN7kkKdMOBrnFLyx3nwkBaxLfY,3790
1804
1806
  mindsdb/interfaces/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1805
1807
  mindsdb/interfaces/model/functions.py,sha256=TlZfCASNDtwEXXTb38ma5fgWmn2f0XuWPQ5m8wufqks,4904
1806
- mindsdb/interfaces/model/model_controller.py,sha256=7MmAL_hFxswlPRIZ6RME5SGl0ArTzExuVr1Vy3oQc5k,20201
1808
+ mindsdb/interfaces/model/model_controller.py,sha256=o84VBCAqr6ecfl9ms0enetZxC30w7pGHzfYkrkZ0x_U,20306
1807
1809
  mindsdb/interfaces/query_context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1808
1810
  mindsdb/interfaces/query_context/context_controller.py,sha256=YAmdcSFEzd3aOr4nRF7TX6UfAXH9kMK1qk7bpVtvhpY,9486
1809
1811
  mindsdb/interfaces/query_context/last_query.py,sha256=LbZwvPtDYJFVBRonJr6RgGZyCbCNGcJJdhS22pW_YE0,9331
1810
1812
  mindsdb/interfaces/skills/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1811
- mindsdb/interfaces/skills/retrieval_tool.py,sha256=zuEEPky--GdKHa1rqd4VhM2wgtlGas5G72eFbooj-Hg,4480
1812
- mindsdb/interfaces/skills/skill_tool.py,sha256=8YjAmQ8PM0dhO8pRfKuwO2Bf3bKizLARelztjbwNz4c,12925
1813
- mindsdb/interfaces/skills/skills_controller.py,sha256=CUY0B_9DBCUX7LzeODrdBs4WDNRivGPTPHYcGtH7b-M,6146
1814
- mindsdb/interfaces/skills/sql_agent.py,sha256=QlhGaAPVrlFJYQB0x9jQMT4bqbs1QSBaVeaPRQpxwK0,14283
1813
+ mindsdb/interfaces/skills/retrieval_tool.py,sha256=V4ElVmbkh1e9J9_Ro3-Re9Js-dhUcFJkTmbUa8vi9Gc,8752
1814
+ mindsdb/interfaces/skills/skill_tool.py,sha256=lUfQXxcLlEgjVe30knPjE2klWDlChHgCcBYlEJYy9Hw,12992
1815
+ mindsdb/interfaces/skills/skills_controller.py,sha256=RxZDjLhYUtArWV0U1AOhltZ3kfMbJkcxXtr0GwkbNyg,6294
1816
+ mindsdb/interfaces/skills/sql_agent.py,sha256=ResOUpthG2o7C6w5qNyvQeCoT7fuaExQsRQA9TzKXVE,14619
1815
1817
  mindsdb/interfaces/skills/custom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1816
1818
  mindsdb/interfaces/skills/custom/text2sql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1817
1819
  mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_tool.py,sha256=n7r08idG9Qaa0C41HokUf-w72yyACoINOFKGgtNVHLA,1375
1818
1820
  mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py,sha256=08WyJXYJ_hP7JYLvwaSWuJN6Q1PLgIAvh7bcgsV-0XU,7962
1819
1821
  mindsdb/interfaces/storage/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1820
- mindsdb/interfaces/storage/db.py,sha256=FDp3E1gqRUL9TJtEBii-g9o_Xdsj1ue7L0pJAwkTtsQ,19413
1822
+ mindsdb/interfaces/storage/db.py,sha256=ko1TGsNo4zbwO9Rg6J8sS-btGx5-Qwdw9YnBelp0vgA,19512
1821
1823
  mindsdb/interfaces/storage/fs.py,sha256=4Nyo-h23UtZc2nz_LWyVzboC_e1jlU58aph1_en8MdE,21155
1822
- mindsdb/interfaces/storage/json.py,sha256=KdrmXfqVCNZ_anNpfyygcFQeywbdJMCMbaI3HFJic-U,2925
1823
- mindsdb/interfaces/storage/model_fs.py,sha256=LQHyIs3wlOEpFHceAjziA7zuQKY3N-8gt9EuSYHO8zI,8267
1824
+ mindsdb/interfaces/storage/json.py,sha256=xwMYcn7pJN5Ou1QsBJYBmTX5u2bbUr62l2cWtAQS1cA,5066
1825
+ mindsdb/interfaces/storage/model_fs.py,sha256=kYJ1-FU7sOh7nEO10_gh1P9YfIbU8VITx5Y6K9K-NLE,11297
1824
1826
  mindsdb/interfaces/tabs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1825
1827
  mindsdb/interfaces/tabs/tabs_controller.py,sha256=TZltOnr0DAjhrW2u-bzIVfjPHgh4bxdkitExr9sCNYE,8761
1826
1828
  mindsdb/interfaces/tasks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1829,7 +1831,7 @@ mindsdb/interfaces/tasks/task_monitor.py,sha256=OD_XRuPDcXEkt0KYg4mqyJW5wwIZ4FZh
1829
1831
  mindsdb/interfaces/tasks/task_thread.py,sha256=G2Ouh75uacCdOnGuMBKmHjFGWdCIbilRkCAUKz7Py6M,1666
1830
1832
  mindsdb/interfaces/triggers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1831
1833
  mindsdb/interfaces/triggers/trigger_task.py,sha256=hfNl2aNYSx7WvGQOE4l70mQLpUUqJTAmFgXsHH0mijI,2928
1832
- mindsdb/interfaces/triggers/triggers_controller.py,sha256=J3MY-PgoODO-5opckFXNr--VLCK5yo6igb99FBOen6g,5459
1834
+ mindsdb/interfaces/triggers/triggers_controller.py,sha256=tmyaI9Pi-EUkaoN5jtRc0aGa_OgDfRRuag0-7mz-VgU,5523
1833
1835
  mindsdb/metrics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1834
1836
  mindsdb/metrics/metrics.py,sha256=6pV5DO85OF_iIBTma0TXRUrfNHU9a0Ds2RS2u1-XYrU,1956
1835
1837
  mindsdb/metrics/server.py,sha256=N8TePhS0k7b3NTxhRN4Pt78ZR-ogaOB6ngCBmZaHw14,985
@@ -1851,7 +1853,7 @@ mindsdb/migrations/versions/2022-09-06_96d5fef10caa_data_integration_id.py,sha25
1851
1853
  mindsdb/migrations/versions/2022-09-08_87b2df2b83e1_predictor_status.py,sha256=vCD-CP85Lu6nWNSNYbV-xQVjyAw4942K6AIQYi_wtbU,1957
1852
1854
  mindsdb/migrations/versions/2022-09-19_3d5e70105df7_content_storage.py,sha256=_vrNCc5cL401Bdx2yTQAYInXbT4DTpLMv2XViCOpAns,1789
1853
1855
  mindsdb/migrations/versions/2022-09-29_cada7d2be947_json_storage.py,sha256=oaa8dFBNBDUnRWmWKX-lowCu5pslF1bw0ndLzMLDwHQ,2384
1854
- mindsdb/migrations/versions/2022-10-14_43c52d23845a_projects.py,sha256=yPAAWkB5YPCdiZt-8HC6bRTJJQdhSaUiMTEkxd6aKiM,3486
1856
+ mindsdb/migrations/versions/2022-10-14_43c52d23845a_projects.py,sha256=8vJ5FGFwCF6aBCLqvP1xUEBwfgcTBzoGvwenyB7T5UY,3815
1855
1857
  mindsdb/migrations/versions/2022-11-07_1e60096fc817_predictor_version.py,sha256=qbZJ0SAYJD4L5drKjVgJS5xfXOkjJ2k6H2oNP-ItNeM,1802
1856
1858
  mindsdb/migrations/versions/2022-11-11_d429095b570f_data_integration_id.py,sha256=Fuf5qBCtt_LPYPQMnhcOXRVxad5hOVg4BMPnGL8sj2k,3487
1857
1859
  mindsdb/migrations/versions/2022-12-26_459218b0844c_fix_unique_constraint.py,sha256=iNEPTABbGKvWEKEqYmPz1zn7GMG3iMzvP7REsmUrn1I,799
@@ -1891,26 +1893,27 @@ mindsdb/migrations/versions/2024-11-28_a8a3fac369e7_llm_log_json_in_out.py,sha25
1891
1893
  mindsdb/migrations/versions/2024-11-29_f6dc924079fa_predictor_training_metadata.py,sha256=nCnp-M3ljIEAO9XTc5mSURp2SX5Q8gE6kyJHp5J5vmo,1322
1892
1894
  mindsdb/migrations/versions/2025-01-15_c06c35f7e8e1_project_company.py,sha256=zJcBGdgBMlt9oI-SbB8C74w-jDf3ZMYlEuO2guwrfZw,1896
1893
1895
  mindsdb/migrations/versions/2025-02-09_4943359e354a_file_metadata.py,sha256=0-QqeVZECfpjKwe86PEwQ9dPgo6Pgmkp_213wTHYiPk,826
1896
+ mindsdb/migrations/versions/2025-02-10_6ab9903fc59a_del_log_table.py,sha256=V46GpRW1Oeg2M5BpBBpwZ2MrYcpAoCSrWfGoHhPXqYs,839
1897
+ mindsdb/migrations/versions/2025-02-14_4521dafe89ab_added_encrypted_content_to_json_storage.py,sha256=ypMSb0IApik_sjmG1ibII6fRH4KdWHFaLQHQro0mgV8,883
1898
+ mindsdb/migrations/versions/2025-02-19_11347c213b36_added_metadata_to_projects.py,sha256=5I6Zs75EzHCAEvRPbjnCEhgT-YfXJU1fHR4GeZxMyVY,1087
1894
1899
  mindsdb/migrations/versions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1895
1900
  mindsdb/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1896
1901
  mindsdb/utilities/auth.py,sha256=6ycLJgXySghgFdzK6emxdStElzt5aOPafjDCRR_g_q0,2336
1897
1902
  mindsdb/utilities/cache.py,sha256=6VV5BJ0EWPYK2h80KEM1ETMhw_OCgDKyU6Pejvj1s3E,7431
1898
- mindsdb/utilities/config.py,sha256=kYzpQkbvGVtTJCHUUEEFzOWBplQ0gShK5B7lW1KA3M0,20691
1903
+ mindsdb/utilities/config.py,sha256=F31QINdBhkQTfEdnitKkekUHQWOU2vdQV5doNqa4Mes,20942
1899
1904
  mindsdb/utilities/context.py,sha256=LyKNgtavQnAfZpaPHINhrA_9L_SjfURUBD9fZNtuQMQ,1813
1900
1905
  mindsdb/utilities/context_executor.py,sha256=6ByyeulMePEfRrGxR9vlKYF87R8z1wHFwc1GdfhlGCk,1946
1901
1906
  mindsdb/utilities/exception.py,sha256=q-9cwMLmQvuPpwdjRG0xNZ23z9cxHSfyT2295Rk6waA,1034
1902
1907
  mindsdb/utilities/fs.py,sha256=1ezB-EkY-qhIBBC_qRUAn79D0CbxCyVDfEdrY2pp1JA,4657
1903
- mindsdb/utilities/functions.py,sha256=CQ87uYz7elOeklHbl7vQdK6QPKpTLGWHAOEKW-lKq5Q,6398
1908
+ mindsdb/utilities/functions.py,sha256=tSAmY6zYUzhsEUXvRPEtgU1yIPKGKLDRtPT1hMuUOv0,6675
1904
1909
  mindsdb/utilities/json_encoder.py,sha256=-nWynBlL7AwRyrM8gkiXPvPzk97EBJawryCA-ZO_7-A,1094
1905
1910
  mindsdb/utilities/langfuse.py,sha256=SzJ7db-BZIiYiOs27jxmeUAp554W9jFFiuiWy87FNs4,9270
1906
- mindsdb/utilities/log.py,sha256=cqWnFDM3qBbsMKTpIXKjA7q1jTZDMkrk4YhjVmzko58,3908
1907
- mindsdb/utilities/log_controller.py,sha256=B70FF1P1-kkpujpSAkxhu9FCZARKXfvov-SBl3oiobA,1039
1911
+ mindsdb/utilities/log.py,sha256=krqJoAsKrrg9bk8X0QfCbbk7CN_f7BS6wm-0aVjkrGc,4401
1908
1912
  mindsdb/utilities/partitioning.py,sha256=W84Nj8t2pveOo1ZfWuuYrSTOlOaZhLTPEaDxbE6BlyY,1466
1909
1913
  mindsdb/utilities/ps.py,sha256=vsY7119OJGYd_n1FXT_FuMTfUL3dVr3WiTRyASaGD00,2339
1910
1914
  mindsdb/utilities/security.py,sha256=Mdj3c9Y2BFiEmwKY7J-yrbYdQ6oMgWENPE1XIu4tidk,1506
1911
1915
  mindsdb/utilities/sentry.py,sha256=PMI55LbYvCi8NLmI3QgCNL1M8bymVr8J4JBTywAl1WE,2420
1912
1916
  mindsdb/utilities/starters.py,sha256=PknV9T2RdnEN7ekgt0ru_PYYT20NlFEPz3LrH8kws2w,818
1913
- mindsdb/utilities/telemetry.py,sha256=E1RAdG3g4BwUuD5rx6MpFVP1J1gEd6O4AzHTND6ql1A,1377
1914
1917
  mindsdb/utilities/utils.py,sha256=RZcPZtM5o1PPYOQmooHSTDn2yP909LGKm9whjVzTr28,1089
1915
1918
  mindsdb/utilities/wizards.py,sha256=vlWb50BSmBomj4jMGVc-DABx88GGAaWWqZf8RxA6O-0,1708
1916
1919
  mindsdb/utilities/hooks/__init__.py,sha256=HDPLuCxND4GUj5biGVfYeCmMZipMIyTG5WCOU3k654E,796
@@ -1918,7 +1921,7 @@ mindsdb/utilities/hooks/profiling.py,sha256=rku6YqVRv1cL0V62aZEw3dzrv5WQcFkoOut_
1918
1921
  mindsdb/utilities/ml_task_queue/__init__.py,sha256=fwDJ5M5cmXQNjNLBUq-sChjahZ9mjYVL4gAU6VoKQA0,2810
1919
1922
  mindsdb/utilities/ml_task_queue/base.py,sha256=eHOUIi9R9GnAt9Xjuip2VMxiroMFgFshhs7cW9hoS2U,453
1920
1923
  mindsdb/utilities/ml_task_queue/const.py,sha256=o-WWuREP7sXsjTo5Ok1awEtrE6KTB51ZzGfSMuDZUV4,607
1921
- mindsdb/utilities/ml_task_queue/consumer.py,sha256=cRRlgqOEFSQBKFEowLti2NbgX3ctiRQGZXoXMi0ZO4E,9475
1924
+ mindsdb/utilities/ml_task_queue/consumer.py,sha256=jYORLKMdWKYGUgIIRcnY-RSI3JSA2nmXeC_68OvQwco,9569
1922
1925
  mindsdb/utilities/ml_task_queue/producer.py,sha256=x0s1_xcqtUaT5Og0TdErgWmN1Jp236byzvd2N2HMO34,2764
1923
1926
  mindsdb/utilities/ml_task_queue/task.py,sha256=h6PimSa_AXFo_xvEJGvhDhxiCI54VN2VebVQn0QpAsQ,3166
1924
1927
  mindsdb/utilities/ml_task_queue/utils.py,sha256=2bmO5cbgqsXuMkolcaK54_VYjoGKIpg60B2t4XRNboU,3239
@@ -1930,9 +1933,9 @@ mindsdb/utilities/otel/metric_handlers/__init__.py,sha256=3jGsLt5KkdhqaAUUw8ALxE
1930
1933
  mindsdb/utilities/profiler/__init__.py,sha256=d4VXl80uSm1IotR-WwbBInPmLmACiK0AzxXGBA40I-0,251
1931
1934
  mindsdb/utilities/profiler/profiler.py,sha256=KCUtOupkbM_nCoof9MtiuhUzDGezx4a4NsBX6vGWbPA,3936
1932
1935
  mindsdb/utilities/render/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1933
- mindsdb/utilities/render/sqlalchemy_render.py,sha256=Z6bzVfQLqnMTYPJ9X4mZlFdrLmNwxM86yuvO_9TAsq4,30193
1934
- MindsDB-25.2.3.0.dist-info/LICENSE,sha256=ziqdjujs6WDn-9g3t0SISjHCBc2pLRht3gnRbQoXmIs,5804
1935
- MindsDB-25.2.3.0.dist-info/METADATA,sha256=lg683Nqs7NiKayjl8EL9yT4iLN-j059ktmL4Q5-eJWk,42861
1936
- MindsDB-25.2.3.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
1937
- MindsDB-25.2.3.0.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
1938
- MindsDB-25.2.3.0.dist-info/RECORD,,
1936
+ mindsdb/utilities/render/sqlalchemy_render.py,sha256=jVzdLD691hCs26wsUfhj6VDC8YIjL5hX0P9zNzSszH4,30311
1937
+ mindsdb-25.3.1.0.dist-info/LICENSE,sha256=ziqdjujs6WDn-9g3t0SISjHCBc2pLRht3gnRbQoXmIs,5804
1938
+ mindsdb-25.3.1.0.dist-info/METADATA,sha256=nKd2zruKpdFtLfVqsqAUr9iiKStVlEcJz3lRPkH_kyY,41703
1939
+ mindsdb-25.3.1.0.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
1940
+ mindsdb-25.3.1.0.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
1941
+ mindsdb-25.3.1.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.0)
2
+ Generator: setuptools (75.8.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,45 +0,0 @@
1
- import datetime as dt
2
-
3
- import json
4
-
5
- from google_auth_oauthlib.flow import Flow
6
-
7
-
8
- def credentials_to_dict(credentials):
9
- return {'token': credentials.token,
10
- 'refresh_token': credentials.refresh_token,
11
- 'token_uri': credentials.token_uri,
12
- 'client_id': credentials.client_id,
13
- 'client_secret': credentials.client_secret,
14
- 'scopes': credentials.scopes,
15
- 'expiry': dt.datetime.strftime(credentials.expiry, '%Y-%m-%dT%H:%M:%S')}
16
-
17
-
18
- class AuthException(Exception):
19
- def __init__(self, message, auth_url=None):
20
- super().__init__(message)
21
-
22
- self.auth_url = auth_url
23
-
24
-
25
- def google_auth_flow(secret_file, scopes, code=None):
26
- # initialise flow
27
- flow = Flow.from_client_secrets_file(secret_file, scopes)
28
-
29
- # get host url from flask
30
- from flask import request
31
- flow.redirect_uri = request.headers['ORIGIN'] + '/verify-auth'
32
-
33
- if code:
34
- flow.fetch_token(code=code)
35
- creds = flow.credentials
36
- return creds
37
- else:
38
- auth_url = flow.authorization_url()[0]
39
- raise AuthException(f'Authorisation required. Please follow the url: {auth_url}', auth_url=auth_url)
40
-
41
-
42
- def save_creds_to_file(creds, file_path):
43
- with open(file_path, 'w') as token:
44
- data = credentials_to_dict(creds)
45
- token.write(json.dumps(data))