Skip to content

Commit eb626b2

Browse files
authored
1 parent 916b028 commit eb626b2

File tree

94 files changed

+183
-154
lines changed

Some content is hidden

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

94 files changed

+183
-154
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
include:
2121
# https://github.com/actions/runner-images/blob/main/images/macos/macos-15-Readme.md
2222
- os: macos-15
23-
xcode: 16.2
24-
platform: "iOS Simulator,OS=18.1,name=iPhone 16 Pro"
23+
xcode: 16.4
24+
platform: "iOS Simulator,OS=18.5,name=iPhone 16 Pro"
2525
# - os: macos-15
26-
# xcode: 16.2
26+
# xcode: 16.4
2727
# platform: "macOS"
2828

2929
runs-on: ${{ matrix.os }}
@@ -45,12 +45,12 @@ jobs:
4545
run: xcrun swift --version
4646

4747
- name: Setup .env
48-
run: cat VoiceAssistant/.env.example.xcconfig > VoiceAssistant/.env.xcconfig
48+
run: cat VoiceAgent/.env.example.xcconfig > VoiceAgent/.env.xcconfig
4949

5050
- name: Run Tests
5151
run: |
5252
set -o pipefail && xcodebuild test \
53-
-scheme VoiceAssistant \
53+
-scheme VoiceAgent \
5454
-destination 'platform=${{ matrix.platform }}' | xcbeautify --renderer github-actions
5555
5656
lint:

.swift-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.7 # Xcode 14
1+
6.0

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
<img src="./.github/assets/app-icon.png" alt="Voice Assistant App Icon" width="100" height="100">
1+
<img src="./.github/assets/app-icon.png" alt="Voice Agent App Icon" width="100" height="100">
22

3-
# Swift Voice Assistant
3+
# Swift Voice Agent
44

55
This is a starter template for [LiveKit Agents](https://docs.livekit.io/agents/overview/) that provides a simple voice interface using the [LiveKit Swift SDK](https://github.com/livekit/client-sdk-swift). It supports [voice](https://docs.livekit.io/agents/start/voice-ai), [transcriptions](https://docs.livekit.io/agents/build/text/), and [virtual avatars](https://docs.livekit.io/agents/integrations/avatar/).
66

77
This template is compatible with iOS, iPadOS, macOS, and visionOS and is free for you to use or modify as you see fit.
88

9-
<img src="./.github/assets/screenshot.png" alt="Voice Assistant Screenshot" height="500">
9+
<img src="./.github/assets/screenshot.png" alt="Voice Agent Screenshot" height="500">
1010

1111
## Getting started
1212

@@ -17,15 +17,15 @@ First, create a new [Sandbox Token Server](https://cloud.livekit.io/projects/p_/
1717
Then, run the following command to automatically clone this template and connect it to LiveKit Cloud.
1818

1919
```bash
20-
lk app create --template voice-assistant-swift --sandbox <token_server_sandbox_id>
20+
lk app create --template agent-starter-swift --sandbox <token_server_sandbox_id>
2121
```
2222

23-
Built and run the app from Xcode by opening `VoiceAssistant.xcodeproj`. You may need to adjust your app signing settings to run the app on your device.
23+
Built and run the app from Xcode by opening `VoiceAgent.xcodeproj`. You may need to adjust your app signing settings to run the app on your device.
2424

2525
You'll also need an agent to speak with. Try our [voice AI quickstart](https://docs.livekit.io/agents/start/voice-ai) for the easiest way to get started.
2626

2727
> [!NOTE]
28-
> To setup without the LiveKit CLI, clone the repository and then either create a `VoiceAssistant/.env.xcconfig` with a `LIVEKIT_SANDBOX_ID` (if using a [Sandbox Token Server](https://cloud.livekit.io/projects/p_/sandbox/templates/token-server)), or open `TokenService.swift` and add your [manually generated](#token-generation) URL and token.
28+
> To setup without the LiveKit CLI, clone the repository and then either create a `VoiceAgent/.env.xcconfig` with a `LIVEKIT_SANDBOX_ID` (if using a [Sandbox Token Server](https://cloud.livekit.io/projects/p_/sandbox/templates/token-server)), or open `TokenService.swift` and add your [manually generated](#token-generation) URL and token.
2929
3030
## Token generation
3131

0 commit comments

Comments
 (0)