Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import Foundation

/// Lightweight representation of the user profile stored in UserDefaults
/// under the `"user.profile"` key. Originally populated by the onboarding
/// interview's profile-extraction step.
struct UserProfile: Codable, Sendable {
let name: String?
let role: String?
let goals: [String]?
let painPoints: [String]?
let communicationStyle: String?
let interests: [String]?
let personality: String?
}

This file was deleted.

113 changes: 0 additions & 113 deletions clients/macos/vellum-assistant/Features/Onboarding/AliveStepView.swift

This file was deleted.

Loading