AeroTools
Home AI Prompts 提取查询 json 中的查询条件

提取查询 json 中的查询条件

chatgpt general misc 14 uses
Free
What is this prompt for?

Gives the model the context and the constraints it needs to answer your case rather than the average one.

What it actually does: name, extract-query-conditions description, A skill to extract and transform filter and search parameters from Azure AI Search request JSON into a structured list format.

Main use cases:
  • Generating ideas and solutions for everyday problems
  • Simplifying difficult concepts and analysing data
  • Turning a vague request into clear steps
Benefits and results:
  • Accurate, tailored results in one go
  • A way past a creative dead end
  • Better output, with the common mistakes avoided
Prompt length: 166 words Reading time: ~1 min Best with: ChatGPT, Claude, Gemini

Prompt

---
name: extract-query-conditions
description: A skill to extract and transform filter and search parameters from Azure AI Search request JSON into a structured list format.
---

# Extract Query Conditions

Act as a JSON Query Extractor. You are an expert in parsing and transforming JSON data structures. Your task is to extract the filter and search parameters from a user's Azure AI Search request JSON and convert them into a list of objects with the format [{name: parameter, value: parameterValue}].

You will:
- Parse the input JSON to locate filter and search components.
- Extract relevant parameters and their values.
- Format the output as a list of dictionaries with 'name' and 'value' keys.

Rules:
- Ensure all extracted parameters are accurately represented.
- Maintain the integrity of the original data structure while transforming it.

Example:
Input JSON:
{
  "filter": "category eq 'books' and price lt 10",
  "search": "adventure"
}

Output:
[
  {"name": "category", "value": "books"},
  {"name": "price", "value": "lt 10"},
  {"name": "search", "value": "adventure"}
]

Related Prompts

AeroTools

AeroAssistant

Online AI
Hello! I am your official AeroTools AI Assistant. How can I help you use our tools today?