File size: 2,738 Bytes
e3af00f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
site_name: PyTriton
theme:
  name: material
  custom_dir: docs/overrides
  logo: assets/logo.png
  favicon: assets/favicon.png
  palette:
      primary: black
  features:
    - navigation.top
extra_css:
  - assets/styles.css
repo_url: https://github.com/triton-inference-server/pytriton
repo_name: Git Repository
plugins:
  - autorefs
  - htmlproofer
  - mike
  - mkdocstrings:
      enable_inventory: true
      handlers:
        python:
          import:
            - https://docs.python.org/3/objects.inv
          options:
            docstring_style: google
            show_root_heading: true
            heading_level: 2
            line_length: 120
            docstring_section_style: table
            merge_init_into_class: true
  - search
watch:
  - pytriton
  - docs
  - mkdocs.yml
  - LICENSE
  - README.md
  - CHANGELOG.md
  - CONTRIBUTING.md
view_uri_template: blob/{ref}/{path}  # used by scripts/rewrite_links_to_repo.py hook
hooks:
  - scripts/rewrite_links_to_repo.py
extra:
  version:
    provider: mike
markdown_extensions:
  - admonition
  - pymdownx.details
  - pymdownx.highlight:
      anchor_linenums: true
  - pymdownx.inlinehilite
  - pymdownx.snippets
  - pymdownx.superfences
nav:
  - Home: README.md
  - Installation and Packaging:
    - Installation: installation.md
    - Building binary package: building.md
  - Quick Start: quick_start.md
  - Deploying Models:
      - Triton Initialization: initialization.md
      - Binding Model to Triton: binding_models.md
      - Binding Configuration: binding_configuration.md
      - Deploying in Clusters: deploying_in_clusters.md
      - Triton Remote Mode: remote_triton.md
  - Inference Handling:
      - Inference Callable: inference_callable.md
      - Decorators: decorators.md
      - Custom parameters/headers: custom_params.md
      - Example with downloaded input data: downloaded_input_data.md
      - Chunking and batching: chunking_guide.md
  - Clients: clients.md
  - Examples: examples.md
  - API Reference: api.md
  - Changelog: CHANGELOG.md
  - Known Issues: known_issues.md
  - Contributing: CONTRIBUTING.md
  - License: LICENSE.md