mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-03 09:53:45 +00:00
25 lines
600 B
Text
25 lines
600 B
Text
---
|
|
description: "Local filesystem-based dataset I/O provider for reading and writing datasets to local storage."
|
|
sidebar_label: Localfs
|
|
title: inline::localfs
|
|
---
|
|
|
|
# inline::localfs
|
|
|
|
## Description
|
|
|
|
Local filesystem-based dataset I/O provider for reading and writing datasets to local storage.
|
|
|
|
## Configuration
|
|
|
|
| Field | Type | Required | Default | Description |
|
|
|-------|------|----------|---------|-------------|
|
|
| `kvstore` | `llama_stack.core.storage.datatypes.KVStoreReference` | No | | |
|
|
|
|
## Sample Configuration
|
|
|
|
```yaml
|
|
kvstore:
|
|
namespace: datasetio::localfs
|
|
backend: kv_default
|
|
```
|