Skip to content

Commit 0218a5a

Browse files
authored
Add attributes inspector and explicit dispatch support (#144)
1 parent 5eddfa9 commit 0218a5a

30 files changed

+1205
-689
lines changed

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ blank_issues_enabled: false
22
contact_links:
33
- name: Slack Community Chat
44
url: https://livekit.io/join-slack
5-
about: Ask questions and discuss with other LiveKit users in real time.
5+
about: Ask questions and discuss with other LiveKit users in real time.

.github/ISSUE_TEMPLATE/feature_request.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ body:
4141
id: additional-context
4242
attributes:
4343
label: Additional Information
44-
description: Add any other context or screenshots about the feature request here.
44+
description: Add any other context or screenshots about the feature request here.

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@
1111
# LiveKit Agents Playground
1212

1313
<!--BEGIN_DESCRIPTION-->
14+
1415
The Agents Playground is designed for quickly prototyping with server side agents built with [LiveKit Agents Framework](https://github.com/livekit/agents). Easily tap into LiveKit WebRTC sessions and process or generate audio, video, and data streams.
15-
The playground includes components to fully interact with any LiveKit agent, through video, audio and chat.
16+
The playground includes components to fully interact with any LiveKit agent, through video, audio and chat.
17+
1618
<!--END_DESCRIPTION-->
1719

1820
## Docs and references
@@ -69,7 +71,9 @@ NEXT_PUBLIC_LIVEKIT_URL=wss://<Your Cloud URL>
6971
- Mobile device sizes not supported currently
7072

7173
<!--BEGIN_REPO_NAV-->
74+
7275
<br/><table>
76+
7377
<thead><tr><th colspan="2">LiveKit Ecosystem</th></tr></thead>
7478
<tbody>
7579
<tr><td>LiveKit SDKs</td><td><a href="https://github.com/livekit/client-sdk-js">Browser</a> · <a href="https://github.com/livekit/client-sdk-swift">iOS/macOS/visionOS</a> · <a href="https://github.com/livekit/client-sdk-android">Android</a> · <a href="https://github.com/livekit/client-sdk-flutter">Flutter</a> · <a href="https://github.com/livekit/client-sdk-react-native">React Native</a> · <a href="https://github.com/livekit/rust-sdks">Rust</a> · <a href="https://github.com/livekit/node-sdks">Node.js</a> · <a href="https://github.com/livekit/python-sdks">Python</a> · <a href="https://github.com/livekit/client-sdk-unity">Unity</a> · <a href="https://github.com/livekit/client-sdk-unity-web">Unity (WebGL)</a></td></tr><tr></tr>

package-lock.json

Lines changed: 327 additions & 296 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 22 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -6,35 +6,37 @@
66
"dev": "next dev",
77
"build": "next build",
88
"start": "next start",
9-
"lint": "next lint"
9+
"lint": "next lint",
10+
"format": "prettier --write ."
1011
},
1112
"dependencies": {
1213
"@livekit/components-react": "^2.9.3",
13-
"@livekit/components-styles": "^1.1.1",
14-
"@radix-ui/react-dropdown-menu": "^2.0.6",
15-
"cookies-next": "^4.1.1",
16-
"framer-motion": "^10.16.16",
14+
"@livekit/components-styles": "^1.1.5",
15+
"@radix-ui/react-dropdown-menu": "^2.1.2",
16+
"cookies-next": "^4.3.0",
17+
"framer-motion": "^10.18.0",
1718
"js-yaml": "^4.1.0",
18-
"livekit-client": "^2.5.1",
19-
"livekit-server-sdk": "^2.6.1",
19+
"livekit-client": "^2.9.5",
20+
"livekit-server-sdk": "^2.13.0",
2021
"lodash": "^4.17.21",
21-
"next": "^14.0.4",
22+
"next": "^14.2.20",
2223
"next-plugin-preval": "^1.2.6",
23-
"qrcode.react": "^4.0.0",
24-
"react": "^18",
25-
"react-dom": "^18"
24+
"qrcode.react": "^4.1.0",
25+
"react": "^18.3.1",
26+
"react-dom": "^18.3.1"
2627
},
2728
"devDependencies": {
2829
"@types/js-yaml": "^4.0.9",
29-
"@types/lodash": "^4.17.0",
30-
"@types/node": "^20.10.4",
31-
"@types/react": "^18.2.43",
32-
"@types/react-dom": "^18",
33-
"autoprefixer": "^10.4.16",
34-
"eslint": "^8",
30+
"@types/lodash": "^4.17.13",
31+
"@types/node": "^20.17.9",
32+
"@types/react": "^18.3.14",
33+
"@types/react-dom": "^18.3.3",
34+
"autoprefixer": "^10.4.20",
35+
"eslint": "^8.57.1",
3536
"eslint-config-next": "14.2.26",
36-
"postcss": "^8.4.31",
37-
"tailwindcss": "^3.3.5",
38-
"typescript": "^5.3.3"
37+
"postcss": "^8.4.49",
38+
"tailwindcss": "^3.4.16",
39+
"typescript": "^5.7.2",
40+
"prettier": "^3.4.2"
3941
}
4042
}

postcss.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ module.exports = {
33
tailwindcss: {},
44
autoprefixer: {},
55
},
6-
}
6+
};

public/favicon.ico

-10.3 KB
Binary file not shown.

public/next.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

public/vercel.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/cloud/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Files in this `cloud/` directory can be ignored. They are mocks which we override in our private, hosted version of the agents-playground that supports LiveKit Cloud authentication.
1+
Files in this `cloud/` directory can be ignored. They are mocks which we override in our private, hosted version of the agents-playground that supports LiveKit Cloud authentication.

0 commit comments

Comments
 (0)