Files
genai-toolbox/docs/en/resources/tools/looker/looker-delete-project-file.md
Dr. Strangelove 285aa46b88 feat(looker/tools): Enhance dashboard creation with dashboard filters (#2133)
## Description

Enhance dashboard creation with dashboard level filters. Also improve
tool descriptions.

## PR Checklist

> Thank you for opening a Pull Request! Before submitting your PR, there
are a
> few things you can do to make sure it goes smoothly:

- [X] Make sure you reviewed

[CONTRIBUTING.md](https://github.com/googleapis/genai-toolbox/blob/main/CONTRIBUTING.md)
- [x] Make sure to open an issue as a

[bug/issue](https://github.com/googleapis/genai-toolbox/issues/new/choose)
  before writing your code! That way we can discuss the change, evaluate
  designs, and agree on the general idea
- [x] Ensure the tests and linter pass
- [x] Code coverage does not decrease (if any source code was changed)
- [x] Appropriate docs were updated (if necessary)
- [x] Make sure to add `!` if this involve a breaking change
2025-12-10 13:30:20 -08:00

1.6 KiB

title, type, weight, description, aliases
title type weight description aliases
looker-delete-project-file docs 1 A "looker-delete-project-file" tool deletes a LookML file in a project.
/resources/tools/looker-delete-project-file

About

A looker-delete-project-file tool deletes a LookML file in a project

It's compatible with the following sources:

looker-delete-project-file accepts a project_id parameter and a file_path parameter.

Example

tools:
    delete_project_file:
        kind: looker-delete-project-file
        source: looker-source
        description: |
          This tool permanently deletes a specified LookML file from within a project.
          Use with caution, as this action cannot be undone through the API.

          Prerequisite: The Looker session must be in Development Mode. Use `dev_mode: true` first.

          Parameters:
          - project_id (required): The unique ID of the LookML project.
          - file_path (required): The exact path to the LookML file to delete within the project.

          Output:
          A confirmation message upon successful file deletion.

Reference

field type required description
kind string true Must be "looker-delete-project-file".
source string true Name of the source Looker instance.
description string true Description of the tool that is passed to the LLM.