File tree Expand file tree Collapse file tree 2 files changed +32
-3
lines changed
Sources/ElevenLabsComponents Expand file tree Collapse file tree 2 files changed +32
-3
lines changed Original file line number Diff line number Diff 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 ` .
Original file line number Diff line number Diff line change 1818@_exported import LiveKit
1919@_exported import SwiftUI
2020
21- public let liveKitComponentsVersion = " 0.1.4 "
21+ public let elevenlabsComponentsVersion = " 0.1.0 "
2222
2323public typealias ComponentBuilder < Content: View > = ( ) -> Content
2424public typealias ParticipantComponentBuilder < Content: View > = ( _: Participant ) -> Content
You can’t perform that action at this time.
0 commit comments