1
1
"use client" ;
2
2
3
3
import { useConversation } from "@11labs/react" ;
4
- import { useCallback } from "react" ;
5
4
import { getOnChainTools } from "@goat-sdk/adapter-eleven-labs" ;
5
+ import { useCallback } from "react" ;
6
6
7
7
import { viem } from "@goat-sdk/wallet-viem" ;
8
- import { useAccount , useWalletClient } from "wagmi" ;
9
8
import { ConnectKitButton } from "connectkit" ;
9
+ import { useAccount , useWalletClient } from "wagmi" ;
10
10
import { sendETH } from "../../../../../../packages/core/dist/plugins/send-eth" ;
11
11
12
12
export function Conversation ( ) {
@@ -57,16 +57,12 @@ export function Conversation() {
57
57
< h1 className = "text-2xl font-bold" > 1. Connect Wallet to start</ h1 >
58
58
< ConnectKitButton />
59
59
60
- < h1 className = "text-2xl font-bold" >
61
- 2. Start Conversation with Agent
62
- </ h1 >
60
+ < h1 className = "text-2xl font-bold" > 2. Start Conversation with Agent</ h1 >
63
61
< div className = "flex flex-col items-center gap-4" >
64
62
< div className = "flex gap-2" >
65
63
< button
66
64
onClick = { startConversation }
67
- disabled = {
68
- conversation . status === "connected" || ! isConnected
69
- }
65
+ disabled = { conversation . status === "connected" || ! isConnected }
70
66
className = "px-4 py-2 bg-blue-500 text-white rounded disabled:bg-gray-300"
71
67
type = "button"
72
68
>
@@ -85,10 +81,7 @@ export function Conversation() {
85
81
< div className = "flex flex-col items-center" >
86
82
< p > Status: { conversation . status } </ p >
87
83
{ conversation . status === "connected" && (
88
- < p >
89
- Agent is{ " " }
90
- { conversation . isSpeaking ? "speaking" : "listening" }
91
- </ p >
84
+ < p > Agent is { conversation . isSpeaking ? "speaking" : "listening" } </ p >
92
85
) }
93
86
</ div >
94
87
</ div >
0 commit comments