DeepFabric 4.10.0__tar.gz → 4.10.1__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.
- {deepfabric-4.10.0 → deepfabric-4.10.1}/.github/workflows/tools-sdk-docker.yml +2 -2
- {deepfabric-4.10.0 → deepfabric-4.10.1}/PKG-INFO +2 -2
- {deepfabric-4.10.0 → deepfabric-4.10.1}/pyproject.toml +2 -2
- {deepfabric-4.10.0 → deepfabric-4.10.1}/.github/ISSUE_TEMPLATE/bug_report.yml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/.github/ISSUE_TEMPLATE/feature_request.yml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/.github/config.yml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/.github/dependabot.yml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/.github/workflows/docs.yml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/.github/workflows/integration.yml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/.github/workflows/publish.yml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/.github/workflows/test.yml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/.gitignore +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/CLAUDE.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/CODE_OF_CONDUCT.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/CONTRIBUTING.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/LICENSE +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/Makefile +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/README.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/assets/df-demo.gif +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/assets/logo-light-hols.png +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/assets/logo-light.png +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/assets/star.gif +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/coverage.xml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/__init__.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/__main__.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/auth.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/builders.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/builders_agent.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/cli.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/cloud_upload.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/config.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/config_manager.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/constants.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/dataset.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/dataset_manager.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/error_codes.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/evaluation/__init__.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/evaluation/backends/__init__.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/evaluation/backends/llm_eval_backend.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/evaluation/backends/ollama_backend.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/evaluation/backends/tool_call_parsers.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/evaluation/backends/transformers_backend.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/evaluation/evaluator.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/evaluation/evaluators/__init__.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/evaluation/evaluators/base.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/evaluation/evaluators/builtin/__init__.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/evaluation/evaluators/builtin/tool_calling.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/evaluation/evaluators/registry.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/evaluation/inference.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/evaluation/metrics.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/evaluation/parser.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/evaluation/reporters/__init__.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/evaluation/reporters/base.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/evaluation/reporters/cloud_reporter.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/evaluation/reporters/file_reporter.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/evaluation/reporters/multi_reporter.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/exceptions.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/factory.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/generator.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/graph.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/hf_hub.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/kaggle_hub.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/llm/__init__.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/llm/api_key_verifier.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/llm/client.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/llm/errors.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/llm/rate_limit_config.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/llm/rate_limit_detector.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/llm/retry_handler.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/loader.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/metrics.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/progress.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/prompts.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/schemas.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/spin/__init__.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/spin/client.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/spin/models.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/stream_simulator.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/tools/__init__.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/tools/defaults.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/tools/loader.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/tools/mcp_client.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/topic_manager.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/topic_model.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/training/__init__.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/training/api_key_prompt.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/training/callback.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/training/dataset_utils.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/training/metrics_sender.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/tree.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/tui.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/update_checker.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/utils.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/validation.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/cli/evaluate.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/cli/generate.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/cli/import-tools.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/cli/index.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/cli/info.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/cli/upload-hf.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/cli/upload-kaggle.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/cli/upload.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/cli/validate.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/cli/visualize.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/dataset-generation/agent.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/dataset-generation/basic.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/dataset-generation/configuration.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/dataset-generation/index.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/dataset-generation/rate-limiting.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/dataset-generation/reasoning.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/evaluation/index.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/evaluation/metrics.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/evaluation/running.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/images/logo-light.png +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/images/python-spin.png +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/index.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/tools/custom.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/tools/index.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/tools/mock.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/tools/spin.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/tools/tutorials/go.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/tools/tutorials/index.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/tools/tutorials/python.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/tools/tutorials/rust.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/tools/tutorials/typescript.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/tools/vfs.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/training/chat-templates.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/training/dataset-preparation.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/training/frameworks.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/training/index.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/docs/training/loading.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/examples/agent-tools.yaml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/examples/basic-anthropic.yaml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/examples/basic-gemini.yaml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/examples/basic-graph.yaml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/examples/basic-ollama.yaml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/examples/basic-openai.yaml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/examples/basic-openrouter.yaml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/examples/basic-tree.yaml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/examples/coding-agent.yaml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/examples/complete.yaml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/examples/custom-tools.yaml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/examples/github-mock-tools.yaml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/examples/reasoning.yaml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/examples/spin-vfs-tools.yaml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/examples/tools-sdk-examples/blender/load-blender-mock-data.sh +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/examples/tools-sdk-examples/blender/spin-blender.yaml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/examples/tools-sdk-examples/figma/load-figma-mock-data.sh +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/examples/tools-sdk-examples/figma/spin-figma.yaml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/examples/tools-sdk-examples/github/load-github-mock-data.sh +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/examples/tools-sdk-examples/github/spin-github-tools.yaml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/examples/tools-sdk-examples/kubernetes/load-kubernetes-mock-data.sh +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/examples/tools-sdk-examples/kubernetes/spin-kubernetes.yaml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/misc/test_update_manual.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/mkdocs.yml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/notebooks/Train_and_Evaluate_Qwen3_4B_Thinking_as_a_Blender_MCP_Agent.ipynb +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/notebooks/dataset-compatibility-check.ipynb +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/notebooks/evaluations.ipynb +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/test-run/01-alpaca.txt +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/test-run/01-chatml.txt +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/test-run/01-grpo.txt +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/test-run/01-xlam_v2.txt +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/test-run/02-trl2.txt +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/test-run/02-xlam_v2.txt +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/test-run/04-agent-tool-conversations.jsnl +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/test-run/04-single-agent-tools +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tests/__init__.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tests/integration/__init__.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tests/integration/conftest.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tests/integration/test_generator_integration.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tests/integration/test_graph_integration.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tests/integration/test_llm_client_integration.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tests/integration/test_spin_integration.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tests/integration/test_tree_integration.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tests/unit/__init__.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tests/unit/conftest.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tests/unit/test_api_key_validation.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tests/unit/test_checkpoint.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tests/unit/test_cli.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tests/unit/test_cloud_upload.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tests/unit/test_config.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tests/unit/test_dataset.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tests/unit/test_error_codes.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tests/unit/test_gemini_schema.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tests/unit/test_generator.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tests/unit/test_hf_hub.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tests/unit/test_kaggle_hub.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tests/unit/test_llm_eval_backend.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tests/unit/test_loader.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tests/unit/test_modular_config.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tests/unit/test_rate_limiting.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tests/unit/test_schemas.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tests/unit/test_tool_call_parsers.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tests/unit/test_topic_graph.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tests/unit/test_training_callback.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tests/unit/test_update_checker.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tools/extract_messages.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tools/function.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tools/yaml_to_openai_tools.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tools-sdk/.dockerignore +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tools-sdk/Dockerfile +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tools-sdk/README.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tools-sdk/components/github/README.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tools-sdk/components/github/app.py +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tools-sdk/components/github/github.wasm +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tools-sdk/components/github/pyproject.toml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tools-sdk/components/github/requirements.txt +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tools-sdk/components/github/spin.toml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tools-sdk/components/github/uv.lock +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tools-sdk/components/mock/Cargo.lock +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tools-sdk/components/mock/Cargo.toml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tools-sdk/components/mock/README.md +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tools-sdk/components/mock/src/lib.rs +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tools-sdk/components/vfs/Cargo.lock +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tools-sdk/components/vfs/Cargo.toml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tools-sdk/components/vfs/src/lib.rs +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tools-sdk/docker-compose.yaml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tools-sdk/runtime-config.toml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/tools-sdk/spin.toml +0 -0
- {deepfabric-4.10.0 → deepfabric-4.10.1}/uv.lock +0 -0
|
@@ -46,7 +46,7 @@ jobs:
|
|
|
46
46
|
|
|
47
47
|
- name: Log in to Container Registry
|
|
48
48
|
if: github.event_name != 'pull_request'
|
|
49
|
-
uses: docker/login-action@
|
|
49
|
+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
|
|
50
50
|
with:
|
|
51
51
|
registry: ${{ env.REGISTRY }}
|
|
52
52
|
username: ${{ github.actor }}
|
|
@@ -108,7 +108,7 @@ jobs:
|
|
|
108
108
|
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
|
|
109
109
|
|
|
110
110
|
- name: Log in to Container Registry
|
|
111
|
-
uses: docker/login-action@
|
|
111
|
+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
|
|
112
112
|
with:
|
|
113
113
|
registry: ${{ env.REGISTRY }}
|
|
114
114
|
username: ${{ github.actor }}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: DeepFabric
|
|
3
|
-
Version: 4.10.
|
|
3
|
+
Version: 4.10.1
|
|
4
4
|
Summary: Curate High Quality Datasets, Train, Evaluate and Ship
|
|
5
5
|
Author-email: DeepFabric Team <oss@alwaysfurther.ai>
|
|
6
6
|
License-File: LICENSE
|
|
@@ -25,7 +25,7 @@ Requires-Dist: pyyaml>=6.0.1
|
|
|
25
25
|
Requires-Dist: rich>=13.0.0
|
|
26
26
|
Requires-Dist: sentencepiece>=0.1.99
|
|
27
27
|
Requires-Dist: spin-sdk>=3.4.1
|
|
28
|
-
Requires-Dist: transformers==5.0.
|
|
28
|
+
Requires-Dist: transformers==5.0.0
|
|
29
29
|
Provides-Extra: dev
|
|
30
30
|
Requires-Dist: bandit>=1.7.10; extra == 'dev'
|
|
31
31
|
Requires-Dist: mermaid-py>=0.2.0; extra == 'dev'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "DeepFabric"
|
|
3
|
-
version = "4.10.
|
|
3
|
+
version = "4.10.1"
|
|
4
4
|
description = "Curate High Quality Datasets, Train, Evaluate and Ship"
|
|
5
5
|
authors = [{name = "DeepFabric Team", email = "oss@alwaysfurther.ai"}]
|
|
6
6
|
readme = "README.md"
|
|
@@ -21,7 +21,7 @@ dependencies = [
|
|
|
21
21
|
"google-api-core>=2.0.0",
|
|
22
22
|
"posthog>=3.0.0",
|
|
23
23
|
"packaging>=25.0",
|
|
24
|
-
"transformers==5.0.
|
|
24
|
+
"transformers==5.0.0",
|
|
25
25
|
"protobuf>=3.20.0",
|
|
26
26
|
"sentencepiece>=0.1.99",
|
|
27
27
|
"ollama>=0.6.1",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/evaluation/backends/transformers_backend.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/evaluation/evaluators/builtin/__init__.py
RENAMED
|
File without changes
|
{deepfabric-4.10.0 → deepfabric-4.10.1}/deepfabric/evaluation/evaluators/builtin/tool_calling.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{deepfabric-4.10.0 → deepfabric-4.10.1}/examples/tools-sdk-examples/blender/spin-blender.yaml
RENAMED
|
File without changes
|
{deepfabric-4.10.0 → deepfabric-4.10.1}/examples/tools-sdk-examples/figma/load-figma-mock-data.sh
RENAMED
|
File without changes
|
|
File without changes
|
{deepfabric-4.10.0 → deepfabric-4.10.1}/examples/tools-sdk-examples/github/load-github-mock-data.sh
RENAMED
|
File without changes
|
{deepfabric-4.10.0 → deepfabric-4.10.1}/examples/tools-sdk-examples/github/spin-github-tools.yaml
RENAMED
|
File without changes
|
|
File without changes
|
{deepfabric-4.10.0 → deepfabric-4.10.1}/examples/tools-sdk-examples/kubernetes/spin-kubernetes.yaml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|