* fix: sync-cookbook now supports new cookbook repo layout Cookbook repository changed structure: - Applications moved from root to applications/ subdirectory - Notebooks remain in notebooks/ directory (unchanged) Updated sync script to: - Look for apps in applications/* instead of root/* - Update GitHub URLs to include applications/ path - Add safety check if applications/ dir doesn't exist * doc: update cookbook * doc: update cookbook * doc: update cookbook
39 lines
2 KiB
Text
39 lines
2 KiB
Text
---
|
|
sidebar_position: 1
|
|
---
|
|
|
|
import RecipeCarousel from '@site/src/components/RecipeCarousel';
|
|
|
|
# Cookbook
|
|
|
|
Practical patterns, recipes, and complete applications for building with Hindsight.
|
|
|
|
<RecipeCarousel
|
|
title="Recipes"
|
|
items={[
|
|
{ title: "Hindsight Quickstart", href: "/cookbook/recipes/quickstart" },
|
|
{ title: "Per-User Memory", href: "/cookbook/recipes/per-user-memory" },
|
|
{ title: "Support Agent with Shared Knowledge", href: "/cookbook/recipes/support-agent-shared-knowledge" },
|
|
{ title: "Memory with LiteLLM", href: "/cookbook/recipes/litellm-memory-demo" },
|
|
{ title: "Routing Tool Learning", href: "/cookbook/recipes/tool-learning-demo" },
|
|
{ title: "Fitness Coach with Hindsight Memory", href: "/cookbook/recipes/fitness_tracker" },
|
|
{ title: "Healthcare Assistant with Hindsight Memory", href: "/cookbook/recipes/healthcare_assistant" },
|
|
{ title: "Movie Recommendation Assistant with Hindsight Memory", href: "/cookbook/recipes/movie_recommendation" },
|
|
{ title: "Personal AI Assistant with Hindsight Memory", href: "/cookbook/recipes/personal_assistant" },
|
|
{ title: "Personalized Search Agent with Hindsight Memory", href: "/cookbook/recipes/personalized_search" },
|
|
{ title: "Study Buddy with Hindsight Memory", href: "/cookbook/recipes/study_buddy" }
|
|
]}
|
|
/>
|
|
|
|
<RecipeCarousel
|
|
title="Applications"
|
|
items={[
|
|
{ title: "Chat Memory App", href: "/cookbook/applications/chat-memory" },
|
|
{ title: "Deliveryman Demo", href: "/cookbook/applications/deliveryman-demo" },
|
|
{ title: "Memory Approaches Comparison Demo", href: "/cookbook/applications/hindsight-litellm-demo" },
|
|
{ title: "Tool Learning Demo", href: "/cookbook/applications/hindsight-tool-learning-demo" },
|
|
{ title: "OpenAI Agent + Hindsight Memory Integration", href: "/cookbook/applications/openai-fitness-coach" },
|
|
{ title: "Sanity CMS Blog Memory", href: "/cookbook/applications/sanity-blog-memory" },
|
|
{ title: "Stance Tracker", href: "/cookbook/applications/stancetracker" }
|
|
]}
|
|
/>
|