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
+ import { coingecko } from "@goat-sdk/plugin-coingecko" ;
11
12
12
13
export function Conversation ( ) {
13
14
const { isConnected } = useAccount ( ) ;
@@ -32,7 +33,12 @@ export function Conversation() {
32
33
// const wallet = viem Client
33
34
const tools = await getOnChainTools ( {
34
35
wallet : viem ( wallet ) ,
35
- plugins : [ sendETH ( ) ] ,
36
+ plugins : [
37
+ sendETH ( ) ,
38
+ coingecko ( {
39
+ apiKey : process . env . NEXT_PUBLIC_COINGECKO_API_KEY ?? "" ,
40
+ } ) ,
41
+ ] ,
36
42
options : {
37
43
logTools : true ,
38
44
} ,
@@ -57,16 +63,12 @@ export function Conversation() {
57
63
< h1 className = "text-2xl font-bold" > 1. Connect Wallet to start</ h1 >
58
64
< ConnectKitButton />
59
65
60
- < h1 className = "text-2xl font-bold" >
61
- 2. Start Conversation with Agent
62
- </ h1 >
66
+ < h1 className = "text-2xl font-bold" > 2. Start Conversation with Agent</ h1 >
63
67
< div className = "flex flex-col items-center gap-4" >
64
68
< div className = "flex gap-2" >
65
69
< button
66
70
onClick = { startConversation }
67
- disabled = {
68
- conversation . status === "connected" || ! isConnected
69
- }
71
+ disabled = { conversation . status === "connected" || ! isConnected }
70
72
className = "px-4 py-2 bg-blue-500 text-white rounded disabled:bg-gray-300"
71
73
type = "button"
72
74
>
@@ -85,10 +87,7 @@ export function Conversation() {
85
87
< div className = "flex flex-col items-center" >
86
88
< p > Status: { conversation . status } </ p >
87
89
{ conversation . status === "connected" && (
88
- < p >
89
- Agent is{ " " }
90
- { conversation . isSpeaking ? "speaking" : "listening" }
91
- </ p >
90
+ < p > Agent is { conversation . isSpeaking ? "speaking" : "listening" } </ p >
92
91
) }
93
92
</ div >
94
93
</ div >
0 commit comments