File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ export const assistant: CreateAssistantDTO | any = {
35
35
} ,
36
36
{
37
37
name : "confirmDetails" ,
38
+ async : true , // remove async to wait for BE response.
38
39
description : "Confirms the details provided by the user." ,
39
40
parameters : {
40
41
type : "object" ,
@@ -62,6 +63,7 @@ export const assistant: CreateAssistantDTO | any = {
62
63
} ,
63
64
{
64
65
name : "bookTickets" ,
66
+ async : true , // remove async to wait for BE response.
65
67
description : "Books tickets for the user." ,
66
68
parameters : {
67
69
type : "object" ,
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ export default function Home() {
12
12
< div className = "text-center" >
13
13
< h1 className = "text-3xl" > Welcome to Broadway Show Assistant</ h1 >
14
14
< p className = "text-slate-600" >
15
- Talk with Paula to explore shows and book tickets.
15
+ Talk with Paula to explore upcoming shows and book tickets.
16
16
</ p >
17
17
</ div >
18
18
< Assistant />
You can’t perform that action at this time.
0 commit comments