├── .gitignore ├── LICENSE ├── README.md ├── ShellMate.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── swiftpm │ └── Package.resolved ├── ShellMate ├── App.swift ├── ApplicationDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── ShellMate_Icon-1024-1024 1.png │ │ ├── ShellMate_Icon-1024-128.png │ │ ├── ShellMate_Icon-1024-16.png │ │ ├── ShellMate_Icon-1024-256 1.png │ │ ├── ShellMate_Icon-1024-256.png │ │ ├── ShellMate_Icon-1024-32 1.png │ │ ├── ShellMate_Icon-1024-32.png │ │ ├── ShellMate_Icon-1024-512 1.png │ │ ├── ShellMate_Icon-1024-512.png │ │ └── ShellMate_Icon-1024-64 1.png │ ├── Contents.json │ ├── headset.imageset │ │ ├── Contents.json │ │ └── headset.png │ ├── rocket.imageset │ │ ├── Contents.json │ │ └── rocket.png │ └── samAltmansFace.imageset │ │ ├── Contents.json │ │ └── samAltman2_flipped.png ├── GPT │ ├── GPTAssistantCreator.swift │ ├── GPTAssistantInstructions.swift │ ├── GPTAssistantManager.swift │ └── GPTAssistantThreadIDManager.swift ├── Helpers │ ├── SendFeedbackEmail.swift │ ├── SetupLaunchShellMateAtTerminalStartup.swift │ ├── StartupTerminalWindowHandler.swift │ ├── SuggestionGenerationMonitor.swift │ └── Utils.swift ├── Info.plist ├── KeyPressDelegate.swift ├── NotificationExtensions.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── Services │ ├── AFKSessionService.swift │ └── ShellMateWindowVisibilityService.swift ├── ShellMate.entitlements ├── ShellMateWindowTrackingDelegate.swift ├── TerminalContentManager.swift ├── ViewModels │ ├── AppViewModel.swift │ ├── Banners │ │ ├── ChatWithMakersViewModel.swift │ │ ├── NetworkErrorViewModel.swift │ │ └── UpdateShellProfileViewModel.swift │ ├── CheckForUpdatesViewModel.swift │ ├── EmptyState │ │ ├── EmptyStateMessages.swift │ │ └── EmptyStateViewModel.swift │ ├── Onboarding │ │ └── OnboardingViewModel.swift │ ├── PermissionsViewModel.swift │ └── Settings │ │ └── SettingsViewModel.swift ├── Views │ ├── AppColors.swift │ ├── Banners │ │ ├── BannersView.swift │ │ ├── ChatWithMakersView.swift │ │ ├── NetworkErrorView.swift │ │ └── UpdateShellProfileView.swift │ ├── CheckForUpdatesView.swift │ ├── ContentView.swift │ ├── EmptyState │ │ └── EmptyStateView.swift │ ├── Onboarding │ │ └── OnboardingView.swift │ ├── PermissionsView.swift │ ├── Settings │ │ └── SettingsView.swift │ └── Suggestions │ │ └── SuggestionsStatusBarView.swift └── WindowPositionManager.swift ├── ShellMateCLI ├── install.sh ├── main.swift └── uninstall.sh ├── Template.Secrets.xcconfig ├── examples ├── asking_questions.png ├── build_xcode.png ├── fastapi │ ├── install.png │ └── running.png ├── install_cli.png └── openai_key_setup.png └── format_code.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/README.md -------------------------------------------------------------------------------- /ShellMate.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ShellMate.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ShellMate.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ShellMate.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /ShellMate/App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/App.swift -------------------------------------------------------------------------------- /ShellMate/ApplicationDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/ApplicationDelegate.swift -------------------------------------------------------------------------------- /ShellMate/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /ShellMate/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ShellMate/Assets.xcassets/AppIcon.appiconset/ShellMate_Icon-1024-1024 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Assets.xcassets/AppIcon.appiconset/ShellMate_Icon-1024-1024 1.png -------------------------------------------------------------------------------- /ShellMate/Assets.xcassets/AppIcon.appiconset/ShellMate_Icon-1024-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Assets.xcassets/AppIcon.appiconset/ShellMate_Icon-1024-128.png -------------------------------------------------------------------------------- /ShellMate/Assets.xcassets/AppIcon.appiconset/ShellMate_Icon-1024-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Assets.xcassets/AppIcon.appiconset/ShellMate_Icon-1024-16.png -------------------------------------------------------------------------------- /ShellMate/Assets.xcassets/AppIcon.appiconset/ShellMate_Icon-1024-256 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Assets.xcassets/AppIcon.appiconset/ShellMate_Icon-1024-256 1.png -------------------------------------------------------------------------------- /ShellMate/Assets.xcassets/AppIcon.appiconset/ShellMate_Icon-1024-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Assets.xcassets/AppIcon.appiconset/ShellMate_Icon-1024-256.png -------------------------------------------------------------------------------- /ShellMate/Assets.xcassets/AppIcon.appiconset/ShellMate_Icon-1024-32 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Assets.xcassets/AppIcon.appiconset/ShellMate_Icon-1024-32 1.png -------------------------------------------------------------------------------- /ShellMate/Assets.xcassets/AppIcon.appiconset/ShellMate_Icon-1024-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Assets.xcassets/AppIcon.appiconset/ShellMate_Icon-1024-32.png -------------------------------------------------------------------------------- /ShellMate/Assets.xcassets/AppIcon.appiconset/ShellMate_Icon-1024-512 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Assets.xcassets/AppIcon.appiconset/ShellMate_Icon-1024-512 1.png -------------------------------------------------------------------------------- /ShellMate/Assets.xcassets/AppIcon.appiconset/ShellMate_Icon-1024-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Assets.xcassets/AppIcon.appiconset/ShellMate_Icon-1024-512.png -------------------------------------------------------------------------------- /ShellMate/Assets.xcassets/AppIcon.appiconset/ShellMate_Icon-1024-64 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Assets.xcassets/AppIcon.appiconset/ShellMate_Icon-1024-64 1.png -------------------------------------------------------------------------------- /ShellMate/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ShellMate/Assets.xcassets/headset.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Assets.xcassets/headset.imageset/Contents.json -------------------------------------------------------------------------------- /ShellMate/Assets.xcassets/headset.imageset/headset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Assets.xcassets/headset.imageset/headset.png -------------------------------------------------------------------------------- /ShellMate/Assets.xcassets/rocket.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Assets.xcassets/rocket.imageset/Contents.json -------------------------------------------------------------------------------- /ShellMate/Assets.xcassets/rocket.imageset/rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Assets.xcassets/rocket.imageset/rocket.png -------------------------------------------------------------------------------- /ShellMate/Assets.xcassets/samAltmansFace.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Assets.xcassets/samAltmansFace.imageset/Contents.json -------------------------------------------------------------------------------- /ShellMate/Assets.xcassets/samAltmansFace.imageset/samAltman2_flipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Assets.xcassets/samAltmansFace.imageset/samAltman2_flipped.png -------------------------------------------------------------------------------- /ShellMate/GPT/GPTAssistantCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/GPT/GPTAssistantCreator.swift -------------------------------------------------------------------------------- /ShellMate/GPT/GPTAssistantInstructions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/GPT/GPTAssistantInstructions.swift -------------------------------------------------------------------------------- /ShellMate/GPT/GPTAssistantManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/GPT/GPTAssistantManager.swift -------------------------------------------------------------------------------- /ShellMate/GPT/GPTAssistantThreadIDManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/GPT/GPTAssistantThreadIDManager.swift -------------------------------------------------------------------------------- /ShellMate/Helpers/SendFeedbackEmail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Helpers/SendFeedbackEmail.swift -------------------------------------------------------------------------------- /ShellMate/Helpers/SetupLaunchShellMateAtTerminalStartup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Helpers/SetupLaunchShellMateAtTerminalStartup.swift -------------------------------------------------------------------------------- /ShellMate/Helpers/StartupTerminalWindowHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Helpers/StartupTerminalWindowHandler.swift -------------------------------------------------------------------------------- /ShellMate/Helpers/SuggestionGenerationMonitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Helpers/SuggestionGenerationMonitor.swift -------------------------------------------------------------------------------- /ShellMate/Helpers/Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Helpers/Utils.swift -------------------------------------------------------------------------------- /ShellMate/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Info.plist -------------------------------------------------------------------------------- /ShellMate/KeyPressDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/KeyPressDelegate.swift -------------------------------------------------------------------------------- /ShellMate/NotificationExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/NotificationExtensions.swift -------------------------------------------------------------------------------- /ShellMate/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ShellMate/Services/AFKSessionService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Services/AFKSessionService.swift -------------------------------------------------------------------------------- /ShellMate/Services/ShellMateWindowVisibilityService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Services/ShellMateWindowVisibilityService.swift -------------------------------------------------------------------------------- /ShellMate/ShellMate.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/ShellMate.entitlements -------------------------------------------------------------------------------- /ShellMate/ShellMateWindowTrackingDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/ShellMateWindowTrackingDelegate.swift -------------------------------------------------------------------------------- /ShellMate/TerminalContentManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/TerminalContentManager.swift -------------------------------------------------------------------------------- /ShellMate/ViewModels/AppViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/ViewModels/AppViewModel.swift -------------------------------------------------------------------------------- /ShellMate/ViewModels/Banners/ChatWithMakersViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/ViewModels/Banners/ChatWithMakersViewModel.swift -------------------------------------------------------------------------------- /ShellMate/ViewModels/Banners/NetworkErrorViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/ViewModels/Banners/NetworkErrorViewModel.swift -------------------------------------------------------------------------------- /ShellMate/ViewModels/Banners/UpdateShellProfileViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/ViewModels/Banners/UpdateShellProfileViewModel.swift -------------------------------------------------------------------------------- /ShellMate/ViewModels/CheckForUpdatesViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/ViewModels/CheckForUpdatesViewModel.swift -------------------------------------------------------------------------------- /ShellMate/ViewModels/EmptyState/EmptyStateMessages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/ViewModels/EmptyState/EmptyStateMessages.swift -------------------------------------------------------------------------------- /ShellMate/ViewModels/EmptyState/EmptyStateViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/ViewModels/EmptyState/EmptyStateViewModel.swift -------------------------------------------------------------------------------- /ShellMate/ViewModels/Onboarding/OnboardingViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/ViewModels/Onboarding/OnboardingViewModel.swift -------------------------------------------------------------------------------- /ShellMate/ViewModels/PermissionsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/ViewModels/PermissionsViewModel.swift -------------------------------------------------------------------------------- /ShellMate/ViewModels/Settings/SettingsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/ViewModels/Settings/SettingsViewModel.swift -------------------------------------------------------------------------------- /ShellMate/Views/AppColors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Views/AppColors.swift -------------------------------------------------------------------------------- /ShellMate/Views/Banners/BannersView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Views/Banners/BannersView.swift -------------------------------------------------------------------------------- /ShellMate/Views/Banners/ChatWithMakersView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Views/Banners/ChatWithMakersView.swift -------------------------------------------------------------------------------- /ShellMate/Views/Banners/NetworkErrorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Views/Banners/NetworkErrorView.swift -------------------------------------------------------------------------------- /ShellMate/Views/Banners/UpdateShellProfileView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Views/Banners/UpdateShellProfileView.swift -------------------------------------------------------------------------------- /ShellMate/Views/CheckForUpdatesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Views/CheckForUpdatesView.swift -------------------------------------------------------------------------------- /ShellMate/Views/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Views/ContentView.swift -------------------------------------------------------------------------------- /ShellMate/Views/EmptyState/EmptyStateView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Views/EmptyState/EmptyStateView.swift -------------------------------------------------------------------------------- /ShellMate/Views/Onboarding/OnboardingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Views/Onboarding/OnboardingView.swift -------------------------------------------------------------------------------- /ShellMate/Views/PermissionsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Views/PermissionsView.swift -------------------------------------------------------------------------------- /ShellMate/Views/Settings/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Views/Settings/SettingsView.swift -------------------------------------------------------------------------------- /ShellMate/Views/Suggestions/SuggestionsStatusBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/Views/Suggestions/SuggestionsStatusBarView.swift -------------------------------------------------------------------------------- /ShellMate/WindowPositionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMate/WindowPositionManager.swift -------------------------------------------------------------------------------- /ShellMateCLI/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMateCLI/install.sh -------------------------------------------------------------------------------- /ShellMateCLI/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMateCLI/main.swift -------------------------------------------------------------------------------- /ShellMateCLI/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/ShellMateCLI/uninstall.sh -------------------------------------------------------------------------------- /Template.Secrets.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/Template.Secrets.xcconfig -------------------------------------------------------------------------------- /examples/asking_questions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/examples/asking_questions.png -------------------------------------------------------------------------------- /examples/build_xcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/examples/build_xcode.png -------------------------------------------------------------------------------- /examples/fastapi/install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/examples/fastapi/install.png -------------------------------------------------------------------------------- /examples/fastapi/running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/examples/fastapi/running.png -------------------------------------------------------------------------------- /examples/install_cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/examples/install_cli.png -------------------------------------------------------------------------------- /examples/openai_key_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/examples/openai_key_setup.png -------------------------------------------------------------------------------- /format_code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srosro/deepspring-shellmate/HEAD/format_code.sh --------------------------------------------------------------------------------