Skip to content

Commit 1225603

Browse files
committed
update version
1 parent 5bb21dd commit 1225603

File tree

2 files changed

+32
-3
lines changed

2 files changed

+32
-3
lines changed

README.md

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,37 @@ A collection of Swift voice components.
1818

1919
## Docs
2020

21-
Docs and guides are at [https://elevenlabs.io/docs/conversational-ai/overview](https://elevenlabs.io/docs/conversational-ai/overview)
21+
Conversational AI docs and guides: [https://elevenlabs.io/docs/conversational-ai/overview](https://elevenlabs.io/docs/conversational-ai/overview)
2222

2323
## Example App
2424

25-
See our [example app](https://github.com/elevenlabs/swift-start-kit), to see how you can build cross-platform Apple voice experiences.
25+
See our [example app](https://github.com/elevenlabs/swift-starter-kit), to see how you can build cross-platform Apple voice experiences.
26+
27+
---
28+
29+
## Installation
30+
31+
You can add ElevenLabsComponents to your project using [Swift Package Manager](https://swift.org/package-manager/).
32+
33+
**In Xcode:**
34+
35+
1. Go to **File > Add Packages...**
36+
2. Enter the repository URL:
37+
```
38+
https://github.com/elevenlabs/components-swift
39+
```
40+
3. Select the `main` branch or a version, and add the `ElevenLabsComponents` library to your target.
41+
42+
**Or add to your `Package.swift`:**
43+
44+
```swift
45+
dependencies: [
46+
.package(url: "https://github.com/elevenlabs/components-swift.git", from: "0.1.0")
47+
]
48+
```
49+
50+
---
51+
52+
## What’s Included
53+
54+
This package provides a set of SwiftUI components for building real-time voice experiences with ElevenLabs Conversational AI, including an `OrbVisualizer`.

Sources/ElevenLabsComponents/Components.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
@_exported import LiveKit
1919
@_exported import SwiftUI
2020

21-
public let liveKitComponentsVersion = "0.1.4"
21+
public let elevenlabsComponentsVersion = "0.1.0"
2222

2323
public typealias ComponentBuilder<Content: View> = () -> Content
2424
public typealias ParticipantComponentBuilder<Content: View> = (_: Participant) -> Content

0 commit comments

Comments
 (0)