@@ -36,24 +36,56 @@ export const askSimpleQuestions = async (
3636 type : "select" ,
3737 name : "appType" ,
3838 message : "What app do you want to build?" ,
39+ hint : "🤖: Agent, 🔀: Workflow" ,
3940 choices : [
40- { title : "Agentic RAG" , value : "rag" } ,
41- { title : "Data Scientist" , value : "data_scientist" } ,
4241 {
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" ,
4467 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." ,
4570 } ,
4671 {
47- title : "Form Filler (using Workflows) " ,
72+ title : "🔀 Financial 10k SEC Form Filler " ,
4873 value : "form_filling" ,
74+ description :
75+ "Extract information from 10k SEC data and use it to fill out a CSV form template." ,
4976 } ,
50- { title : "Code Artifact Agent" , value : "code_artifact" } ,
51- { title : "Information Extractor" , value : "extractor" } ,
5277 {
53- title : "Contract Review (using Workflows) " ,
78+ title : "🔀 Contract Review" ,
5479 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." ,
5588 } ,
56- { title : "Blog Writer (using Workflows)" , value : "blog" } ,
5789 ] ,
5890 } ,
5991 questionHandlers ,
0 commit comments