@@ -36,24 +36,56 @@ export const askSimpleQuestions = async (
36
36
type : "select" ,
37
37
name : "appType" ,
38
38
message : "What app do you want to build?" ,
39
+ hint : "🤖: Agent, 🔀: Workflow" ,
39
40
choices : [
40
- { title : "Agentic RAG" , value : "rag" } ,
41
- { title : "Data Scientist" , value : "data_scientist" } ,
42
41
{
43
- title : "Financial Report Generator (using Workflows)" ,
42
+ title : "🤖 Agentic RAG" ,
43
+ value : "rag" ,
44
+ description :
45
+ "Build a chatbot that can answer questions based on provided documents." ,
46
+ } ,
47
+ {
48
+ title : "🤖 Data Scientist" ,
49
+ value : "data_scientist" ,
50
+ description :
51
+ "An data scientist agent that can analyze data and generate visualizations by using a code interpreter." ,
52
+ } ,
53
+ {
54
+ title : "🤖 Code Artifact Agent" ,
55
+ value : "code_artifact" ,
56
+ description :
57
+ "An agent that can write code, run it in a sandboxed environment, and finally show the output in the chat UI." ,
58
+ } ,
59
+ {
60
+ title : "🤖 Information Extractor" ,
61
+ value : "extractor" ,
62
+ description :
63
+ "Extract information from provided documents and return it as a structured JSON object by defining a Pydantic model." ,
64
+ } ,
65
+ {
66
+ title : "🔀 Financial Report Generator" ,
44
67
value : "financial_report_agent" ,
68
+ description :
69
+ "Generate a financial report by analyzing the provided 10-K SEC data and use a code interpreter to create charts or conduct further analysis." ,
45
70
} ,
46
71
{
47
- title : "Form Filler (using Workflows) " ,
72
+ title : "🔀 Financial 10k SEC Form Filler " ,
48
73
value : "form_filling" ,
74
+ description :
75
+ "Extract information from 10k SEC data and use it to fill out a CSV form template." ,
49
76
} ,
50
- { title : "Code Artifact Agent" , value : "code_artifact" } ,
51
- { title : "Information Extractor" , value : "extractor" } ,
52
77
{
53
- title : "Contract Review (using Workflows) " ,
78
+ title : "🔀 Contract Review" ,
54
79
value : "contract_review" ,
80
+ description :
81
+ "Extract and review contracts to ensure compliance with regulations (GDPR)" ,
82
+ } ,
83
+ {
84
+ title : "🔀 Blog Writer" ,
85
+ value : "blog" ,
86
+ description :
87
+ "Write a blog post by analyzing the provided data from different perspectives and crafting a coherent blog post with citations to the data." ,
55
88
} ,
56
- { title : "Blog Writer (using Workflows)" , value : "blog" } ,
57
89
] ,
58
90
} ,
59
91
questionHandlers ,
0 commit comments