|
1 | 1 | package org.springframework.ide.vscode.boot.java.handlers; |
2 | 2 |
|
3 | 3 | public enum QueryType { |
4 | | - SPEL("Explain SpEL Expression with Copilot", "Explain the following SpEL Expression with a clear summary first, followed by a breakdown of the expression with details: \n\n"), |
5 | | - JPQL("Explain Query with Copilot", "Explain the following JPQL query with a clear summary first, followed by a detailed explanation. If the query contains any SpEL expressions, explain those parts as well: \n\n"), |
6 | | - HQL("Explain Query with Copilot", "Explain the following HQL query with a clear summary first, followed by a detailed explanation. If the query contains any SpEL expressions, explain those parts as well: \n\n"), |
7 | | - MONGODB("Explain Query with Copilot", "Explain the following MongoDB query with a clear summary first, followed by a detailed explanation. If the query contains any SpEL expressions, explain those parts as well: \n\n"), |
8 | | - AOP("Explain AOP annotation with Copilot", "Explain the following AOP annotation with a clear summary first, followed by a detailed contextual explanation of annotation and its purpose: \n\n"), |
9 | | - DEFAULT("Explain Query with Copilot", "Explain the following query with a clear summary first, followed by a detailed explanation: \n\n"); |
| 4 | + SPEL("Explain SpEL Expression with AI", "Explain the following SpEL Expression with a clear summary first, followed by a breakdown of the expression with details: \n\n"), |
| 5 | + JPQL("Explain Query with AI", "Explain the following JPQL query with a clear summary first, followed by a detailed explanation. If the query contains any SpEL expressions, explain those parts as well: \n\n"), |
| 6 | + HQL("Explain Query with AI", "Explain the following HQL query with a clear summary first, followed by a detailed explanation. If the query contains any SpEL expressions, explain those parts as well: \n\n"), |
| 7 | + MONGODB("Explain Query with AI", "Explain the following MongoDB query with a clear summary first, followed by a detailed explanation. If the query contains any SpEL expressions, explain those parts as well: \n\n"), |
| 8 | + AOP("Explain AOP annotation with AI", "Explain the following AOP annotation with a clear summary first, followed by a detailed contextual explanation of annotation and its purpose: \n\n"), |
| 9 | + DEFAULT("Explain Query with AI", "Explain the following query with a clear summary first, followed by a detailed explanation: \n\n"); |
10 | 10 |
|
11 | 11 | private final String title; |
12 | 12 | private final String prompt; |
|
0 commit comments