├── .gitignore ├── Foundation-Models-Playgrounds.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── ivancampos.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── Foundation-Models-Playgrounds ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── ContentView.swift ├── Foundation_Models_PlaygroundsApp.swift └── Playgrounds │ ├── AnimalInfoTools.swift │ ├── ArticleSummary.swift │ ├── AssetMatch.swift │ ├── AutocompleteAssistant.swift │ ├── AutonomyGoal.swift │ ├── Basic.swift │ ├── BasicChat.swift │ ├── BookSeriesSummary.swift │ ├── BugReportSummarizer.swift │ ├── CalendarEventTool.swift │ ├── CarInfoTools.swift │ ├── ChainedPrompts.swift │ ├── CharacterChat.swift │ ├── ChatInstructions.swift │ ├── ChatSummary.swift │ ├── CityInfoTools.swift │ ├── CodeCompletion.swift │ ├── CodeRefactor.swift │ ├── CodeReviewAssistant.swift │ ├── CodeSnippet.swift │ ├── CodeSummary.swift │ ├── CodingChallengeGenerator.swift │ ├── ColorFix.swift │ ├── ConstrainedCharacterProfile.swift │ ├── ContactLookupTool.swift │ ├── ContentPlanner.swift │ ├── ContentTagging.swift │ ├── ConversationMemory.swift │ ├── DailyMotivation.swift │ ├── DailyQuote.swift │ ├── DarkModeTool.swift │ ├── DataExtractor.swift │ ├── DebateRuling.swift │ ├── DebuggingInstructions.swift │ ├── DenyListCheck.swift │ ├── DynamicContactOrCalendar.swift │ ├── DynamicRecipeOrWorkout.swift │ ├── DynamicSleepOrSteps.swift │ ├── DynamicTranslateOrSummary.swift │ ├── DynamicTriviaOrDarkMode.swift │ ├── DynamicWeatherOrStock.swift │ ├── EmailComposition.swift │ ├── EmailResponseDraft.swift │ ├── EmojiTranslator.swift │ ├── ExpandedThought.swift │ ├── ExplainConcept.swift │ ├── FashionRecommendation.swift │ ├── FilmProduction.swift │ ├── FinancialStrategy.swift │ ├── FrenchTranslation.swift │ ├── GameDifficultyTool.swift │ ├── GardenPlanner.swift │ ├── GuardrailViolation.swift │ ├── Haiku.swift │ ├── HealthStepsTool.swift │ ├── HierarchicalManager.swift │ ├── ImagePrompt.swift │ ├── InterviewQuestionCoach.swift │ ├── JSONGenerator.swift │ ├── LLM-as-a-Judge.swift │ ├── LanguageFlashCard.swift │ ├── LanguageIdiomTutor.swift │ ├── LanguageTriage.swift │ ├── MarketingTagline.swift │ ├── MathProblemSolver.swift │ ├── MedicalCase.swift │ ├── MemoryLoop.swift │ ├── MemorySummary.swift │ ├── MetadataTags.swift │ ├── MindMap.swift │ ├── MockCSV.swift │ ├── ModelAvailability.swift │ ├── ModelEntityHelper.swift │ ├── MoonLandingDate.swift │ ├── MovieInfoTools.swift │ ├── MovieNightRecommendation.swift │ ├── MultiAgentSimulation.swift │ ├── MusicAlbum.swift │ ├── MusicRecommendation.swift │ ├── NaturePoem.swift │ ├── NestedGenerable.swift │ ├── NewsHeadlineTool.swift │ ├── NewsSummary.swift │ ├── NextLeapDay.swift │ ├── NovelOutline.swift │ ├── NumericConversion.swift │ ├── PerceptionObservation.swift │ ├── PitchDeckOutline.swift │ ├── PlanExecute.swift │ ├── PlanetInfoTools.swift │ ├── PlantCareTools.swift │ ├── PoseStats.swift │ ├── ProceduralTexture.swift │ ├── ProductComparison.swift │ ├── ProgrammingLanguageTools.swift │ ├── ReAct.swift │ ├── ReWOO.swift │ ├── ReasoningPlan.swift │ ├── RecipeInfoTools.swift │ ├── RecipeMaker.swift │ ├── RedactedEntity.swift │ ├── RefereeDecision.swift │ ├── ReflectionLoop.swift │ ├── RegexCharacterName.swift │ ├── ResumeGenerator.swift │ ├── RetrievalAugmented.swift │ ├── RiddleMaker.swift │ ├── RoadTripPackingList.swift │ ├── SQLQueryAssistant.swift │ ├── SafetyCompliance.swift │ ├── SafetyGuidedGeneration.swift │ ├── SafetyInputBoundaries.swift │ ├── SafetyInstructions.swift │ ├── SelfReflection.swift │ ├── SentimentAnalyzer.swift │ ├── ShakespeareConversation.swift │ ├── ShortStory.swift │ ├── SleepDataTool.swift │ ├── SlideDeck.swift │ ├── SocraticGuide.swift │ ├── SpaceMission.swift │ ├── StockPriceTool.swift │ ├── StreamingPoem.swift │ ├── StreamingTokens.swift │ ├── StructuredBookRecommendation.swift │ ├── Summarize.swift │ ├── SuperheroProfile.swift │ ├── SynonymFinder.swift │ ├── TechPanel.swift │ ├── TelemetrySample.swift │ ├── TestCaseGenerator.swift │ ├── TranscriptReview.swift │ ├── TranscriptSummarizer.swift │ ├── Translate.swift │ ├── TravelBudgetEstimator.swift │ ├── TravelItinerary.swift │ ├── TrendingTopics.swift │ ├── TriviaQuestionWriter.swift │ ├── TriviaScoreTool.swift │ ├── VacationPackingHelper.swift │ ├── VegetarianMenu.swift │ ├── VocabularyQuizMaker.swift │ ├── WeatherReport.swift │ ├── WorkoutPlan.swift │ └── WorkoutSchedule.swift └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/.gitignore -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds.xcodeproj/xcuserdata/ivancampos.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds.xcodeproj/xcuserdata/ivancampos.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/ContentView.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Foundation_Models_PlaygroundsApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Foundation_Models_PlaygroundsApp.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/AnimalInfoTools.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/AnimalInfoTools.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/ArticleSummary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/ArticleSummary.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/AssetMatch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/AssetMatch.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/AutocompleteAssistant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/AutocompleteAssistant.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/AutonomyGoal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/AutonomyGoal.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/Basic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/Basic.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/BasicChat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/BasicChat.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/BookSeriesSummary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/BookSeriesSummary.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/BugReportSummarizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/BugReportSummarizer.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/CalendarEventTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/CalendarEventTool.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/CarInfoTools.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/CarInfoTools.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/ChainedPrompts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/ChainedPrompts.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/CharacterChat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/CharacterChat.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/ChatInstructions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/ChatInstructions.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/ChatSummary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/ChatSummary.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/CityInfoTools.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/CityInfoTools.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/CodeCompletion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/CodeCompletion.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/CodeRefactor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/CodeRefactor.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/CodeReviewAssistant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/CodeReviewAssistant.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/CodeSnippet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/CodeSnippet.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/CodeSummary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/CodeSummary.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/CodingChallengeGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/CodingChallengeGenerator.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/ColorFix.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/ColorFix.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/ConstrainedCharacterProfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/ConstrainedCharacterProfile.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/ContactLookupTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/ContactLookupTool.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/ContentPlanner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/ContentPlanner.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/ContentTagging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/ContentTagging.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/ConversationMemory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/ConversationMemory.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/DailyMotivation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/DailyMotivation.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/DailyQuote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/DailyQuote.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/DarkModeTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/DarkModeTool.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/DataExtractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/DataExtractor.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/DebateRuling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/DebateRuling.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/DebuggingInstructions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/DebuggingInstructions.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/DenyListCheck.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/DenyListCheck.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/DynamicContactOrCalendar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/DynamicContactOrCalendar.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/DynamicRecipeOrWorkout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/DynamicRecipeOrWorkout.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/DynamicSleepOrSteps.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/DynamicSleepOrSteps.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/DynamicTranslateOrSummary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/DynamicTranslateOrSummary.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/DynamicTriviaOrDarkMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/DynamicTriviaOrDarkMode.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/DynamicWeatherOrStock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/DynamicWeatherOrStock.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/EmailComposition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/EmailComposition.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/EmailResponseDraft.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/EmailResponseDraft.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/EmojiTranslator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/EmojiTranslator.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/ExpandedThought.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/ExpandedThought.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/ExplainConcept.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/ExplainConcept.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/FashionRecommendation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/FashionRecommendation.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/FilmProduction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/FilmProduction.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/FinancialStrategy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/FinancialStrategy.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/FrenchTranslation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/FrenchTranslation.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/GameDifficultyTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/GameDifficultyTool.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/GardenPlanner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/GardenPlanner.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/GuardrailViolation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/GuardrailViolation.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/Haiku.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/Haiku.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/HealthStepsTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/HealthStepsTool.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/HierarchicalManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/HierarchicalManager.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/ImagePrompt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/ImagePrompt.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/InterviewQuestionCoach.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/InterviewQuestionCoach.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/JSONGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/JSONGenerator.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/LLM-as-a-Judge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/LLM-as-a-Judge.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/LanguageFlashCard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/LanguageFlashCard.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/LanguageIdiomTutor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/LanguageIdiomTutor.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/LanguageTriage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/LanguageTriage.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/MarketingTagline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/MarketingTagline.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/MathProblemSolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/MathProblemSolver.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/MedicalCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/MedicalCase.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/MemoryLoop.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/MemoryLoop.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/MemorySummary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/MemorySummary.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/MetadataTags.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/MetadataTags.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/MindMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/MindMap.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/MockCSV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/MockCSV.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/ModelAvailability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/ModelAvailability.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/ModelEntityHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/ModelEntityHelper.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/MoonLandingDate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/MoonLandingDate.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/MovieInfoTools.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/MovieInfoTools.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/MovieNightRecommendation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/MovieNightRecommendation.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/MultiAgentSimulation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/MultiAgentSimulation.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/MusicAlbum.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/MusicAlbum.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/MusicRecommendation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/MusicRecommendation.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/NaturePoem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/NaturePoem.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/NestedGenerable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/NestedGenerable.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/NewsHeadlineTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/NewsHeadlineTool.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/NewsSummary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/NewsSummary.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/NextLeapDay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/NextLeapDay.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/NovelOutline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/NovelOutline.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/NumericConversion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/NumericConversion.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/PerceptionObservation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/PerceptionObservation.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/PitchDeckOutline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/PitchDeckOutline.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/PlanExecute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/PlanExecute.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/PlanetInfoTools.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/PlanetInfoTools.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/PlantCareTools.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/PlantCareTools.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/PoseStats.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/PoseStats.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/ProceduralTexture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/ProceduralTexture.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/ProductComparison.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/ProductComparison.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/ProgrammingLanguageTools.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/ProgrammingLanguageTools.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/ReAct.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/ReAct.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/ReWOO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/ReWOO.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/ReasoningPlan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/ReasoningPlan.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/RecipeInfoTools.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/RecipeInfoTools.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/RecipeMaker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/RecipeMaker.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/RedactedEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/RedactedEntity.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/RefereeDecision.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/RefereeDecision.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/ReflectionLoop.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/ReflectionLoop.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/RegexCharacterName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/RegexCharacterName.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/ResumeGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/ResumeGenerator.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/RetrievalAugmented.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/RetrievalAugmented.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/RiddleMaker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/RiddleMaker.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/RoadTripPackingList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/RoadTripPackingList.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/SQLQueryAssistant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/SQLQueryAssistant.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/SafetyCompliance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/SafetyCompliance.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/SafetyGuidedGeneration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/SafetyGuidedGeneration.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/SafetyInputBoundaries.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/SafetyInputBoundaries.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/SafetyInstructions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/SafetyInstructions.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/SelfReflection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/SelfReflection.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/SentimentAnalyzer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/SentimentAnalyzer.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/ShakespeareConversation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/ShakespeareConversation.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/ShortStory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/ShortStory.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/SleepDataTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/SleepDataTool.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/SlideDeck.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/SlideDeck.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/SocraticGuide.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/SocraticGuide.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/SpaceMission.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/SpaceMission.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/StockPriceTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/StockPriceTool.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/StreamingPoem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/StreamingPoem.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/StreamingTokens.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/StreamingTokens.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/StructuredBookRecommendation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/StructuredBookRecommendation.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/Summarize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/Summarize.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/SuperheroProfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/SuperheroProfile.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/SynonymFinder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/SynonymFinder.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/TechPanel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/TechPanel.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/TelemetrySample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/TelemetrySample.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/TestCaseGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/TestCaseGenerator.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/TranscriptReview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/TranscriptReview.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/TranscriptSummarizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/TranscriptSummarizer.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/Translate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/Translate.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/TravelBudgetEstimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/TravelBudgetEstimator.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/TravelItinerary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/TravelItinerary.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/TrendingTopics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/TrendingTopics.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/TriviaQuestionWriter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/TriviaQuestionWriter.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/TriviaScoreTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/TriviaScoreTool.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/VacationPackingHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/VacationPackingHelper.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/VegetarianMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/VegetarianMenu.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/VocabularyQuizMaker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/VocabularyQuizMaker.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/WeatherReport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/WeatherReport.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/WorkoutPlan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/WorkoutPlan.swift -------------------------------------------------------------------------------- /Foundation-Models-Playgrounds/Playgrounds/WorkoutSchedule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/Foundation-Models-Playgrounds/Playgrounds/WorkoutSchedule.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanCampos/Foundation-Models-Playgrounds/HEAD/README.md --------------------------------------------------------------------------------