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.
- {isa_model-0.3.91 → isa_model-0.4.0}/PKG-INFO +13 -1
- isa_model-0.4.0/isa_model/client.py +1140 -0
- isa_model-0.4.0/isa_model/core/cache/redis_cache.py +401 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/core/config/config_manager.py +53 -10
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/core/config.py +1 -1
- isa_model-0.4.0/isa_model/core/database/__init__.py +1 -0
- isa_model-0.4.0/isa_model/core/database/migrations.py +277 -0
- isa_model-0.4.0/isa_model/core/database/supabase_client.py +123 -0
- isa_model-0.4.0/isa_model/core/models/__init__.py +37 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/core/models/model_billing_tracker.py +60 -88
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/core/models/model_manager.py +36 -18
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/core/models/model_repo.py +44 -38
- isa_model-0.4.0/isa_model/core/models/model_statistics_tracker.py +234 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/core/models/model_storage.py +0 -1
- isa_model-0.4.0/isa_model/core/models/model_version_manager.py +959 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/core/pricing_manager.py +2 -249
- isa_model-0.4.0/isa_model/core/resilience/circuit_breaker.py +366 -0
- isa_model-0.4.0/isa_model/core/security/secrets.py +358 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/core/services/__init__.py +2 -4
- isa_model-0.4.0/isa_model/core/services/intelligent_model_selector.py +278 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/core/storage/hf_storage.py +1 -1
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/core/types.py +7 -0
- isa_model-0.4.0/isa_model/deployment/cloud/modal/isa_audio_chatTTS_service.py +520 -0
- isa_model-0.4.0/isa_model/deployment/cloud/modal/isa_audio_openvoice_service.py +758 -0
- isa_model-0.4.0/isa_model/deployment/cloud/modal/isa_audio_service_v2.py +1044 -0
- isa_model-0.4.0/isa_model/deployment/cloud/modal/isa_embed_rerank_service.py +296 -0
- isa_model-0.4.0/isa_model/deployment/cloud/modal/isa_video_hunyuan_service.py +423 -0
- isa_model-0.4.0/isa_model/deployment/cloud/modal/isa_vision_ocr_service.py +519 -0
- isa_model-0.4.0/isa_model/deployment/cloud/modal/isa_vision_qwen25_service.py +709 -0
- isa_model-0.4.0/isa_model/deployment/cloud/modal/isa_vision_table_service.py +676 -0
- isa_model-0.4.0/isa_model/deployment/cloud/modal/isa_vision_ui_service.py +833 -0
- isa_model-0.4.0/isa_model/deployment/cloud/modal/isa_vision_ui_service_optimized.py +660 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/core/deployment_manager.py +6 -4
- isa_model-0.4.0/isa_model/deployment/services/auto_hf_modal_deployer.py +894 -0
- isa_model-0.4.0/isa_model/eval/benchmarks/__init__.py +27 -0
- isa_model-0.4.0/isa_model/eval/benchmarks/multimodal_datasets.py +460 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/eval/benchmarks.py +244 -12
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/eval/evaluators/__init__.py +8 -2
- isa_model-0.4.0/isa_model/eval/evaluators/audio_evaluator.py +727 -0
- isa_model-0.4.0/isa_model/eval/evaluators/embedding_evaluator.py +742 -0
- isa_model-0.4.0/isa_model/eval/evaluators/vision_evaluator.py +564 -0
- isa_model-0.4.0/isa_model/eval/example_evaluation.py +395 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/eval/factory.py +272 -5
- isa_model-0.4.0/isa_model/eval/isa_benchmarks.py +700 -0
- isa_model-0.4.0/isa_model/eval/isa_integration.py +582 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/eval/metrics.py +159 -6
- isa_model-0.4.0/isa_model/eval/tests/unit/test_basic.py +396 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/ai_factory.py +44 -8
- isa_model-0.4.0/isa_model/inference/services/audio/__init__.py +21 -0
- isa_model-0.4.0/isa_model/inference/services/audio/base_realtime_service.py +225 -0
- isa_model-0.4.0/isa_model/inference/services/audio/openai_realtime_service.py +549 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/audio/openai_stt_service.py +32 -6
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/base_service.py +17 -1
- isa_model-0.4.0/isa_model/inference/services/embedding/__init__.py +13 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/embedding/base_embed_service.py +111 -8
- isa_model-0.4.0/isa_model/inference/services/embedding/isa_embed_service.py +305 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/embedding/openai_embed_service.py +2 -4
- isa_model-0.4.0/isa_model/inference/services/embedding/tests/test_embedding.py +222 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/img/__init__.py +2 -2
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/img/base_image_gen_service.py +24 -7
- isa_model-0.4.0/isa_model/inference/services/img/replicate_image_gen_service.py +148 -0
- isa_model-0.4.0/isa_model/inference/services/img/services/replicate_face_swap.py +193 -0
- isa_model-0.4.0/isa_model/inference/services/img/services/replicate_flux.py +226 -0
- isa_model-0.4.0/isa_model/inference/services/img/services/replicate_flux_kontext.py +219 -0
- isa_model-0.4.0/isa_model/inference/services/img/services/replicate_sticker_maker.py +249 -0
- isa_model-0.4.0/isa_model/inference/services/img/tests/test_img_client.py +297 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/llm/base_llm_service.py +30 -6
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/llm/helpers/llm_adapter.py +63 -9
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/llm/ollama_llm_service.py +2 -1
- isa_model-0.4.0/isa_model/inference/services/llm/openai_llm_service.py +901 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/llm/yyds_llm_service.py +2 -1
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/vision/__init__.py +5 -5
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/vision/base_vision_service.py +118 -185
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/vision/helpers/image_utils.py +11 -5
- isa_model-0.4.0/isa_model/inference/services/vision/isa_vision_service.py +573 -0
- isa_model-0.4.0/isa_model/inference/services/vision/tests/test_ocr_client.py +284 -0
- isa_model-0.4.0/isa_model/inference/utils/conversion/onnx_converter.py +0 -0
- isa_model-0.4.0/isa_model/inference/utils/conversion/torch_converter.py +0 -0
- isa_model-0.4.0/isa_model/serving/api/fastapi_server.py +161 -0
- isa_model-0.4.0/isa_model/serving/api/middleware/auth.py +311 -0
- isa_model-0.4.0/isa_model/serving/api/middleware/security.py +278 -0
- isa_model-0.4.0/isa_model/serving/api/routes/analytics.py +486 -0
- isa_model-0.4.0/isa_model/serving/api/routes/deployments.py +339 -0
- isa_model-0.4.0/isa_model/serving/api/routes/evaluations.py +579 -0
- isa_model-0.4.0/isa_model/serving/api/routes/logs.py +430 -0
- isa_model-0.4.0/isa_model/serving/api/routes/settings.py +582 -0
- isa_model-0.4.0/isa_model/serving/api/routes/unified.py +433 -0
- isa_model-0.4.0/isa_model/serving/api/startup.py +304 -0
- isa_model-0.4.0/isa_model/serving/modal_proxy_server.py +249 -0
- isa_model-0.4.0/isa_model/training/__init__.py +168 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/core/__init__.py +4 -1
- isa_model-0.4.0/isa_model/training/examples/intelligent_training_example.py +281 -0
- isa_model-0.4.0/isa_model/training/intelligent/__init__.py +25 -0
- isa_model-0.4.0/isa_model/training/intelligent/decision_engine.py +643 -0
- isa_model-0.4.0/isa_model/training/intelligent/intelligent_factory.py +888 -0
- isa_model-0.4.0/isa_model/training/intelligent/knowledge_base.py +751 -0
- isa_model-0.4.0/isa_model/training/intelligent/resource_optimizer.py +839 -0
- isa_model-0.4.0/isa_model/training/intelligent/task_classifier.py +576 -0
- isa_model-0.4.0/isa_model/training/storage/__init__.py +24 -0
- isa_model-0.4.0/isa_model/training/storage/core_integration.py +439 -0
- isa_model-0.4.0/isa_model/training/storage/training_repository.py +552 -0
- isa_model-0.4.0/isa_model/training/storage/training_storage.py +628 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model.egg-info/PKG-INFO +13 -1
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model.egg-info/SOURCES.txt +61 -21
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model.egg-info/requires.txt +13 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/pyproject.toml +18 -3
- isa_model-0.3.91/isa_model/client.py +0 -981
- isa_model-0.3.91/isa_model/core/services/intelligent_model_selector.py +0 -547
- isa_model-0.3.91/isa_model/deployment/cloud/modal/isa_vision_doc_service.py +0 -766
- isa_model-0.3.91/isa_model/deployment/cloud/modal/isa_vision_table_service.py +0 -532
- isa_model-0.3.91/isa_model/deployment/cloud/modal/isa_vision_ui_service.py +0 -406
- isa_model-0.3.91/isa_model/deployment/cloud/modal/register_models.py +0 -321
- isa_model-0.3.91/isa_model/inference/adapter/unified_api.py +0 -248
- isa_model-0.3.91/isa_model/inference/services/audio/openai_realtime_service.py +0 -353
- isa_model-0.3.91/isa_model/inference/services/helpers/stacked_config.py +0 -148
- isa_model-0.3.91/isa_model/inference/services/img/flux_professional_service.py +0 -603
- isa_model-0.3.91/isa_model/inference/services/img/helpers/base_stacked_service.py +0 -274
- isa_model-0.3.91/isa_model/inference/services/img/replicate_image_gen_service.py +0 -486
- isa_model-0.3.91/isa_model/inference/services/llm/openai_llm_service.py +0 -304
- isa_model-0.3.91/isa_model/inference/services/others/table_transformer_service.py +0 -61
- isa_model-0.3.91/isa_model/inference/services/vision/doc_analysis_service.py +0 -640
- isa_model-0.3.91/isa_model/inference/services/vision/helpers/base_stacked_service.py +0 -274
- isa_model-0.3.91/isa_model/inference/services/vision/ui_analysis_service.py +0 -823
- isa_model-0.3.91/isa_model/scripts/inference_tracker.py +0 -283
- isa_model-0.3.91/isa_model/scripts/mlflow_manager.py +0 -379
- isa_model-0.3.91/isa_model/scripts/model_registry.py +0 -465
- isa_model-0.3.91/isa_model/scripts/register_models.py +0 -370
- isa_model-0.3.91/isa_model/scripts/register_models_with_embeddings.py +0 -510
- isa_model-0.3.91/isa_model/scripts/start_mlflow.py +0 -95
- isa_model-0.3.91/isa_model/scripts/training_tracker.py +0 -257
- isa_model-0.3.91/isa_model/serving/api/fastapi_server.py +0 -89
- isa_model-0.3.91/isa_model/serving/api/routes/unified.py +0 -274
- isa_model-0.3.91/isa_model/training/__init__.py +0 -74
- isa_model-0.3.91/tests/test_cleaned_ai_factory.py +0 -145
- isa_model-0.3.91/tests/test_client_tools.py +0 -359
- isa_model-0.3.91/tests/test_isa_model_client.py +0 -310
- isa_model-0.3.91/tests/test_isa_model_client_http.py +0 -532
- {isa_model-0.3.91 → isa_model-0.4.0}/MANIFEST.in +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/README.md +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/__init__.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/core/config/__init__.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/core/storage/local_storage.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/core/storage/minio_storage.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/__init__.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/cloud/__init__.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/cloud/modal/__init__.py +0 -0
- /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
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/core/__init__.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/core/deployment_config.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/core/isa_deployment_service.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/gpu_int8_ds8/app/server.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/gpu_int8_ds8/scripts/test_client.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/gpu_int8_ds8/scripts/test_client_os.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/runtime/deployed_service.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/services/__init__.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/services/auto_deploy_vision_service.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/services/model_service.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/services/service_monitor.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/services/service_registry.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/deployment/services/simple_auto_deploy_vision_service.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/eval/__init__.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/eval/config/__init__.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/eval/config/evaluation_config.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/eval/evaluators/base_evaluator.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/eval/evaluators/llm_evaluator.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/eval/infrastructure/__init__.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/eval/infrastructure/experiment_tracker.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/__init__.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/base.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/__init__.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/audio/base_stt_service.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/audio/base_tts_service.py +0 -0
- /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
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/audio/openai_tts_service.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/audio/replicate_tts_service.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/embedding/helpers/text_splitter.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/embedding/ollama_embed_service.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/llm/__init__.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/llm/helpers/llm_prompts.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/llm/helpers/llm_utils.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/ml/base_ml_service.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/ml/sklearn_ml_service.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/vision/disabled/isA_vision_service.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/vision/helpers/vision_prompts.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/vision/openai_vision_service.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/services/vision/replicate_vision_service.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/inference/utils/conversion/bge_rerank_convert.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/serving/__init__.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/serving/api/__init__.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/serving/api/middleware/__init__.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/serving/api/middleware/request_logger.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/serving/api/routes/__init__.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/serving/api/routes/health.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/serving/api/routes/llm.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/serving/api/routes/ui_analysis.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/serving/api/routes/vision.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/serving/api/schemas/__init__.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/serving/api/schemas/common.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/serving/api/schemas/ui_analysis.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/annotation/annotation_schema.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/annotation/processors/annotation_processor.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/annotation/storage/dataset_manager.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/annotation/storage/dataset_schema.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/annotation/tests/test_annotation_flow.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/annotation/tests/test_minio copy.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/annotation/tests/test_minio_upload.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/annotation/views/annotation_controller.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/cloud/__init__.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/cloud/job_orchestrator.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/cloud/runpod_trainer.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/cloud/storage_manager.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/core/config.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/core/dataset.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/core/trainer.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/core/utils.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model/training/factory.py +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model.egg-info/dependency_links.txt +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/isa_model.egg-info/top_level.txt +0 -0
- {isa_model-0.3.91 → isa_model-0.4.0}/setup.cfg +0 -0
- {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
|
+
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
|
|