mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-03 09:53:45 +00:00
27 lines
721 B
Text
27 lines
721 B
Text
---
|
|
description: "OpenAI Files API provider for managing files through OpenAI's native file storage service."
|
|
sidebar_label: Remote - Openai
|
|
title: remote::openai
|
|
---
|
|
|
|
# remote::openai
|
|
|
|
## Description
|
|
|
|
OpenAI Files API provider for managing files through OpenAI's native file storage service.
|
|
|
|
## Configuration
|
|
|
|
| Field | Type | Required | Default | Description |
|
|
|-------|------|----------|---------|-------------|
|
|
| `api_key` | `str` | No | | OpenAI API key for authentication |
|
|
| `metadata_store` | `SqlStoreReference` | No | | SQL store configuration for file metadata |
|
|
|
|
## Sample Configuration
|
|
|
|
```yaml
|
|
api_key: ${env.OPENAI_API_KEY}
|
|
metadata_store:
|
|
table_name: openai_files_metadata
|
|
backend: sql_default
|
|
```
|