Skip to content

Commit db29673

Browse files
authored
Merge pull request #9 from mPaella/chore/tweak-configs-and-add-ci
chore: tweak jsons + add ci
2 parents 3a1900e + 239716a commit db29673

File tree

122 files changed

+2509
-3358
lines changed

Some content is hidden

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

122 files changed

+2509
-3358
lines changed
+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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+
20+
runs:
21+
using: "composite"
22+
23+
steps:
24+
- name: Log inputs
25+
shell: bash
26+
run: |
27+
echo "Node.js version: ${{ inputs.node-version }}"
28+
echo "PNPM version: ${{ inputs.pnpm-version }}"
29+
echo "Skip install: ${{ inputs.skip-install }}"
30+
echo "Install args: ${{ inputs.install-args }}"
31+
32+
- uses: actions/checkout@v4
33+
34+
- uses: pnpm/action-setup@v4
35+
with:
36+
version: ${{ inputs.pnpm-version }}
37+
38+
- name: Set up Node.js
39+
uses: actions/setup-node@v4
40+
with:
41+
node-version: ${{ inputs.node-version }}
42+
43+
- id: pnpm-config
44+
if: inputs.skip-install == 'false'
45+
shell: bash
46+
run: |
47+
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
48+
49+
- id: cache-rotation
50+
shell: bash
51+
if: inputs.skip-install == 'false'
52+
run: |
53+
echo "YEAR_MONTH=$(/bin/date -u "+%Y%m")" >> $GITHUB_OUTPUT
54+
55+
- uses: actions/cache@v3
56+
if: inputs.skip-install == 'false'
57+
with:
58+
path: ${{ steps.pnpm-config.outputs.STORE_PATH }}
59+
key: ${{ runner.os }}-pnpm-store-cache-${{ steps.cache-rotation.outputs.YEAR_MONTH }}-${{ hashFiles('**/pnpm-lock.yaml') }}
60+
restore-keys: |
61+
${{ runner.os }}-pnpm-store-cache-${{ steps.cache-rotation.outputs.YEAR_MONTH }}-
62+
63+
- name: Install dependencies
64+
shell: bash
65+
if: inputs.skip-install == 'false'
66+
run: pnpm install --frozen-lockfile --prefer-offline ${{ inputs.install-args }}

.github/workflows/ci.yml

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

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,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,30 @@
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+
"@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/react": "^18",
26+
"@types/react-dom": "^18",
27+
"postcss": "^8",
28+
"tailwindcss": "^3.4.1"
29+
}
3230
}
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

+5-12
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
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";
1111

1212
export function Conversation() {
@@ -57,16 +57,12 @@ export function Conversation() {
5757
<h1 className="text-2xl font-bold">1. Connect Wallet to start</h1>
5858
<ConnectKitButton />
5959

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>
6361
<div className="flex flex-col items-center gap-4">
6462
<div className="flex gap-2">
6563
<button
6664
onClick={startConversation}
67-
disabled={
68-
conversation.status === "connected" || !isConnected
69-
}
65+
disabled={conversation.status === "connected" || !isConnected}
7066
className="px-4 py-2 bg-blue-500 text-white rounded disabled:bg-gray-300"
7167
type="button"
7268
>
@@ -85,10 +81,7 @@ export function Conversation() {
8581
<div className="flex flex-col items-center">
8682
<p>Status: {conversation.status}</p>
8783
{conversation.status === "connected" && (
88-
<p>
89-
Agent is{" "}
90-
{conversation.isSpeaking ? "speaking" : "listening"}
91-
</p>
84+
<p>Agent is {conversation.isSpeaking ? "speaking" : "listening"}</p>
9285
)}
9386
</div>
9487
</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>

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

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
"use client";
22

3-
import { WagmiProvider, createConfig, http } from "wagmi";
4-
import { sepolia } from "wagmi/chains";
53
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
64
import { ConnectKitProvider, getDefaultConfig } from "connectkit";
5+
import { http, WagmiProvider, createConfig } from "wagmi";
6+
import { sepolia } from "wagmi/chains";
77

88
const config = createConfig(
99
getDefaultConfig({
@@ -15,12 +15,11 @@ const config = createConfig(
1515
},
1616

1717
// Required API Keys
18-
walletConnectProjectId:
19-
process.env.NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID ?? "",
18+
walletConnectProjectId: process.env.NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID ?? "",
2019

2120
// Required App Info
2221
appName: "GOAT Conversational AI",
23-
})
22+
}),
2423
);
2524

2625
const queryClient = new QueryClient();
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
import type { Config } from "tailwindcss";
22

33
export default {
4-
content: [
5-
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
6-
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
7-
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
8-
],
9-
theme: {
10-
extend: {
11-
colors: {
12-
background: "var(--background)",
13-
foreground: "var(--foreground)",
14-
},
4+
content: [
5+
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
6+
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
7+
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
8+
],
9+
theme: {
10+
extend: {
11+
colors: {
12+
background: "var(--background)",
13+
foreground: "var(--foreground)",
14+
},
15+
},
1516
},
16-
},
17-
plugins: [],
17+
plugins: [],
1818
} satisfies Config;

0 commit comments

Comments
 (0)