Skip to content

Commit aafdc37

Browse files
fix merge
2 parents d058113 + 2711dd8 commit aafdc37

File tree

137 files changed

+2788
-3156
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

137 files changed

+2788
-3156
lines changed
+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
name: "Setup Node.js, PNPM, and install dependencies"
2+
3+
inputs:
4+
node-version:
5+
description: "Node.js version to use"
6+
required: false
7+
default: 20.12.2
8+
pnpm-version:
9+
description: "PNPM version to use"
10+
required: false
11+
default: 9.14.2
12+
skip-install:
13+
description: "Skip 'pnpm install'"
14+
required: false
15+
default: false
16+
install-args:
17+
description: "Additional args supplied to 'pnpm install'"
18+
required: false
19+
working-directory:
20+
description: "Working directory to run the command in"
21+
required: false
22+
default: ./typescript
23+
24+
runs:
25+
using: "composite"
26+
27+
steps:
28+
- name: Log inputs
29+
shell: bash
30+
run: |
31+
echo "Node.js version: ${{ inputs.node-version }}"
32+
echo "PNPM version: ${{ inputs.pnpm-version }}"
33+
echo "Skip install: ${{ inputs.skip-install }}"
34+
echo "Install args: ${{ inputs.install-args }}"
35+
echo "Working directory: ${{ inputs.working-directory }}"
36+
- uses: actions/checkout@v4
37+
38+
- uses: pnpm/action-setup@v4
39+
with:
40+
version: ${{ inputs.pnpm-version }}
41+
42+
- name: Set up Node.js
43+
uses: actions/setup-node@v4
44+
with:
45+
node-version: ${{ inputs.node-version }}
46+
47+
- id: pnpm-config
48+
if: inputs.skip-install == 'false'
49+
shell: bash
50+
run: |
51+
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
52+
53+
- id: cache-rotation
54+
shell: bash
55+
if: inputs.skip-install == 'false'
56+
run: |
57+
echo "YEAR_MONTH=$(/bin/date -u "+%Y%m")" >> $GITHUB_OUTPUT
58+
59+
- uses: actions/cache@v3
60+
if: inputs.skip-install == 'false'
61+
with:
62+
path: ${{ steps.pnpm-config.outputs.STORE_PATH }}
63+
key: ${{ runner.os }}-pnpm-store-cache-${{ steps.cache-rotation.outputs.YEAR_MONTH }}-${{ hashFiles('**/pnpm-lock.yaml') }}
64+
restore-keys: |
65+
${{ runner.os }}-pnpm-store-cache-${{ steps.cache-rotation.outputs.YEAR_MONTH }}-
66+
67+
- name: Install dependencies
68+
shell: bash
69+
if: inputs.skip-install == 'false'
70+
working-directory: ${{ inputs.working-directory }}
71+
run: pnpm install --frozen-lockfile --prefer-offline ${{ inputs.install-args }}

.github/workflows/ci.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
6+
jobs:
7+
build-and-test:
8+
name: build & test
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v4
13+
14+
- name: Setup Node.js, PNPM, and install dependencies
15+
uses: ./.github/actions/pnpm-install
16+
17+
- name: Build all
18+
working-directory: ./typescript
19+
run: pnpm build
20+
21+
- name: Test all
22+
working-directory: ./typescript
23+
run: pnpm test

goat.code-workspace

