isa-model 0.3.91__tar.gz → 0.4.0__tar.gz

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.
Files changed (220) hide show
  1. {isa_model-0.3.91 → isa_model-0.4.0}/PKG-INFO +13 -1
  2. isa_model-0.4.0/isa_model/client.py +1140 -0
  3. isa_model-0.4.0/isa_model/core/cache/redis_cache.py +401 -0
  4. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/core/config/config_manager.py +53 -10
  5. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/core/config.py +1 -1
  6. isa_model-0.4.0/isa_model/core/database/__init__.py +1 -0
  7. isa_model-0.4.0/isa_model/core/database/migrations.py +277 -0
  8. isa_model-0.4.0/isa_model/core/database/supabase_client.py +123 -0
  9. isa_model-0.4.0/isa_model/core/models/__init__.py +37 -0
  10. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/core/models/model_billing_tracker.py +60 -88
  11. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/core/models/model_manager.py +36 -18
  12. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/core/models/model_repo.py +44 -38
  13. isa_model-0.4.0/isa_model/core/models/model_statistics_tracker.py +234 -0
  14. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/core/models/model_storage.py +0 -1
  15. isa_model-0.4.0/isa_model/core/models/model_version_manager.py +959 -0
  16. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/core/pricing_manager.py +2 -249
  17. isa_model-0.4.0/isa_model/core/resilience/circuit_breaker.py +366 -0
  18. isa_model-0.4.0/isa_model/core/security/secrets.py +358 -0
  19. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/core/services/__init__.py +2 -4
  20. isa_model-0.4.0/isa_model/core/services/intelligent_model_selector.py +278 -0
  21. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/core/storage/hf_storage.py +1 -1
  22. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/core/types.py +7 -0
  23. isa_model-0.4.0/isa_model/deployment/cloud/modal/isa_audio_chatTTS_service.py +520 -0
  24. isa_model-0.4.0/isa_model/deployment/cloud/modal/isa_audio_openvoice_service.py +758 -0
  25. isa_model-0.4.0/isa_model/deployment/cloud/modal/isa_audio_service_v2.py +1044 -0
  26. isa_model-0.4.0/isa_model/deployment/cloud/modal/isa_embed_rerank_service.py +296 -0
  27. isa_model-0.4.0/isa_model/deployment/cloud/modal/isa_video_hunyuan_service.py +423 -0
  28. isa_model-0.4.0/isa_model/deployment/cloud/modal/isa_vision_ocr_service.py +519 -0
  29. isa_model-0.4.0/isa_model/deployment/cloud/modal/isa_vision_qwen25_service.py +709 -0
  30. isa_model-0.4.0/isa_model/deployment/cloud/modal/isa_vision_table_service.py +676 -0
  31. isa_model-0.4.0/isa_model/deployment/cloud/modal/isa_vision_ui_service.py +833 -0
  32. isa_model-0.4.0/isa_model/deployment/cloud/modal/isa_vision_ui_service_optimized.py +660 -0
  33. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/core/deployment_manager.py +6 -4
  34. isa_model-0.4.0/isa_model/deployment/services/auto_hf_modal_deployer.py +894 -0
  35. isa_model-0.4.0/isa_model/eval/benchmarks/__init__.py +27 -0
  36. isa_model-0.4.0/isa_model/eval/benchmarks/multimodal_datasets.py +460 -0
  37. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/eval/benchmarks.py +244 -12
  38. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/eval/evaluators/__init__.py +8 -2
  39. isa_model-0.4.0/isa_model/eval/evaluators/audio_evaluator.py +727 -0
  40. isa_model-0.4.0/isa_model/eval/evaluators/embedding_evaluator.py +742 -0
  41. isa_model-0.4.0/isa_model/eval/evaluators/vision_evaluator.py +564 -0
  42. isa_model-0.4.0/isa_model/eval/example_evaluation.py +395 -0
  43. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/eval/factory.py +272 -5
  44. isa_model-0.4.0/isa_model/eval/isa_benchmarks.py +700 -0
  45. isa_model-0.4.0/isa_model/eval/isa_integration.py +582 -0
  46. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/eval/metrics.py +159 -6
  47. isa_model-0.4.0/isa_model/eval/tests/unit/test_basic.py +396 -0
  48. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/ai_factory.py +44 -8
  49. isa_model-0.4.0/isa_model/inference/services/audio/__init__.py +21 -0
  50. isa_model-0.4.0/isa_model/inference/services/audio/base_realtime_service.py +225 -0
  51. isa_model-0.4.0/isa_model/inference/services/audio/openai_realtime_service.py +549 -0
  52. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/audio/openai_stt_service.py +32 -6
  53. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/base_service.py +17 -1
  54. isa_model-0.4.0/isa_model/inference/services/embedding/__init__.py +13 -0
  55. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/embedding/base_embed_service.py +111 -8
  56. isa_model-0.4.0/isa_model/inference/services/embedding/isa_embed_service.py +305 -0
  57. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/embedding/openai_embed_service.py +2 -4
  58. isa_model-0.4.0/isa_model/inference/services/embedding/tests/test_embedding.py +222 -0
  59. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/img/__init__.py +2 -2
  60. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/img/base_image_gen_service.py +24 -7
  61. isa_model-0.4.0/isa_model/inference/services/img/replicate_image_gen_service.py +148 -0
  62. isa_model-0.4.0/isa_model/inference/services/img/services/replicate_face_swap.py +193 -0
  63. isa_model-0.4.0/isa_model/inference/services/img/services/replicate_flux.py +226 -0
  64. isa_model-0.4.0/isa_model/inference/services/img/services/replicate_flux_kontext.py +219 -0
  65. isa_model-0.4.0/isa_model/inference/services/img/services/replicate_sticker_maker.py +249 -0
  66. isa_model-0.4.0/isa_model/inference/services/img/tests/test_img_client.py +297 -0
  67. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/llm/base_llm_service.py +30 -6
  68. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/llm/helpers/llm_adapter.py +63 -9
  69. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/llm/ollama_llm_service.py +2 -1
  70. isa_model-0.4.0/isa_model/inference/services/llm/openai_llm_service.py +901 -0
  71. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/llm/yyds_llm_service.py +2 -1
  72. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/vision/__init__.py +5 -5
  73. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/vision/base_vision_service.py +118 -185
  74. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/vision/helpers/image_utils.py +11 -5
  75. isa_model-0.4.0/isa_model/inference/services/vision/isa_vision_service.py +573 -0
  76. isa_model-0.4.0/isa_model/inference/services/vision/tests/test_ocr_client.py +284 -0
  77. isa_model-0.4.0/isa_model/inference/utils/conversion/onnx_converter.py +0 -0
  78. isa_model-0.4.0/isa_model/inference/utils/conversion/torch_converter.py +0 -0
  79. isa_model-0.4.0/isa_model/serving/api/fastapi_server.py +161 -0
  80. isa_model-0.4.0/isa_model/serving/api/middleware/auth.py +311 -0
  81. isa_model-0.4.0/isa_model/serving/api/middleware/security.py +278 -0
  82. isa_model-0.4.0/isa_model/serving/api/routes/analytics.py +486 -0
  83. isa_model-0.4.0/isa_model/serving/api/routes/deployments.py +339 -0
  84. isa_model-0.4.0/isa_model/serving/api/routes/evaluations.py +579 -0
  85. isa_model-0.4.0/isa_model/serving/api/routes/logs.py +430 -0
  86. isa_model-0.4.0/isa_model/serving/api/routes/settings.py +582 -0
  87. isa_model-0.4.0/isa_model/serving/api/routes/unified.py +433 -0
  88. isa_model-0.4.0/isa_model/serving/api/startup.py +304 -0
  89. isa_model-0.4.0/isa_model/serving/modal_proxy_server.py +249 -0
  90. isa_model-0.4.0/isa_model/training/__init__.py +168 -0
  91. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/core/__init__.py +4 -1
  92. isa_model-0.4.0/isa_model/training/examples/intelligent_training_example.py +281 -0
  93. isa_model-0.4.0/isa_model/training/intelligent/__init__.py +25 -0
  94. isa_model-0.4.0/isa_model/training/intelligent/decision_engine.py +643 -0
  95. isa_model-0.4.0/isa_model/training/intelligent/intelligent_factory.py +888 -0
  96. isa_model-0.4.0/isa_model/training/intelligent/knowledge_base.py +751 -0
  97. isa_model-0.4.0/isa_model/training/intelligent/resource_optimizer.py +839 -0
  98. isa_model-0.4.0/isa_model/training/intelligent/task_classifier.py +576 -0
  99. isa_model-0.4.0/isa_model/training/storage/__init__.py +24 -0
  100. isa_model-0.4.0/isa_model/training/storage/core_integration.py +439 -0
  101. isa_model-0.4.0/isa_model/training/storage/training_repository.py +552 -0
  102. isa_model-0.4.0/isa_model/training/storage/training_storage.py +628 -0
  103. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model.egg-info/PKG-INFO +13 -1
  104. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model.egg-info/SOURCES.txt +61 -21
  105. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model.egg-info/requires.txt +13 -0
  106. {isa_model-0.3.91 → isa_model-0.4.0}/pyproject.toml +18 -3
  107. isa_model-0.3.91/isa_model/client.py +0 -981
  108. isa_model-0.3.91/isa_model/core/services/intelligent_model_selector.py +0 -547
  109. isa_model-0.3.91/isa_model/deployment/cloud/modal/isa_vision_doc_service.py +0 -766
  110. isa_model-0.3.91/isa_model/deployment/cloud/modal/isa_vision_table_service.py +0 -532
  111. isa_model-0.3.91/isa_model/deployment/cloud/modal/isa_vision_ui_service.py +0 -406
  112. isa_model-0.3.91/isa_model/deployment/cloud/modal/register_models.py +0 -321
  113. isa_model-0.3.91/isa_model/inference/adapter/unified_api.py +0 -248
  114. isa_model-0.3.91/isa_model/inference/services/audio/openai_realtime_service.py +0 -353
  115. isa_model-0.3.91/isa_model/inference/services/helpers/stacked_config.py +0 -148
  116. isa_model-0.3.91/isa_model/inference/services/img/flux_professional_service.py +0 -603
  117. isa_model-0.3.91/isa_model/inference/services/img/helpers/base_stacked_service.py +0 -274
  118. isa_model-0.3.91/isa_model/inference/services/img/replicate_image_gen_service.py +0 -486
  119. isa_model-0.3.91/isa_model/inference/services/llm/openai_llm_service.py +0 -304
  120. isa_model-0.3.91/isa_model/inference/services/others/table_transformer_service.py +0 -61
  121. isa_model-0.3.91/isa_model/inference/services/vision/doc_analysis_service.py +0 -640
  122. isa_model-0.3.91/isa_model/inference/services/vision/helpers/base_stacked_service.py +0 -274
  123. isa_model-0.3.91/isa_model/inference/services/vision/ui_analysis_service.py +0 -823
  124. isa_model-0.3.91/isa_model/scripts/inference_tracker.py +0 -283
  125. isa_model-0.3.91/isa_model/scripts/mlflow_manager.py +0 -379
  126. isa_model-0.3.91/isa_model/scripts/model_registry.py +0 -465
  127. isa_model-0.3.91/isa_model/scripts/register_models.py +0 -370
  128. isa_model-0.3.91/isa_model/scripts/register_models_with_embeddings.py +0 -510
  129. isa_model-0.3.91/isa_model/scripts/start_mlflow.py +0 -95
  130. isa_model-0.3.91/isa_model/scripts/training_tracker.py +0 -257
  131. isa_model-0.3.91/isa_model/serving/api/fastapi_server.py +0 -89
  132. isa_model-0.3.91/isa_model/serving/api/routes/unified.py +0 -274
  133. isa_model-0.3.91/isa_model/training/__init__.py +0 -74
  134. isa_model-0.3.91/tests/test_cleaned_ai_factory.py +0 -145
  135. isa_model-0.3.91/tests/test_client_tools.py +0 -359
  136. isa_model-0.3.91/tests/test_isa_model_client.py +0 -310
  137. isa_model-0.3.91/tests/test_isa_model_client_http.py +0 -532
  138. {isa_model-0.3.91 → isa_model-0.4.0}/MANIFEST.in +0 -0
  139. {isa_model-0.3.91 → isa_model-0.4.0}/README.md +0 -0
  140. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/__init__.py +0 -0
  141. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/core/config/__init__.py +0 -0
  142. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/core/storage/local_storage.py +0 -0
  143. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/core/storage/minio_storage.py +0 -0
  144. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/__init__.py +0 -0
  145. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/cloud/__init__.py +0 -0
  146. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/cloud/modal/__init__.py +0 -0
  147. /isa_model-0.3.91/isa_model/inference/utils/conversion/onnx_converter.py → /isa_model-0.4.0/isa_model/deployment/cloud/modal/isa_audio_fish_service.py +0 -0
  148. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/core/__init__.py +0 -0
  149. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/core/deployment_config.py +0 -0
  150. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/core/isa_deployment_service.py +0 -0
  151. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/gpu_int8_ds8/app/server.py +0 -0
  152. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/gpu_int8_ds8/scripts/test_client.py +0 -0
  153. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/gpu_int8_ds8/scripts/test_client_os.py +0 -0
  154. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/runtime/deployed_service.py +0 -0
  155. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/services/__init__.py +0 -0
  156. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/services/auto_deploy_vision_service.py +0 -0
  157. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/services/model_service.py +0 -0
  158. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/services/service_monitor.py +0 -0
  159. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/services/service_registry.py +0 -0
  160. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/services/simple_auto_deploy_vision_service.py +0 -0
  161. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/eval/__init__.py +0 -0
  162. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/eval/config/__init__.py +0 -0
  163. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/eval/config/evaluation_config.py +0 -0
  164. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/eval/evaluators/base_evaluator.py +0 -0
  165. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/eval/evaluators/llm_evaluator.py +0 -0
  166. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/eval/infrastructure/__init__.py +0 -0
  167. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/eval/infrastructure/experiment_tracker.py +0 -0
  168. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/__init__.py +0 -0
  169. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/base.py +0 -0
  170. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/__init__.py +0 -0
  171. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/audio/base_stt_service.py +0 -0
  172. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/audio/base_tts_service.py +0 -0
  173. /isa_model-0.3.91/isa_model/inference/utils/conversion/torch_converter.py → /isa_model-0.4.0/isa_model/inference/services/audio/isa_tts_service.py +0 -0
  174. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/audio/openai_tts_service.py +0 -0
  175. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/audio/replicate_tts_service.py +0 -0
  176. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/embedding/helpers/text_splitter.py +0 -0
  177. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/embedding/ollama_embed_service.py +0 -0
  178. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/llm/__init__.py +0 -0
  179. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/llm/helpers/llm_prompts.py +0 -0
  180. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/llm/helpers/llm_utils.py +0 -0
  181. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/ml/base_ml_service.py +0 -0
  182. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/ml/sklearn_ml_service.py +0 -0
  183. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/vision/disabled/isA_vision_service.py +0 -0
  184. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/vision/helpers/vision_prompts.py +0 -0
  185. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/vision/openai_vision_service.py +0 -0
  186. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/vision/replicate_vision_service.py +0 -0
  187. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/utils/conversion/bge_rerank_convert.py +0 -0
  188. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/serving/__init__.py +0 -0
  189. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/serving/api/__init__.py +0 -0
  190. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/serving/api/middleware/__init__.py +0 -0
  191. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/serving/api/middleware/request_logger.py +0 -0
  192. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/serving/api/routes/__init__.py +0 -0
  193. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/serving/api/routes/health.py +0 -0
  194. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/serving/api/routes/llm.py +0 -0
  195. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/serving/api/routes/ui_analysis.py +0 -0
  196. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/serving/api/routes/vision.py +0 -0
  197. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/serving/api/schemas/__init__.py +0 -0
  198. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/serving/api/schemas/common.py +0 -0
  199. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/serving/api/schemas/ui_analysis.py +0 -0
  200. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/annotation/annotation_schema.py +0 -0
  201. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/annotation/processors/annotation_processor.py +0 -0
  202. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/annotation/storage/dataset_manager.py +0 -0
  203. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/annotation/storage/dataset_schema.py +0 -0
  204. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/annotation/tests/test_annotation_flow.py +0 -0
  205. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/annotation/tests/test_minio copy.py +0 -0
  206. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/annotation/tests/test_minio_upload.py +0 -0
  207. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/annotation/views/annotation_controller.py +0 -0
  208. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/cloud/__init__.py +0 -0
  209. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/cloud/job_orchestrator.py +0 -0
  210. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/cloud/runpod_trainer.py +0 -0
  211. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/cloud/storage_manager.py +0 -0
  212. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/core/config.py +0 -0
  213. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/core/dataset.py +0 -0
  214. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/core/trainer.py +0 -0
  215. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/core/utils.py +0 -0
  216. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/factory.py +0 -0
  217. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model.egg-info/dependency_links.txt +0 -0
  218. {isa_model-0.3.91 → isa_model-0.4.0}/isa_model.egg-info/top_level.txt +0 -0
  219. {isa_model-0.3.91 → isa_model-0.4.0}/setup.cfg +0 -0
  220. {isa_model-0.3.91 → isa_model-0.4.0}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: isa_model
