Initial commit
This commit is contained in:
34
commands/create-store.md
Normal file
34
commands/create-store.md
Normal file
@@ -0,0 +1,34 @@
|
||||
---
|
||||
description: Create a new Gemini File Search store
|
||||
argument-hint: store-name
|
||||
---
|
||||
|
||||
Create a new Gemini File Search store for document storage and RAG queries.
|
||||
|
||||
## Usage
|
||||
|
||||
```bash
|
||||
gemini-file-search-tool create-store "STORE_NAME" [--display-name NAME]
|
||||
```
|
||||
|
||||
## Arguments
|
||||
|
||||
- `STORE_NAME`: Store identifier (required)
|
||||
- `--display-name NAME`: Human-readable display name (optional)
|
||||
|
||||
## Examples
|
||||
|
||||
```bash
|
||||
# Create store with auto-generated display name
|
||||
gemini-file-search-tool create-store "research-papers"
|
||||
|
||||
# Create store with custom display name
|
||||
gemini-file-search-tool create-store "docs" --display-name "Project Documentation"
|
||||
|
||||
# Capture output as JSON
|
||||
gemini-file-search-tool create-store "code" | jq '.name'
|
||||
```
|
||||
|
||||
## Output
|
||||
|
||||
Returns JSON with store name, display_name, create_time, and update_time.
|
||||
Reference in New Issue
Block a user