├── .gitignore ├── Chroma └── Sources │ ├── ChromaEmbedder.swift │ ├── ChromaEmbedderExtensions.swift │ └── ChromaSwift.swift ├── ChromaDemos ├── ChromaCloudSync │ ├── ChromaCloudSync.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── swiftpm │ │ │ └── Package.resolved │ ├── ChromaCloudSync │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── ChromaClient.swift │ │ ├── ChromaCloudSync.entitlements │ │ ├── ChromaCloudSyncApp.swift │ │ └── ContentView.swift │ ├── ChromaCloudSyncTests │ │ └── ChromaCloudSyncTests.swift │ └── ChromaCloudSyncUITests │ │ ├── ChromaCloudSyncUITests.swift │ │ └── ChromaCloudSyncUITestsLaunchTests.swift ├── EphemeralChroma │ ├── EphemeralChroma.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── swiftpm │ │ │ └── Package.resolved │ ├── EphemeralChroma │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── ChromaState.swift │ │ ├── ContentView.swift │ │ ├── EphemeralChroma.entitlements │ │ ├── EphemeralChromaApp.swift │ │ └── Views │ │ │ ├── ActionButtonView.swift │ │ │ ├── DatabaseControlsView.swift │ │ │ ├── DocumentInputSectionView.swift │ │ │ ├── HeaderView.swift │ │ │ ├── LogsView.swift │ │ │ └── QuerySectionView.swift │ ├── EphemeralChromaTests │ │ └── EphemeralChromaTests.swift │ ├── EphemeralChromaUITests │ │ ├── EphemeralChromaUITests.swift │ │ └── EphemeralChromaUITestsLaunchTests.swift │ └── README.md ├── LocalEmbeddingsModelDemo │ ├── LocalEmbeddingsModelDemo.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── swiftpm │ │ │ └── Package.resolved │ ├── LocalEmbeddingsModelDemo │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── ChromaState.swift │ │ ├── ContentView.swift │ │ ├── LocalEmbeddingsModelDemo.entitlements │ │ └── LocalEmbeddingsModelDemoApp.swift │ ├── LocalEmbeddingsModelDemoTests │ │ └── LocalEmbeddingsModelDemoTests.swift │ └── LocalEmbeddingsModelDemoUITests │ │ ├── LocalEmbeddingsModelDemoUITests.swift │ │ └── LocalEmbeddingsModelDemoUITestsLaunchTests.swift ├── PersistentChroma │ ├── PersistentChroma.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── swiftpm │ │ │ └── Package.resolved │ ├── PersistentChroma │ │ ├── ActionButtonView.swift │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── ChromaState.swift │ │ ├── ContentView.swift │ │ ├── PersistentChroma.entitlements │ │ └── Views │ │ │ ├── DatabaseControlsView.swift │ │ │ ├── DocumentDeletionView.swift │ │ │ ├── DocumentInputsSectionView.swift │ │ │ ├── LogsView.swift │ │ │ ├── PersistentChromaApp.swift │ │ │ └── QuerySectionView.swift │ ├── PersistentChromaTests │ │ └── PersistentChromaTests.swift │ ├── PersistentChromaUITests │ │ ├── PersistentChromaUITests.swift │ │ └── PersistentChromaUITestsLaunchTests.swift │ └── README.md ├── README.md └── README_ASSETS │ ├── EphemeralChromaDemo.png │ ├── LocalEmbeddingsDemo.png │ └── PersistentChromaDemo.png ├── LICENSE ├── Package.resolved ├── Package.swift ├── README.md └── scripts ├── update_dependencies.swift ├── update_deps.sh ├── use_local_framework.sh └── use_release_framework.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/.gitignore -------------------------------------------------------------------------------- /Chroma/Sources/ChromaEmbedder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/Chroma/Sources/ChromaEmbedder.swift -------------------------------------------------------------------------------- /Chroma/Sources/ChromaEmbedderExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/Chroma/Sources/ChromaEmbedderExtensions.swift -------------------------------------------------------------------------------- /Chroma/Sources/ChromaSwift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/Chroma/Sources/ChromaSwift.swift -------------------------------------------------------------------------------- /ChromaDemos/ChromaCloudSync/ChromaCloudSync.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/ChromaCloudSync/ChromaCloudSync.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ChromaDemos/ChromaCloudSync/ChromaCloudSync.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/ChromaCloudSync/ChromaCloudSync.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ChromaDemos/ChromaCloudSync/ChromaCloudSync.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/ChromaCloudSync/ChromaCloudSync.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /ChromaDemos/ChromaCloudSync/ChromaCloudSync/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/ChromaCloudSync/ChromaCloudSync/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /ChromaDemos/ChromaCloudSync/ChromaCloudSync/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/ChromaCloudSync/ChromaCloudSync/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ChromaDemos/ChromaCloudSync/ChromaCloudSync/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/ChromaCloudSync/ChromaCloudSync/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ChromaDemos/ChromaCloudSync/ChromaCloudSync/ChromaClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/ChromaCloudSync/ChromaCloudSync/ChromaClient.swift -------------------------------------------------------------------------------- /ChromaDemos/ChromaCloudSync/ChromaCloudSync/ChromaCloudSync.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/ChromaCloudSync/ChromaCloudSync/ChromaCloudSync.entitlements -------------------------------------------------------------------------------- /ChromaDemos/ChromaCloudSync/ChromaCloudSync/ChromaCloudSyncApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/ChromaCloudSync/ChromaCloudSync/ChromaCloudSyncApp.swift -------------------------------------------------------------------------------- /ChromaDemos/ChromaCloudSync/ChromaCloudSync/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/ChromaCloudSync/ChromaCloudSync/ContentView.swift -------------------------------------------------------------------------------- /ChromaDemos/ChromaCloudSync/ChromaCloudSyncTests/ChromaCloudSyncTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/ChromaCloudSync/ChromaCloudSyncTests/ChromaCloudSyncTests.swift -------------------------------------------------------------------------------- /ChromaDemos/ChromaCloudSync/ChromaCloudSyncUITests/ChromaCloudSyncUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/ChromaCloudSync/ChromaCloudSyncUITests/ChromaCloudSyncUITests.swift -------------------------------------------------------------------------------- /ChromaDemos/ChromaCloudSync/ChromaCloudSyncUITests/ChromaCloudSyncUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/ChromaCloudSync/ChromaCloudSyncUITests/ChromaCloudSyncUITestsLaunchTests.swift -------------------------------------------------------------------------------- /ChromaDemos/EphemeralChroma/EphemeralChroma.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/EphemeralChroma/EphemeralChroma.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ChromaDemos/EphemeralChroma/EphemeralChroma.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/EphemeralChroma/EphemeralChroma.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ChromaDemos/EphemeralChroma/EphemeralChroma.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/EphemeralChroma/EphemeralChroma.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /ChromaDemos/EphemeralChroma/EphemeralChroma/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/EphemeralChroma/EphemeralChroma/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /ChromaDemos/EphemeralChroma/EphemeralChroma/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/EphemeralChroma/EphemeralChroma/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ChromaDemos/EphemeralChroma/EphemeralChroma/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/EphemeralChroma/EphemeralChroma/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ChromaDemos/EphemeralChroma/EphemeralChroma/ChromaState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/EphemeralChroma/EphemeralChroma/ChromaState.swift -------------------------------------------------------------------------------- /ChromaDemos/EphemeralChroma/EphemeralChroma/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/EphemeralChroma/EphemeralChroma/ContentView.swift -------------------------------------------------------------------------------- /ChromaDemos/EphemeralChroma/EphemeralChroma/EphemeralChroma.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/EphemeralChroma/EphemeralChroma/EphemeralChroma.entitlements -------------------------------------------------------------------------------- /ChromaDemos/EphemeralChroma/EphemeralChroma/EphemeralChromaApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/EphemeralChroma/EphemeralChroma/EphemeralChromaApp.swift -------------------------------------------------------------------------------- /ChromaDemos/EphemeralChroma/EphemeralChroma/Views/ActionButtonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/EphemeralChroma/EphemeralChroma/Views/ActionButtonView.swift -------------------------------------------------------------------------------- /ChromaDemos/EphemeralChroma/EphemeralChroma/Views/DatabaseControlsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/EphemeralChroma/EphemeralChroma/Views/DatabaseControlsView.swift -------------------------------------------------------------------------------- /ChromaDemos/EphemeralChroma/EphemeralChroma/Views/DocumentInputSectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/EphemeralChroma/EphemeralChroma/Views/DocumentInputSectionView.swift -------------------------------------------------------------------------------- /ChromaDemos/EphemeralChroma/EphemeralChroma/Views/HeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/EphemeralChroma/EphemeralChroma/Views/HeaderView.swift -------------------------------------------------------------------------------- /ChromaDemos/EphemeralChroma/EphemeralChroma/Views/LogsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/EphemeralChroma/EphemeralChroma/Views/LogsView.swift -------------------------------------------------------------------------------- /ChromaDemos/EphemeralChroma/EphemeralChroma/Views/QuerySectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/EphemeralChroma/EphemeralChroma/Views/QuerySectionView.swift -------------------------------------------------------------------------------- /ChromaDemos/EphemeralChroma/EphemeralChromaTests/EphemeralChromaTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/EphemeralChroma/EphemeralChromaTests/EphemeralChromaTests.swift -------------------------------------------------------------------------------- /ChromaDemos/EphemeralChroma/EphemeralChromaUITests/EphemeralChromaUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/EphemeralChroma/EphemeralChromaUITests/EphemeralChromaUITests.swift -------------------------------------------------------------------------------- /ChromaDemos/EphemeralChroma/EphemeralChromaUITests/EphemeralChromaUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/EphemeralChroma/EphemeralChromaUITests/EphemeralChromaUITestsLaunchTests.swift -------------------------------------------------------------------------------- /ChromaDemos/EphemeralChroma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/EphemeralChroma/README.md -------------------------------------------------------------------------------- /ChromaDemos/LocalEmbeddingsModelDemo/LocalEmbeddingsModelDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/LocalEmbeddingsModelDemo/LocalEmbeddingsModelDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ChromaDemos/LocalEmbeddingsModelDemo/LocalEmbeddingsModelDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/LocalEmbeddingsModelDemo/LocalEmbeddingsModelDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ChromaDemos/LocalEmbeddingsModelDemo/LocalEmbeddingsModelDemo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/LocalEmbeddingsModelDemo/LocalEmbeddingsModelDemo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /ChromaDemos/LocalEmbeddingsModelDemo/LocalEmbeddingsModelDemo/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/LocalEmbeddingsModelDemo/LocalEmbeddingsModelDemo/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /ChromaDemos/LocalEmbeddingsModelDemo/LocalEmbeddingsModelDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/LocalEmbeddingsModelDemo/LocalEmbeddingsModelDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ChromaDemos/LocalEmbeddingsModelDemo/LocalEmbeddingsModelDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/LocalEmbeddingsModelDemo/LocalEmbeddingsModelDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ChromaDemos/LocalEmbeddingsModelDemo/LocalEmbeddingsModelDemo/ChromaState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/LocalEmbeddingsModelDemo/LocalEmbeddingsModelDemo/ChromaState.swift -------------------------------------------------------------------------------- /ChromaDemos/LocalEmbeddingsModelDemo/LocalEmbeddingsModelDemo/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/LocalEmbeddingsModelDemo/LocalEmbeddingsModelDemo/ContentView.swift -------------------------------------------------------------------------------- /ChromaDemos/LocalEmbeddingsModelDemo/LocalEmbeddingsModelDemo/LocalEmbeddingsModelDemo.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/LocalEmbeddingsModelDemo/LocalEmbeddingsModelDemo/LocalEmbeddingsModelDemo.entitlements -------------------------------------------------------------------------------- /ChromaDemos/LocalEmbeddingsModelDemo/LocalEmbeddingsModelDemo/LocalEmbeddingsModelDemoApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/LocalEmbeddingsModelDemo/LocalEmbeddingsModelDemo/LocalEmbeddingsModelDemoApp.swift -------------------------------------------------------------------------------- /ChromaDemos/LocalEmbeddingsModelDemo/LocalEmbeddingsModelDemoTests/LocalEmbeddingsModelDemoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/LocalEmbeddingsModelDemo/LocalEmbeddingsModelDemoTests/LocalEmbeddingsModelDemoTests.swift -------------------------------------------------------------------------------- /ChromaDemos/LocalEmbeddingsModelDemo/LocalEmbeddingsModelDemoUITests/LocalEmbeddingsModelDemoUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/LocalEmbeddingsModelDemo/LocalEmbeddingsModelDemoUITests/LocalEmbeddingsModelDemoUITests.swift -------------------------------------------------------------------------------- /ChromaDemos/LocalEmbeddingsModelDemo/LocalEmbeddingsModelDemoUITests/LocalEmbeddingsModelDemoUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/LocalEmbeddingsModelDemo/LocalEmbeddingsModelDemoUITests/LocalEmbeddingsModelDemoUITestsLaunchTests.swift -------------------------------------------------------------------------------- /ChromaDemos/PersistentChroma/PersistentChroma.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/PersistentChroma/PersistentChroma.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ChromaDemos/PersistentChroma/PersistentChroma.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/PersistentChroma/PersistentChroma.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ChromaDemos/PersistentChroma/PersistentChroma.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/PersistentChroma/PersistentChroma.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /ChromaDemos/PersistentChroma/PersistentChroma/ActionButtonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/PersistentChroma/PersistentChroma/ActionButtonView.swift -------------------------------------------------------------------------------- /ChromaDemos/PersistentChroma/PersistentChroma/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/PersistentChroma/PersistentChroma/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /ChromaDemos/PersistentChroma/PersistentChroma/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/PersistentChroma/PersistentChroma/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ChromaDemos/PersistentChroma/PersistentChroma/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/PersistentChroma/PersistentChroma/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ChromaDemos/PersistentChroma/PersistentChroma/ChromaState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/PersistentChroma/PersistentChroma/ChromaState.swift -------------------------------------------------------------------------------- /ChromaDemos/PersistentChroma/PersistentChroma/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/PersistentChroma/PersistentChroma/ContentView.swift -------------------------------------------------------------------------------- /ChromaDemos/PersistentChroma/PersistentChroma/PersistentChroma.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/PersistentChroma/PersistentChroma/PersistentChroma.entitlements -------------------------------------------------------------------------------- /ChromaDemos/PersistentChroma/PersistentChroma/Views/DatabaseControlsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/PersistentChroma/PersistentChroma/Views/DatabaseControlsView.swift -------------------------------------------------------------------------------- /ChromaDemos/PersistentChroma/PersistentChroma/Views/DocumentDeletionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/PersistentChroma/PersistentChroma/Views/DocumentDeletionView.swift -------------------------------------------------------------------------------- /ChromaDemos/PersistentChroma/PersistentChroma/Views/DocumentInputsSectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/PersistentChroma/PersistentChroma/Views/DocumentInputsSectionView.swift -------------------------------------------------------------------------------- /ChromaDemos/PersistentChroma/PersistentChroma/Views/LogsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/PersistentChroma/PersistentChroma/Views/LogsView.swift -------------------------------------------------------------------------------- /ChromaDemos/PersistentChroma/PersistentChroma/Views/PersistentChromaApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/PersistentChroma/PersistentChroma/Views/PersistentChromaApp.swift -------------------------------------------------------------------------------- /ChromaDemos/PersistentChroma/PersistentChroma/Views/QuerySectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/PersistentChroma/PersistentChroma/Views/QuerySectionView.swift -------------------------------------------------------------------------------- /ChromaDemos/PersistentChroma/PersistentChromaTests/PersistentChromaTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/PersistentChroma/PersistentChromaTests/PersistentChromaTests.swift -------------------------------------------------------------------------------- /ChromaDemos/PersistentChroma/PersistentChromaUITests/PersistentChromaUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/PersistentChroma/PersistentChromaUITests/PersistentChromaUITests.swift -------------------------------------------------------------------------------- /ChromaDemos/PersistentChroma/PersistentChromaUITests/PersistentChromaUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/PersistentChroma/PersistentChromaUITests/PersistentChromaUITestsLaunchTests.swift -------------------------------------------------------------------------------- /ChromaDemos/PersistentChroma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/PersistentChroma/README.md -------------------------------------------------------------------------------- /ChromaDemos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/README.md -------------------------------------------------------------------------------- /ChromaDemos/README_ASSETS/EphemeralChromaDemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/README_ASSETS/EphemeralChromaDemo.png -------------------------------------------------------------------------------- /ChromaDemos/README_ASSETS/LocalEmbeddingsDemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/README_ASSETS/LocalEmbeddingsDemo.png -------------------------------------------------------------------------------- /ChromaDemos/README_ASSETS/PersistentChromaDemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/ChromaDemos/README_ASSETS/PersistentChromaDemo.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/README.md -------------------------------------------------------------------------------- /scripts/update_dependencies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/scripts/update_dependencies.swift -------------------------------------------------------------------------------- /scripts/update_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/scripts/update_deps.sh -------------------------------------------------------------------------------- /scripts/use_local_framework.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/scripts/use_local_framework.sh -------------------------------------------------------------------------------- /scripts/use_release_framework.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chroma-core/chroma-swift/HEAD/scripts/use_release_framework.sh --------------------------------------------------------------------------------