├── .dockerignore ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── config.yml │ └── feature_request.yaml ├── pull_request_template.md └── workflows │ ├── docker-image.yml │ ├── pages.yml │ ├── ruff.yml │ └── wiki.yml ├── .gitignore ├── LICENSE ├── README.md ├── api_tokens_sample.yml ├── backends ├── base_model_container.py ├── exllamav2 │ ├── grammar.py │ ├── model.py │ ├── utils.py │ └── vision.py ├── exllamav3 │ ├── grammar.py │ ├── model.py │ ├── sampler.py │ ├── utils.py │ └── vision.py └── infinity │ └── model.py ├── colab └── TabbyAPI_Colab_Example.ipynb ├── common ├── actions.py ├── args.py ├── auth.py ├── concurrency.py ├── config_models.py ├── downloader.py ├── gen_logging.py ├── hardware.py ├── health.py ├── image_util.py ├── logger.py ├── model.py ├── multimodal.py ├── networking.py ├── optional_dependencies.py ├── sampling.py ├── signals.py ├── tabby_config.py ├── templating.py ├── transformers_utils.py └── utils.py ├── config_sample.yml ├── docker ├── Dockerfile └── docker-compose.yml ├── docs ├── 01.-Getting-Started.md ├── 02.-Server-options.md ├── 03.-Usage.md ├── 04.-Chat-Completions.md ├── 05.-FAQ.md ├── 06.-Sharing.md ├── 07.-AI-Horde.md ├── 08.-Sampler-Overrides.md ├── 09.-Community-Projects.md ├── 10.-Tool-Calling.md └── Home.md ├── endpoints ├── Kobold │ ├── router.py │ ├── types │ │ ├── generation.py │ │ ├── model.py │ │ └── token.py │ └── utils │ │ └── generation.py ├── OAI │ ├── router.py │ ├── types │ │ ├── chat_completion.py │ │ ├── common.py │ │ ├── completion.py │ │ ├── embedding.py │ │ └── tools.py │ └── utils │ │ ├── chat_completion.py │ │ ├── completion.py │ │ ├── embeddings.py │ │ └── tools.py ├── core │ ├── router.py │ ├── types │ │ ├── auth.py │ │ ├── download.py │ │ ├── health.py │ │ ├── lora.py │ │ ├── model.py │ │ ├── sampler_overrides.py │ │ ├── template.py │ │ └── token.py │ └── utils │ │ ├── lora.py │ │ └── model.py └── server.py ├── formatting.bat ├── formatting.sh ├── loras └── place_your_loras_here.txt ├── main.py ├── models └── place_your_models_here.txt ├── pyproject.toml ├── sampler_overrides ├── safe_defaults.yml └── sample_preset.yml ├── start.bat ├── start.py ├── start.sh ├── templates ├── alpaca.jinja ├── chatml.jinja ├── place_your_templates_here.txt └── tool_calls │ └── chatml_with_headers.jinja ├── tests ├── model_test.py └── wheel_test.py └── update_scripts ├── update_deps.bat ├── update_deps.sh ├── update_deps_and_pull.bat └── update_deps_and_pull.sh /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: kingbri 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.github/workflows/pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/.github/workflows/pages.yml -------------------------------------------------------------------------------- /.github/workflows/ruff.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/.github/workflows/ruff.yml -------------------------------------------------------------------------------- /.github/workflows/wiki.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/.github/workflows/wiki.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/README.md -------------------------------------------------------------------------------- /api_tokens_sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/api_tokens_sample.yml -------------------------------------------------------------------------------- /backends/base_model_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/backends/base_model_container.py -------------------------------------------------------------------------------- /backends/exllamav2/grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/backends/exllamav2/grammar.py -------------------------------------------------------------------------------- /backends/exllamav2/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/backends/exllamav2/model.py -------------------------------------------------------------------------------- /backends/exllamav2/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/backends/exllamav2/utils.py -------------------------------------------------------------------------------- /backends/exllamav2/vision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/backends/exllamav2/vision.py -------------------------------------------------------------------------------- /backends/exllamav3/grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/backends/exllamav3/grammar.py -------------------------------------------------------------------------------- /backends/exllamav3/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/backends/exllamav3/model.py -------------------------------------------------------------------------------- /backends/exllamav3/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/backends/exllamav3/sampler.py -------------------------------------------------------------------------------- /backends/exllamav3/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/backends/exllamav3/utils.py -------------------------------------------------------------------------------- /backends/exllamav3/vision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/backends/exllamav3/vision.py -------------------------------------------------------------------------------- /backends/infinity/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/backends/infinity/model.py -------------------------------------------------------------------------------- /colab/TabbyAPI_Colab_Example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/colab/TabbyAPI_Colab_Example.ipynb -------------------------------------------------------------------------------- /common/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/common/actions.py -------------------------------------------------------------------------------- /common/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/common/args.py -------------------------------------------------------------------------------- /common/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/common/auth.py -------------------------------------------------------------------------------- /common/concurrency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/common/concurrency.py -------------------------------------------------------------------------------- /common/config_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/common/config_models.py -------------------------------------------------------------------------------- /common/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/common/downloader.py -------------------------------------------------------------------------------- /common/gen_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/common/gen_logging.py -------------------------------------------------------------------------------- /common/hardware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/common/hardware.py -------------------------------------------------------------------------------- /common/health.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/common/health.py -------------------------------------------------------------------------------- /common/image_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/common/image_util.py -------------------------------------------------------------------------------- /common/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/common/logger.py -------------------------------------------------------------------------------- /common/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/common/model.py -------------------------------------------------------------------------------- /common/multimodal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/common/multimodal.py -------------------------------------------------------------------------------- /common/networking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/common/networking.py -------------------------------------------------------------------------------- /common/optional_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/common/optional_dependencies.py -------------------------------------------------------------------------------- /common/sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/common/sampling.py -------------------------------------------------------------------------------- /common/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/common/signals.py -------------------------------------------------------------------------------- /common/tabby_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/common/tabby_config.py -------------------------------------------------------------------------------- /common/templating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/common/templating.py -------------------------------------------------------------------------------- /common/transformers_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/common/transformers_utils.py -------------------------------------------------------------------------------- /common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/common/utils.py -------------------------------------------------------------------------------- /config_sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/config_sample.yml -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /docs/01.-Getting-Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/docs/01.-Getting-Started.md -------------------------------------------------------------------------------- /docs/02.-Server-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/docs/02.-Server-options.md -------------------------------------------------------------------------------- /docs/03.-Usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/docs/03.-Usage.md -------------------------------------------------------------------------------- /docs/04.-Chat-Completions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/docs/04.-Chat-Completions.md -------------------------------------------------------------------------------- /docs/05.-FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/docs/05.-FAQ.md -------------------------------------------------------------------------------- /docs/06.-Sharing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/docs/06.-Sharing.md -------------------------------------------------------------------------------- /docs/07.-AI-Horde.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/docs/07.-AI-Horde.md -------------------------------------------------------------------------------- /docs/08.-Sampler-Overrides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/docs/08.-Sampler-Overrides.md -------------------------------------------------------------------------------- /docs/09.-Community-Projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/docs/09.-Community-Projects.md -------------------------------------------------------------------------------- /docs/10.-Tool-Calling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/docs/10.-Tool-Calling.md -------------------------------------------------------------------------------- /docs/Home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/docs/Home.md -------------------------------------------------------------------------------- /endpoints/Kobold/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/endpoints/Kobold/router.py -------------------------------------------------------------------------------- /endpoints/Kobold/types/generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/endpoints/Kobold/types/generation.py -------------------------------------------------------------------------------- /endpoints/Kobold/types/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/endpoints/Kobold/types/model.py -------------------------------------------------------------------------------- /endpoints/Kobold/types/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/endpoints/Kobold/types/token.py -------------------------------------------------------------------------------- /endpoints/Kobold/utils/generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/endpoints/Kobold/utils/generation.py -------------------------------------------------------------------------------- /endpoints/OAI/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/endpoints/OAI/router.py -------------------------------------------------------------------------------- /endpoints/OAI/types/chat_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/endpoints/OAI/types/chat_completion.py -------------------------------------------------------------------------------- /endpoints/OAI/types/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/endpoints/OAI/types/common.py -------------------------------------------------------------------------------- /endpoints/OAI/types/completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/endpoints/OAI/types/completion.py -------------------------------------------------------------------------------- /endpoints/OAI/types/embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/endpoints/OAI/types/embedding.py -------------------------------------------------------------------------------- /endpoints/OAI/types/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/endpoints/OAI/types/tools.py -------------------------------------------------------------------------------- /endpoints/OAI/utils/chat_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/endpoints/OAI/utils/chat_completion.py -------------------------------------------------------------------------------- /endpoints/OAI/utils/completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/endpoints/OAI/utils/completion.py -------------------------------------------------------------------------------- /endpoints/OAI/utils/embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/endpoints/OAI/utils/embeddings.py -------------------------------------------------------------------------------- /endpoints/OAI/utils/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/endpoints/OAI/utils/tools.py -------------------------------------------------------------------------------- /endpoints/core/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/endpoints/core/router.py -------------------------------------------------------------------------------- /endpoints/core/types/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/endpoints/core/types/auth.py -------------------------------------------------------------------------------- /endpoints/core/types/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/endpoints/core/types/download.py -------------------------------------------------------------------------------- /endpoints/core/types/health.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/endpoints/core/types/health.py -------------------------------------------------------------------------------- /endpoints/core/types/lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/endpoints/core/types/lora.py -------------------------------------------------------------------------------- /endpoints/core/types/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/endpoints/core/types/model.py -------------------------------------------------------------------------------- /endpoints/core/types/sampler_overrides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/endpoints/core/types/sampler_overrides.py -------------------------------------------------------------------------------- /endpoints/core/types/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/endpoints/core/types/template.py -------------------------------------------------------------------------------- /endpoints/core/types/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/endpoints/core/types/token.py -------------------------------------------------------------------------------- /endpoints/core/utils/lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/endpoints/core/utils/lora.py -------------------------------------------------------------------------------- /endpoints/core/utils/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/endpoints/core/utils/model.py -------------------------------------------------------------------------------- /endpoints/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/endpoints/server.py -------------------------------------------------------------------------------- /formatting.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/formatting.bat -------------------------------------------------------------------------------- /formatting.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/formatting.sh -------------------------------------------------------------------------------- /loras/place_your_loras_here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/main.py -------------------------------------------------------------------------------- /models/place_your_models_here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/pyproject.toml -------------------------------------------------------------------------------- /sampler_overrides/safe_defaults.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/sampler_overrides/safe_defaults.yml -------------------------------------------------------------------------------- /sampler_overrides/sample_preset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/sampler_overrides/sample_preset.yml -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/start.bat -------------------------------------------------------------------------------- /start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/start.py -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/start.sh -------------------------------------------------------------------------------- /templates/alpaca.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/templates/alpaca.jinja -------------------------------------------------------------------------------- /templates/chatml.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/templates/chatml.jinja -------------------------------------------------------------------------------- /templates/place_your_templates_here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/tool_calls/chatml_with_headers.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/templates/tool_calls/chatml_with_headers.jinja -------------------------------------------------------------------------------- /tests/model_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/tests/model_test.py -------------------------------------------------------------------------------- /tests/wheel_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/tests/wheel_test.py -------------------------------------------------------------------------------- /update_scripts/update_deps.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/update_scripts/update_deps.bat -------------------------------------------------------------------------------- /update_scripts/update_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/update_scripts/update_deps.sh -------------------------------------------------------------------------------- /update_scripts/update_deps_and_pull.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/update_scripts/update_deps_and_pull.bat -------------------------------------------------------------------------------- /update_scripts/update_deps_and_pull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theroyallab/tabbyAPI/HEAD/update_scripts/update_deps_and_pull.sh --------------------------------------------------------------------------------