3
- Version: 0.3.91
3
+ Version: 0.4.0
4
4
  Summary: Unified AI model serving framework
5
5
  Author: isA_Model Contributors
6
6
  Classifier: Development Status :: 3 - Alpha
@@ -37,6 +37,18 @@ Requires-Dist: trl>=0.4.0
37
37
  Requires-Dist: supabase>=2.0.0
38
38
  Requires-Dist: pgvector>=0.2.0
39
39
  Requires-Dist: psycopg2-binary>=2.9.0
40
+ Requires-Dist: asyncpg>=0.28.0
41
+ Requires-Dist: slowapi>=0.1.8
42
+ Requires-Dist: redis>=4.5.0
43
+ Requires-Dist: circuitbreaker>=1.3.2
44
+ Requires-Dist: prometheus-fastapi-instrumentator>=6.1.0
45
+ Requires-Dist: structlog>=23.1.0
46
+ Provides-Extra: dev
47
+ Requires-Dist: pytest>=7.0.0; extra == "dev"
48
+ Requires-Dist: black>=22.0.0; extra == "dev"
49
+ Requires-Dist: flake8>=4.0.0; extra == "dev"
50
+ Requires-Dist: mypy>=0.991; extra == "dev"
51
+ Requires-Dist: twine>=4.0.0; extra == "dev"
40
52
 
41
53
  # isa_model_sdk - Unified AI Model Serving Framework
42
54