Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions leanring-buddy/ClickyAnalytics.swift
Original file line number Diff line number Diff line change
Expand Up @@ -82,15 +82,13 @@ enum ClickyAnalytics {
/// Transcription completed and the user's message is being sent to the AI.
static func trackUserMessageSent(transcript: String) {
PostHogSDK.shared.capture("user_message_sent", properties: [
"transcript": transcript,
"character_count": transcript.count
])
}

/// Claude responded and the response is being spoken via TTS.
static func trackAIResponseReceived(response: String) {
PostHogSDK.shared.capture("ai_response_received", properties: [
"response": response,
"character_count": response.count
])
}
Expand Down