+8
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
"name": "🐐 GOAT",
55
"path": "."
66
},
7+
{
8+
"name": "📘 Typescript",
9+
"path": "./typescript"
10+
},
711
{
812
"name": "🌋 Core",
913
"path": "./typescript/packages/core"
@@ -32,6 +36,10 @@
3236
"name": "[Plugin] 🎰 polymarket",
3337
"path": "./typescript/packages/plugins/polymarket"
3438
},
39+
{
40+
"name": "[Plugin] 💰 coingecko",
41+
"path": "./typescript/packages/plugins/coingecko"
42+
},
3543
{
3644
"name": "[Wallet] 🍀 crossmint",
3745
"path": "./typescript/packages/wallets/crossmint"

typescript/biome.json

+30-28
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,32 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
3-
"vcs": {
4-
"enabled": false,
5-
"clientKind": "git",
6-
"useIgnoreFile": false
7-
},
8-
"files": {
9-
"ignoreUnknown": false,
10-
"ignore": ["dist/**/*"]
11-
},
12-
"formatter": {
13-
"enabled": true,
14-
"indentStyle": "tab"
15-
},
16-
"organizeImports": {
17-
"enabled": true
18-
},
19-
"linter": {
20-
"enabled": true,
21-
"rules": {
22-
"recommended": true
23-
}
24-
},
25-
"javascript": {
26-
"formatter": {
27-
"quoteStyle": "double"
28-
}
29-
}
2+
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
3+
"vcs": {
4+
"enabled": false,
5+
"clientKind": "git",
6+
"useIgnoreFile": false
7+
},
8+
"files": {
9+
"ignoreUnknown": false,
10+
"ignore": ["dist/**/*"]
11+
},
12+
"formatter": {
13+
"enabled": true,
14+
"indentStyle": "space",
15+
"indentWidth": 4,
16+
"lineWidth": 120
17+
},
18+
"organizeImports": {
19+
"enabled": true
20+
},
21+
"linter": {
22+
"enabled": true,
23+
"rules": {
24+
"recommended": true
25+
}
26+
},
27+
"javascript": {
28+
"formatter": {
29+
"quoteStyle": "double"
30+
}
31+
}
3032
}
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
NEXT_PUBLIC_ELEVEN_LABS_AGENT_ID=
22
NEXT_PUBLIC_SEPOLIA_RPC_URL=
3+
NEXT_PUBLIC_COINGECKO_API_KEY=
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { NextConfig } from "next";
22

33
const nextConfig: NextConfig = {
4-
/* config options here */
4+
/* config options here */
55
};
66

77
export default nextConfig;
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,31 @@
11
{
2-
"name": "conversational-agent",
3-
"version": "0.1.0",
4-
"private": true,
5-
"scripts": {
6-
"dev": "next dev",
7-
"build": "next build",
8-
"start": "next start",
9-
"lint": "next lint"
10-
},
11-
"dependencies": {
12-
"@11labs/react": "^0.0.4",
13-
"@goat-sdk/adapter-eleven-labs": "0.1.2",
14-
"@goat-sdk/core": "0.3.10",
15-
"@goat-sdk/wallet-viem": "0.1.3",
16-
"@tanstack/react-query": "^5.62.2",
17-
"connectkit": "^1.8.2",
18-
"next": "15.0.3",
19-
"react": "19.0.0-rc-66855b96-20241106",
20-
"react-dom": "19.0.0-rc-66855b96-20241106",
21-
"viem": "^2.21.49",
22-
"wagmi": "^2.13.3"
23-
},
24-
"devDependencies": {
25-
"@types/node": "^20",
26-
"@types/react": "^18",
27-
"@types/react-dom": "^18",
28-
"postcss": "^8",
29-
"tailwindcss": "^3.4.1",
30-
"typescript": "^5"
31-
}
2+
"name": "conversational-agent",
3+
"version": "0.1.0",
4+
"private": true,
5+
"scripts": {
6+
"dev": "next dev",
7+
"build": "next build",
8+
"start": "next start",
9+
"lint": "next lint"
10+
},
11+
"dependencies": {
12+
"@11labs/react": "^0.0.4",
13+
"@goat-sdk/adapter-eleven-labs": "0.1.2",
14+
"@goat-sdk/core": "0.3.10",
15+
"@goat-sdk/wallet-viem": "0.1.3",
16+
"@goat-sdk/plugin-coingecko": "workspace:*",
17+
"@tanstack/react-query": "^5.62.2",
18+
"connectkit": "^1.8.2",
19+
"next": "15.0.3",
20+
"react": "19.0.0-rc-66855b96-20241106",
21+
"react-dom": "19.0.0-rc-66855b96-20241106",
22+
"viem": "^2.21.49",
23+
"wagmi": "^2.13.3"
24+
},
25+
"devDependencies": {
26+
"@types/react": "^18",
27+
"@types/react-dom": "^18",
28+
"postcss": "^8",
29+
"tailwindcss": "^3.4.1"
30+
}
3231
}
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/** @type {import('postcss-load-config').Config} */
22
const config = {
3-
plugins: {
4-
tailwindcss: {},
5-
},
3+
plugins: {
4+
tailwindcss: {},
5+
},
66
};
77

