Add AI-powered customer support to your iOS app in under 10 minutes.
Add SupportKit to your project using Swift Package Manager.
https://github.com/Babu12345/SupportKitdependencies: [
.package(url: "https://github.com/Babu12345/SupportKit", from: "1.0.0")
]Your API key starts with sk_live_
Initialize SupportKit when your app launches.
import SupportKit
@main
struct MyApp: App {
init() {
SupportKit.configure(apiKey: "sk_live_your_key_here")
}
var body: some Scene {
WindowGroup {
ContentView()
}
}
}import SupportKit
struct ContentView: View {
@State private var showChat = false
var body: some View {
Button("Get Help") {
showChat = true
}
.sheet(isPresented: $showChat) {
SupportKit.chatView()
}
}
}import SupportKit
class ViewController: UIViewController {
@IBAction func helpTapped(_ sender: Any) {
SupportKit.presentChat(from: self)
}
}The AI needs content to answer your users' questions. Go to the Knowledge section in your dashboard and add:
The more content you add, the better the AI will be at answering your users' questions.
Your app now has AI-powered customer support. Users can ask questions and get instant, accurate answers based on your knowledge base.
Start for Free