{
    "ansible.ansible.path": ".venv/bin/ansible",
    "ansible.python.interpreterPath": ".venv/bin/python",
    "ansible.validation.lint.path": ".venv/bin/ansible-lint",
    "files.watcherExclude": {
        "**/.git/objects/**": true,
        "**/.git/subtree-cache/**": true,
        "**/.hg/store/**": true,
        "vendor/**/*": true,
        "data/**/*": true,
        "target/**/*": true,
        ".venv/**/*": true
    },
    "files.exclude": {
        "**/.git": true,
        "**/.svn": true,
        "**/.hg": true,
        "**/.DS_Store": true,
        "**/Thumbs.db": true,
        "vendor/**/*": true,
        "data/**/*": true,
        ".venv/**/*": true,
        "target/**/*": true
    },
    "search.exclude": {
        "**/node_modules": true,
        "**/bower_components": true,
        ".venv/**/*": true,
        "**/*.code-search": true,
        "data/**/*": true,
        "vendor/**/*": true,
        "target/**/*": true
    },
    "editor.formatOnSave": true,
    "rust-analyzer.runnables.extraEnv": {
        "LIBTORCH": "${workspaceFolder}/vendor/libtorch",
        "ORT_LIB_LOCATION": "${workspaceFolder}/vendor/onnxruntime",
        "DYLD_FALLBACK_LIBRARY_PATH": "${workspaceFolder}/vendor/libtorch/lib"
    },
    "rust-analyzer.cargo.extraEnv": {
        "LIBTORCH": "${workspaceFolder}/vendor/libtorch",
        "ORT_LIB_LOCATION": "${workspaceFolder}/vendor/onnxruntime"
    },
    "rust-analyzer.server.extraEnv": {
        "LIBTORCH": "${workspaceFolder}/vendor/libtorch",
        "ORT_LIB_LOCATION": "${workspaceFolder}/vendor/onnxruntime"
    },
    "terminal.integrated.env.osx": {
        "LIBTORCH": "${workspaceFolder}/vendor/libtorch",
        "ORT_LIB_LOCATION": "${workspaceFolder}/vendor/onnxruntime",
        "DYLD_FALLBACK_LIBRARY_PATH": "${workspaceFolder}/vendor/libtorch/lib"
    },
    "terminal.integrated.env.linux": {
        "LIBTORCH": "${workspaceFolder}/vendor/libtorch",
        "LD_LIBRARY_PATH": "${workspaceFolder}/vendor/libtorch/lib",
        "ORT_LIB_LOCATION": "${workspaceFolder}/vendor/onnxruntime"
    },
    "cSpell.words": [
        "clickhouse",
        "dtype",
        "ekproto",
        "expertkit",
        "mmap",
        "ndarray",
        "Onnx",
        "onnxruntime",
        "opendal",
        "Pretrain",
        "Pretrained",
        "Reqwest",
        "safetensor",
        "safetensors",
        "serde"
    ],
}