├── .gitignore ├── .zed └── settings.json ├── Heat.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved ├── xcshareddata │ └── xcschemes │ │ └── Heat.xcscheme └── xcuserdata │ └── nborror.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── Heat ├── App-iOS.swift ├── App-macOS.swift ├── AppState.swift ├── Files │ ├── Conversations │ │ ├── ConversationView.swift │ │ ├── ConversationViewInspector.swift │ │ ├── ConversationViewModel.swift │ │ ├── Messages │ │ │ ├── MessageField.swift │ │ │ ├── MessageInstructions.swift │ │ │ ├── MessageList.swift │ │ │ └── MessageView.swift │ │ ├── Renderers │ │ │ ├── RenderAnyTag.swift │ │ │ ├── RenderArtifact.swift │ │ │ ├── RenderImageSearch.swift │ │ │ ├── RenderOutput.swift │ │ │ ├── RenderReflection.swift │ │ │ ├── RenderTag.swift │ │ │ ├── RenderText.swift │ │ │ └── RenderThinking.swift │ │ └── Views │ │ │ ├── RunView.swift │ │ │ ├── Suggestions.swift │ │ │ └── TypingIndicator.swift │ ├── Documents │ │ ├── DocumentView.swift │ │ └── DocumentViewModel.swift │ ├── FileDetail.swift │ ├── FileForm.swift │ ├── FileList.swift │ └── Views │ │ ├── FileRow-iOS.swift │ │ └── FileRow-macOS.swift ├── Resources │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon.png │ │ │ ├── MacIcon@1024.png │ │ │ ├── MacIcon@128.png │ │ │ ├── MacIcon@16.png │ │ │ ├── MacIcon@256 1.png │ │ │ ├── MacIcon@256.png │ │ │ ├── MacIcon@32 1.png │ │ │ ├── MacIcon@32.png │ │ │ ├── MacIcon@512 1.png │ │ │ ├── MacIcon@512.png │ │ │ └── MacIcon@64.png │ │ ├── Contents.json │ │ ├── Covers │ │ │ ├── Bubbles.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── nathanborror_a_piece_of_abstract_art_with_many_colorful_circles_627d42ed-3963-4e2e-8d54-36f4bb1e1acb.png │ │ │ ├── Clouds.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── nathanborror_a_painting_of_light_blue_clouds_in_the_style_of_li_35372c17-a1d2-499f-9eb9-f335ff5b6140.png │ │ │ ├── Contents.json │ │ │ ├── Cube.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── nathanborror_an_orange_square_with_a_light_shining_through_it_i_b9ef0a5e-15f1-461b-a58b-173dd7c07da4.png │ │ │ ├── Dunes.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── nathanborror_abstract_colored_landscape_and_landscapes_with_blu_80915da4-013c-4178-a2fa-86e1866ddbe7.png │ │ │ ├── Hallway.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── nathanborror_an_image_of_an_orange_square_in_the_style_of_dark__d93e704c-9efb-4c00-9e61-9e5c7692316d.png │ │ │ ├── Path.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── nathanborror_a_painting_of_an_empty_clear_sky_digital_gradient__73648cb7-0ee8-4265-b135-74daf77c0539.png │ │ │ ├── SeaSunrise.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── nathanborror_a_painting_of_a_pastel_sea_in_the_style_of_light_s_60aa1082-04a9-4b1c-a439-689dbad224bd.png │ │ │ ├── Sky.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── nathanborror_a_painting_of_an_empty_clear_sky_digital_gradient__981f3336-942b-4351-9302-94ac30e3b488.png │ │ │ ├── Structure.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── nathanborror_a_painting_of_an_empty_clear_sky_digital_gradient__7df1451c-4178-4dac-b8e9-69fc13c74486.png │ │ │ └── Sunrise.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── nathanborror_a_painting_of_an_orange_rainbow_that_has_a_ring_in_cf0bc8d1-0e64-4092-8b18-f0467fe98e10.png │ │ ├── IconDark.imageset │ │ │ ├── Contents.json │ │ │ ├── IconDark.pdf │ │ │ └── IconLight.pdf │ │ ├── IconDesktop.imageset │ │ │ ├── Contents.json │ │ │ └── MacIcon@512 1.png │ │ └── IconLight.imageset │ │ │ ├── Contents.json │ │ │ ├── IconDark.pdf │ │ │ └── IconLight.pdf │ ├── Heat.entitlements │ └── Info.plist ├── Settings │ ├── General │ │ ├── GeneralForm.swift │ │ └── GeneralView.swift │ ├── Instructions │ │ ├── InstructionForm.swift │ │ └── InstructionView.swift │ ├── Permissions │ │ ├── PermissionForm.swift │ │ ├── PermissionList.swift │ │ └── PermissionsView.swift │ ├── Services │ │ ├── ServiceDefaults.swift │ │ ├── ServiceForm.swift │ │ ├── ServiceManager.swift │ │ └── ServiceView.swift │ ├── SettingsView-iOS.swift │ └── SettingsView-macOS.swift └── Shared │ ├── CodeHighlighter.swift │ ├── Extensions │ ├── AttributedString+.swift │ ├── Image+.swift │ ├── MarkdownUI+.swift │ └── Message+.swift │ ├── FloatingPanel.swift │ ├── HapticManager.swift │ ├── LocationManager.swift │ ├── MagicEditor │ ├── Attachments │ │ ├── ArticleAttachment.swift │ │ ├── MagicAttachment.swift │ │ └── RoleAttachment.swift │ ├── Fragments │ │ └── RoleFragment.swift │ ├── MagicEditor+SwiftUI.swift │ ├── MagicEditor-iOS.swift │ ├── MagicEditor-macOS.swift │ ├── MagicEditorManager.swift │ ├── MagicFunctions.swift │ └── Views │ │ └── MagicContextMenu.swift │ ├── Operators.swift │ ├── PhotoPickerModel.swift │ └── Views │ ├── CodeBlockView.swift │ ├── Modifiers.swift │ ├── PictureView.swift │ ├── Squircle.swift │ ├── VideoView.swift │ └── VisualEffectView.swift ├── HeatKit ├── Package.resolved ├── Package.swift └── Sources │ └── HeatKit │ ├── API.swift │ ├── Defaults │ ├── DefaultAssistant.swift │ ├── DefaultMemory.swift │ ├── DefaultServices.swift │ ├── DefaultSuggestions.swift │ ├── DefaultTitle.swift │ ├── DefaultWebSearch.swift │ └── Defaults.swift │ ├── Extensions │ ├── Data+.swift │ └── FileManager+.swift │ ├── Providers │ ├── Files.swift │ └── Logs.swift │ ├── Tools │ ├── Calendar │ │ ├── CalendarSearchTool.swift │ │ └── CalendarSession.swift │ ├── Images │ │ ├── ImageGeneratorTool.swift │ │ └── ImageSession.swift │ ├── Toolbox.swift │ └── Web │ │ ├── Scrapers │ │ ├── DuckSearch.swift │ │ ├── GoogleSearch.swift │ │ └── WebSearch.swift │ │ ├── WebBrowseSession.swift │ │ ├── WebBrowseTool.swift │ │ ├── WebSearchSession.swift │ │ └── WebSearchTool.swift │ └── Types │ ├── Config.swift │ ├── Conversation.swift │ ├── Document.swift │ └── Instruction.swift ├── LICENSE ├── Makefile ├── README.md └── Screenshots ├── 000.png ├── 001.png └── 002.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/.gitignore -------------------------------------------------------------------------------- /.zed/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/.zed/settings.json -------------------------------------------------------------------------------- /Heat.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Heat.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Heat.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Heat.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Heat.xcodeproj/xcshareddata/xcschemes/Heat.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat.xcodeproj/xcshareddata/xcschemes/Heat.xcscheme -------------------------------------------------------------------------------- /Heat.xcodeproj/xcuserdata/nborror.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat.xcodeproj/xcuserdata/nborror.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Heat/App-iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/App-iOS.swift -------------------------------------------------------------------------------- /Heat/App-macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/App-macOS.swift -------------------------------------------------------------------------------- /Heat/AppState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/AppState.swift -------------------------------------------------------------------------------- /Heat/Files/Conversations/ConversationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Files/Conversations/ConversationView.swift -------------------------------------------------------------------------------- /Heat/Files/Conversations/ConversationViewInspector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Files/Conversations/ConversationViewInspector.swift -------------------------------------------------------------------------------- /Heat/Files/Conversations/ConversationViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Files/Conversations/ConversationViewModel.swift -------------------------------------------------------------------------------- /Heat/Files/Conversations/Messages/MessageField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Files/Conversations/Messages/MessageField.swift -------------------------------------------------------------------------------- /Heat/Files/Conversations/Messages/MessageInstructions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Files/Conversations/Messages/MessageInstructions.swift -------------------------------------------------------------------------------- /Heat/Files/Conversations/Messages/MessageList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Files/Conversations/Messages/MessageList.swift -------------------------------------------------------------------------------- /Heat/Files/Conversations/Messages/MessageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Files/Conversations/Messages/MessageView.swift -------------------------------------------------------------------------------- /Heat/Files/Conversations/Renderers/RenderAnyTag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Files/Conversations/Renderers/RenderAnyTag.swift -------------------------------------------------------------------------------- /Heat/Files/Conversations/Renderers/RenderArtifact.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Files/Conversations/Renderers/RenderArtifact.swift -------------------------------------------------------------------------------- /Heat/Files/Conversations/Renderers/RenderImageSearch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Files/Conversations/Renderers/RenderImageSearch.swift -------------------------------------------------------------------------------- /Heat/Files/Conversations/Renderers/RenderOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Files/Conversations/Renderers/RenderOutput.swift -------------------------------------------------------------------------------- /Heat/Files/Conversations/Renderers/RenderReflection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Files/Conversations/Renderers/RenderReflection.swift -------------------------------------------------------------------------------- /Heat/Files/Conversations/Renderers/RenderTag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Files/Conversations/Renderers/RenderTag.swift -------------------------------------------------------------------------------- /Heat/Files/Conversations/Renderers/RenderText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Files/Conversations/Renderers/RenderText.swift -------------------------------------------------------------------------------- /Heat/Files/Conversations/Renderers/RenderThinking.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Files/Conversations/Renderers/RenderThinking.swift -------------------------------------------------------------------------------- /Heat/Files/Conversations/Views/RunView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Files/Conversations/Views/RunView.swift -------------------------------------------------------------------------------- /Heat/Files/Conversations/Views/Suggestions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Files/Conversations/Views/Suggestions.swift -------------------------------------------------------------------------------- /Heat/Files/Conversations/Views/TypingIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Files/Conversations/Views/TypingIndicator.swift -------------------------------------------------------------------------------- /Heat/Files/Documents/DocumentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Files/Documents/DocumentView.swift -------------------------------------------------------------------------------- /Heat/Files/Documents/DocumentViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Files/Documents/DocumentViewModel.swift -------------------------------------------------------------------------------- /Heat/Files/FileDetail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Files/FileDetail.swift -------------------------------------------------------------------------------- /Heat/Files/FileForm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Files/FileForm.swift -------------------------------------------------------------------------------- /Heat/Files/FileList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Files/FileList.swift -------------------------------------------------------------------------------- /Heat/Files/Views/FileRow-iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Files/Views/FileRow-iOS.swift -------------------------------------------------------------------------------- /Heat/Files/Views/FileRow-macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Files/Views/FileRow-macOS.swift -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/AppIcon.appiconset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/AppIcon.appiconset/Icon.png -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/AppIcon.appiconset/MacIcon@1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/AppIcon.appiconset/MacIcon@1024.png -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/AppIcon.appiconset/MacIcon@128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/AppIcon.appiconset/MacIcon@128.png -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/AppIcon.appiconset/MacIcon@16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/AppIcon.appiconset/MacIcon@16.png -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/AppIcon.appiconset/MacIcon@256 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/AppIcon.appiconset/MacIcon@256 1.png -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/AppIcon.appiconset/MacIcon@256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/AppIcon.appiconset/MacIcon@256.png -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/AppIcon.appiconset/MacIcon@32 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/AppIcon.appiconset/MacIcon@32 1.png -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/AppIcon.appiconset/MacIcon@32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/AppIcon.appiconset/MacIcon@32.png -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/AppIcon.appiconset/MacIcon@512 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/AppIcon.appiconset/MacIcon@512 1.png -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/AppIcon.appiconset/MacIcon@512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/AppIcon.appiconset/MacIcon@512.png -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/AppIcon.appiconset/MacIcon@64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/AppIcon.appiconset/MacIcon@64.png -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/Covers/Bubbles.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/Covers/Bubbles.imageset/Contents.json -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/Covers/Bubbles.imageset/nathanborror_a_piece_of_abstract_art_with_many_colorful_circles_627d42ed-3963-4e2e-8d54-36f4bb1e1acb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/Covers/Bubbles.imageset/nathanborror_a_piece_of_abstract_art_with_many_colorful_circles_627d42ed-3963-4e2e-8d54-36f4bb1e1acb.png -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/Covers/Clouds.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/Covers/Clouds.imageset/Contents.json -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/Covers/Clouds.imageset/nathanborror_a_painting_of_light_blue_clouds_in_the_style_of_li_35372c17-a1d2-499f-9eb9-f335ff5b6140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/Covers/Clouds.imageset/nathanborror_a_painting_of_light_blue_clouds_in_the_style_of_li_35372c17-a1d2-499f-9eb9-f335ff5b6140.png -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/Covers/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/Covers/Contents.json -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/Covers/Cube.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/Covers/Cube.imageset/Contents.json -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/Covers/Cube.imageset/nathanborror_an_orange_square_with_a_light_shining_through_it_i_b9ef0a5e-15f1-461b-a58b-173dd7c07da4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/Covers/Cube.imageset/nathanborror_an_orange_square_with_a_light_shining_through_it_i_b9ef0a5e-15f1-461b-a58b-173dd7c07da4.png -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/Covers/Dunes.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/Covers/Dunes.imageset/Contents.json -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/Covers/Dunes.imageset/nathanborror_abstract_colored_landscape_and_landscapes_with_blu_80915da4-013c-4178-a2fa-86e1866ddbe7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/Covers/Dunes.imageset/nathanborror_abstract_colored_landscape_and_landscapes_with_blu_80915da4-013c-4178-a2fa-86e1866ddbe7.png -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/Covers/Hallway.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/Covers/Hallway.imageset/Contents.json -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/Covers/Hallway.imageset/nathanborror_an_image_of_an_orange_square_in_the_style_of_dark__d93e704c-9efb-4c00-9e61-9e5c7692316d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/Covers/Hallway.imageset/nathanborror_an_image_of_an_orange_square_in_the_style_of_dark__d93e704c-9efb-4c00-9e61-9e5c7692316d.png -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/Covers/Path.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/Covers/Path.imageset/Contents.json -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/Covers/Path.imageset/nathanborror_a_painting_of_an_empty_clear_sky_digital_gradient__73648cb7-0ee8-4265-b135-74daf77c0539.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/Covers/Path.imageset/nathanborror_a_painting_of_an_empty_clear_sky_digital_gradient__73648cb7-0ee8-4265-b135-74daf77c0539.png -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/Covers/SeaSunrise.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/Covers/SeaSunrise.imageset/Contents.json -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/Covers/SeaSunrise.imageset/nathanborror_a_painting_of_a_pastel_sea_in_the_style_of_light_s_60aa1082-04a9-4b1c-a439-689dbad224bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/Covers/SeaSunrise.imageset/nathanborror_a_painting_of_a_pastel_sea_in_the_style_of_light_s_60aa1082-04a9-4b1c-a439-689dbad224bd.png -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/Covers/Sky.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/Covers/Sky.imageset/Contents.json -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/Covers/Sky.imageset/nathanborror_a_painting_of_an_empty_clear_sky_digital_gradient__981f3336-942b-4351-9302-94ac30e3b488.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/Covers/Sky.imageset/nathanborror_a_painting_of_an_empty_clear_sky_digital_gradient__981f3336-942b-4351-9302-94ac30e3b488.png -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/Covers/Structure.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/Covers/Structure.imageset/Contents.json -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/Covers/Structure.imageset/nathanborror_a_painting_of_an_empty_clear_sky_digital_gradient__7df1451c-4178-4dac-b8e9-69fc13c74486.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/Covers/Structure.imageset/nathanborror_a_painting_of_an_empty_clear_sky_digital_gradient__7df1451c-4178-4dac-b8e9-69fc13c74486.png -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/Covers/Sunrise.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/Covers/Sunrise.imageset/Contents.json -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/Covers/Sunrise.imageset/nathanborror_a_painting_of_an_orange_rainbow_that_has_a_ring_in_cf0bc8d1-0e64-4092-8b18-f0467fe98e10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/Covers/Sunrise.imageset/nathanborror_a_painting_of_an_orange_rainbow_that_has_a_ring_in_cf0bc8d1-0e64-4092-8b18-f0467fe98e10.png -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/IconDark.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/IconDark.imageset/Contents.json -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/IconDark.imageset/IconDark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/IconDark.imageset/IconDark.pdf -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/IconDark.imageset/IconLight.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/IconDark.imageset/IconLight.pdf -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/IconDesktop.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/IconDesktop.imageset/Contents.json -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/IconDesktop.imageset/MacIcon@512 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/IconDesktop.imageset/MacIcon@512 1.png -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/IconLight.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/IconLight.imageset/Contents.json -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/IconLight.imageset/IconDark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/IconLight.imageset/IconDark.pdf -------------------------------------------------------------------------------- /Heat/Resources/Assets.xcassets/IconLight.imageset/IconLight.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Assets.xcassets/IconLight.imageset/IconLight.pdf -------------------------------------------------------------------------------- /Heat/Resources/Heat.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Heat.entitlements -------------------------------------------------------------------------------- /Heat/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Resources/Info.plist -------------------------------------------------------------------------------- /Heat/Settings/General/GeneralForm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Settings/General/GeneralForm.swift -------------------------------------------------------------------------------- /Heat/Settings/General/GeneralView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Settings/General/GeneralView.swift -------------------------------------------------------------------------------- /Heat/Settings/Instructions/InstructionForm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Settings/Instructions/InstructionForm.swift -------------------------------------------------------------------------------- /Heat/Settings/Instructions/InstructionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Settings/Instructions/InstructionView.swift -------------------------------------------------------------------------------- /Heat/Settings/Permissions/PermissionForm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Settings/Permissions/PermissionForm.swift -------------------------------------------------------------------------------- /Heat/Settings/Permissions/PermissionList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Settings/Permissions/PermissionList.swift -------------------------------------------------------------------------------- /Heat/Settings/Permissions/PermissionsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Settings/Permissions/PermissionsView.swift -------------------------------------------------------------------------------- /Heat/Settings/Services/ServiceDefaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Settings/Services/ServiceDefaults.swift -------------------------------------------------------------------------------- /Heat/Settings/Services/ServiceForm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Settings/Services/ServiceForm.swift -------------------------------------------------------------------------------- /Heat/Settings/Services/ServiceManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Settings/Services/ServiceManager.swift -------------------------------------------------------------------------------- /Heat/Settings/Services/ServiceView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Settings/Services/ServiceView.swift -------------------------------------------------------------------------------- /Heat/Settings/SettingsView-iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Settings/SettingsView-iOS.swift -------------------------------------------------------------------------------- /Heat/Settings/SettingsView-macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Settings/SettingsView-macOS.swift -------------------------------------------------------------------------------- /Heat/Shared/CodeHighlighter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Shared/CodeHighlighter.swift -------------------------------------------------------------------------------- /Heat/Shared/Extensions/AttributedString+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Shared/Extensions/AttributedString+.swift -------------------------------------------------------------------------------- /Heat/Shared/Extensions/Image+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Shared/Extensions/Image+.swift -------------------------------------------------------------------------------- /Heat/Shared/Extensions/MarkdownUI+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Shared/Extensions/MarkdownUI+.swift -------------------------------------------------------------------------------- /Heat/Shared/Extensions/Message+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Shared/Extensions/Message+.swift -------------------------------------------------------------------------------- /Heat/Shared/FloatingPanel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Shared/FloatingPanel.swift -------------------------------------------------------------------------------- /Heat/Shared/HapticManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Shared/HapticManager.swift -------------------------------------------------------------------------------- /Heat/Shared/LocationManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Shared/LocationManager.swift -------------------------------------------------------------------------------- /Heat/Shared/MagicEditor/Attachments/ArticleAttachment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Shared/MagicEditor/Attachments/ArticleAttachment.swift -------------------------------------------------------------------------------- /Heat/Shared/MagicEditor/Attachments/MagicAttachment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Shared/MagicEditor/Attachments/MagicAttachment.swift -------------------------------------------------------------------------------- /Heat/Shared/MagicEditor/Attachments/RoleAttachment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Shared/MagicEditor/Attachments/RoleAttachment.swift -------------------------------------------------------------------------------- /Heat/Shared/MagicEditor/Fragments/RoleFragment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Shared/MagicEditor/Fragments/RoleFragment.swift -------------------------------------------------------------------------------- /Heat/Shared/MagicEditor/MagicEditor+SwiftUI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Shared/MagicEditor/MagicEditor+SwiftUI.swift -------------------------------------------------------------------------------- /Heat/Shared/MagicEditor/MagicEditor-iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Shared/MagicEditor/MagicEditor-iOS.swift -------------------------------------------------------------------------------- /Heat/Shared/MagicEditor/MagicEditor-macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Shared/MagicEditor/MagicEditor-macOS.swift -------------------------------------------------------------------------------- /Heat/Shared/MagicEditor/MagicEditorManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Shared/MagicEditor/MagicEditorManager.swift -------------------------------------------------------------------------------- /Heat/Shared/MagicEditor/MagicFunctions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Shared/MagicEditor/MagicFunctions.swift -------------------------------------------------------------------------------- /Heat/Shared/MagicEditor/Views/MagicContextMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Shared/MagicEditor/Views/MagicContextMenu.swift -------------------------------------------------------------------------------- /Heat/Shared/Operators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Shared/Operators.swift -------------------------------------------------------------------------------- /Heat/Shared/PhotoPickerModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Shared/PhotoPickerModel.swift -------------------------------------------------------------------------------- /Heat/Shared/Views/CodeBlockView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Shared/Views/CodeBlockView.swift -------------------------------------------------------------------------------- /Heat/Shared/Views/Modifiers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Shared/Views/Modifiers.swift -------------------------------------------------------------------------------- /Heat/Shared/Views/PictureView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Shared/Views/PictureView.swift -------------------------------------------------------------------------------- /Heat/Shared/Views/Squircle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Shared/Views/Squircle.swift -------------------------------------------------------------------------------- /Heat/Shared/Views/VideoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Shared/Views/VideoView.swift -------------------------------------------------------------------------------- /Heat/Shared/Views/VisualEffectView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Heat/Shared/Views/VisualEffectView.swift -------------------------------------------------------------------------------- /HeatKit/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/HeatKit/Package.resolved -------------------------------------------------------------------------------- /HeatKit/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/HeatKit/Package.swift -------------------------------------------------------------------------------- /HeatKit/Sources/HeatKit/API.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/HeatKit/Sources/HeatKit/API.swift -------------------------------------------------------------------------------- /HeatKit/Sources/HeatKit/Defaults/DefaultAssistant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/HeatKit/Sources/HeatKit/Defaults/DefaultAssistant.swift -------------------------------------------------------------------------------- /HeatKit/Sources/HeatKit/Defaults/DefaultMemory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/HeatKit/Sources/HeatKit/Defaults/DefaultMemory.swift -------------------------------------------------------------------------------- /HeatKit/Sources/HeatKit/Defaults/DefaultServices.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/HeatKit/Sources/HeatKit/Defaults/DefaultServices.swift -------------------------------------------------------------------------------- /HeatKit/Sources/HeatKit/Defaults/DefaultSuggestions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/HeatKit/Sources/HeatKit/Defaults/DefaultSuggestions.swift -------------------------------------------------------------------------------- /HeatKit/Sources/HeatKit/Defaults/DefaultTitle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/HeatKit/Sources/HeatKit/Defaults/DefaultTitle.swift -------------------------------------------------------------------------------- /HeatKit/Sources/HeatKit/Defaults/DefaultWebSearch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/HeatKit/Sources/HeatKit/Defaults/DefaultWebSearch.swift -------------------------------------------------------------------------------- /HeatKit/Sources/HeatKit/Defaults/Defaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/HeatKit/Sources/HeatKit/Defaults/Defaults.swift -------------------------------------------------------------------------------- /HeatKit/Sources/HeatKit/Extensions/Data+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/HeatKit/Sources/HeatKit/Extensions/Data+.swift -------------------------------------------------------------------------------- /HeatKit/Sources/HeatKit/Extensions/FileManager+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/HeatKit/Sources/HeatKit/Extensions/FileManager+.swift -------------------------------------------------------------------------------- /HeatKit/Sources/HeatKit/Providers/Files.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/HeatKit/Sources/HeatKit/Providers/Files.swift -------------------------------------------------------------------------------- /HeatKit/Sources/HeatKit/Providers/Logs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/HeatKit/Sources/HeatKit/Providers/Logs.swift -------------------------------------------------------------------------------- /HeatKit/Sources/HeatKit/Tools/Calendar/CalendarSearchTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/HeatKit/Sources/HeatKit/Tools/Calendar/CalendarSearchTool.swift -------------------------------------------------------------------------------- /HeatKit/Sources/HeatKit/Tools/Calendar/CalendarSession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/HeatKit/Sources/HeatKit/Tools/Calendar/CalendarSession.swift -------------------------------------------------------------------------------- /HeatKit/Sources/HeatKit/Tools/Images/ImageGeneratorTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/HeatKit/Sources/HeatKit/Tools/Images/ImageGeneratorTool.swift -------------------------------------------------------------------------------- /HeatKit/Sources/HeatKit/Tools/Images/ImageSession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/HeatKit/Sources/HeatKit/Tools/Images/ImageSession.swift -------------------------------------------------------------------------------- /HeatKit/Sources/HeatKit/Tools/Toolbox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/HeatKit/Sources/HeatKit/Tools/Toolbox.swift -------------------------------------------------------------------------------- /HeatKit/Sources/HeatKit/Tools/Web/Scrapers/DuckSearch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/HeatKit/Sources/HeatKit/Tools/Web/Scrapers/DuckSearch.swift -------------------------------------------------------------------------------- /HeatKit/Sources/HeatKit/Tools/Web/Scrapers/GoogleSearch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/HeatKit/Sources/HeatKit/Tools/Web/Scrapers/GoogleSearch.swift -------------------------------------------------------------------------------- /HeatKit/Sources/HeatKit/Tools/Web/Scrapers/WebSearch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/HeatKit/Sources/HeatKit/Tools/Web/Scrapers/WebSearch.swift -------------------------------------------------------------------------------- /HeatKit/Sources/HeatKit/Tools/Web/WebBrowseSession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/HeatKit/Sources/HeatKit/Tools/Web/WebBrowseSession.swift -------------------------------------------------------------------------------- /HeatKit/Sources/HeatKit/Tools/Web/WebBrowseTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/HeatKit/Sources/HeatKit/Tools/Web/WebBrowseTool.swift -------------------------------------------------------------------------------- /HeatKit/Sources/HeatKit/Tools/Web/WebSearchSession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/HeatKit/Sources/HeatKit/Tools/Web/WebSearchSession.swift -------------------------------------------------------------------------------- /HeatKit/Sources/HeatKit/Tools/Web/WebSearchTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/HeatKit/Sources/HeatKit/Tools/Web/WebSearchTool.swift -------------------------------------------------------------------------------- /HeatKit/Sources/HeatKit/Types/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/HeatKit/Sources/HeatKit/Types/Config.swift -------------------------------------------------------------------------------- /HeatKit/Sources/HeatKit/Types/Conversation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/HeatKit/Sources/HeatKit/Types/Conversation.swift -------------------------------------------------------------------------------- /HeatKit/Sources/HeatKit/Types/Document.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/HeatKit/Sources/HeatKit/Types/Document.swift -------------------------------------------------------------------------------- /HeatKit/Sources/HeatKit/Types/Instruction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/HeatKit/Sources/HeatKit/Types/Instruction.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Screenshots/000.png -------------------------------------------------------------------------------- /Screenshots/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Screenshots/001.png -------------------------------------------------------------------------------- /Screenshots/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanborror/Heat/HEAD/Screenshots/002.png --------------------------------------------------------------------------------