88
export default config;

typescript/examples/eleven-labs/conversational-agent/src/app/components/conversation.tsx

+12-13
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
"use client";
22

33
import { useConversation } from "@11labs/react";
4-
import { useCallback } from "react";
54
import { getOnChainTools } from "@goat-sdk/adapter-eleven-labs";
5+
import { useCallback } from "react";
66

77
import { viem } from "@goat-sdk/wallet-viem";
8-
import { useAccount, useWalletClient } from "wagmi";
98
import { ConnectKitButton } from "connectkit";
9+
import { useAccount, useWalletClient } from "wagmi";
1010
import { sendETH } from "../../../../../../packages/core/dist/plugins/send-eth";
11+
import { coingecko } from "@goat-sdk/plugin-coingecko";
1112

1213
export function Conversation() {
1314
const { isConnected } = useAccount();
@@ -32,7 +33,12 @@ export function Conversation() {
3233
// const wallet = viem Client
3334
const tools = await getOnChainTools({
3435
wallet: viem(wallet),
35-
plugins: [sendETH()],
36+
plugins: [
37+
sendETH(),
38+
coingecko({
39+
apiKey: process.env.NEXT_PUBLIC_COINGECKO_API_KEY ?? "",
40+
}),
41+
],
3642
options: {
3743
logTools: true,
3844
},
@@ -57,16 +63,12 @@ export function Conversation() {
5763
<h1 className="text-2xl font-bold">1. Connect Wallet to start</h1>
5864
<ConnectKitButton />
5965

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>
6367
<div className="flex flex-col items-center gap-4">
6468
<div className="flex gap-2">
6569
<button
6670
onClick={startConversation}
67-
disabled={
68-
conversation.status === "connected" || !isConnected
69-
}
71+
disabled={conversation.status === "connected" || !isConnected}
7072
className="px-4 py-2 bg-blue-500 text-white rounded disabled:bg-gray-300"
7173
type="button"
7274
>
@@ -85,10 +87,7 @@ export function Conversation() {
8587
<div className="flex flex-col items-center">
8688
<p>Status: {conversation.status}</p>
8789
{conversation.status === "connected" && (
88-
<p>
89-
Agent is{" "}
90-
{conversation.isSpeaking ? "speaking" : "listening"}
91-
</p>
90+
<p>Agent is {conversation.isSpeaking ? "speaking" : "listening"}</p>
9291
)}
9392
</div>
9493
</div>

typescript/examples/eleven-labs/conversational-agent/src/app/globals.css

+9-9
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33
@tailwind utilities;
44

55
:root {
6-
--background: #ffffff;
7-
--foreground: #171717;
6+
--background: #ffffff;
7+
--foreground: #171717;
88
}
99

1010
@media (prefers-color-scheme: dark) {
11-
:root {
12-
--background: #0a0a0a;
13-
--foreground: #ededed;
14-
}
11+
:root {
12+
--background: #0a0a0a;
13+
--foreground: #ededed;
14+
}
1515
}
1616

1717
body {
18-
color: var(--foreground);
19-
background: var(--background);
20-
font-family: Arial, Helvetica, sans-serif;
18+
color: var(--foreground);
19+
background: var(--background);
20+
font-family: Arial, Helvetica, sans-serif;
2121
}

typescript/examples/eleven-labs/conversational-agent/src/app/layout.tsx

+1-3
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,7 @@ export default function RootLayout({
2626
}>) {
2727
return (
2828
<html lang="en">
29-
<body
30-
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
31-
>
29+
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
3230
<Web3Provider>{children}</Web3Provider>
3331
</body>
3432
</html>

typescript/examples/eleven-labs/conversational-agent/src/app/page.tsx

+1-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@ export default function Home() {
44
return (
55
<main className="flex min-h-screen flex-col items-center justify-between p-24">
66
<div className="z-10 max-w-5xl w-full items-center justify-between font-mono text-sm">
7-
<h1 className="text-4xl font-bold mb-8 text-center">
8-
GOAT 🐐 Conversational AI
9-
</h1>
7+
<h1 className="text-4xl font-bold mb-8 text-center">GOAT 🐐 Conversational AI</h1>
108
<Conversation />
119
</div>
1210
</main>

0 commit comments

Comments
 (0)