diff --git a/docs-src/pages/en/cookbook/index.md b/docs-src/pages/en/cookbook/index.md index 158740e..e28efbf 100644 --- a/docs-src/pages/en/cookbook/index.md +++ b/docs-src/pages/en/cookbook/index.md @@ -1,6 +1,7 @@ --- title: "Cookbook" order: 0 +status: "draft" --- A collection of recipes that answer "How do I...?" questions. Each recipe is self-contained — read only what you need. diff --git a/docs-src/pages/en/index.md b/docs-src/pages/en/index.md index b7e5790..3fbfcb6 100644 --- a/docs-src/pages/en/index.md +++ b/docs-src/pages/en/index.md @@ -18,5 +18,8 @@ Under the hood, it uses blocking I/O with a thread pool. It's not built for hand ## Documentation - [A Tour of cpp-httplib](tour/) — A step-by-step tutorial covering the basics. Start here if you're new + +## Stay Tuned + - [Cookbook](cookbook/) — A collection of recipes organized by topic. Jump to whatever you need - [Building a Desktop LLM App](llm-app/) — A hands-on guide to building a desktop app with llama.cpp, step by step diff --git a/docs-src/pages/en/llm-app/index.md b/docs-src/pages/en/llm-app/index.md index cb70ebe..e1fe5a9 100644 --- a/docs-src/pages/en/llm-app/index.md +++ b/docs-src/pages/en/llm-app/index.md @@ -1,6 +1,7 @@ --- title: "Building a Desktop LLM App with cpp-httplib" order: 0 +status: "draft" --- Build an LLM-powered translation desktop app step by step, learning both the server and client sides of cpp-httplib along the way. Translation is just an example — swap it out to build your own summarizer, code generator, chatbot, or any other LLM application. diff --git a/docs-src/pages/ja/cookbook/index.md b/docs-src/pages/ja/cookbook/index.md index 98d97c2..3ecf52a 100644 --- a/docs-src/pages/ja/cookbook/index.md +++ b/docs-src/pages/ja/cookbook/index.md @@ -1,6 +1,7 @@ --- title: "Cookbook" order: 0 +status: "draft" --- 「〇〇をするには?」という問いに答えるレシピ集です。各レシピは独立しているので、必要なページだけ読めます。 diff --git a/docs-src/pages/ja/index.md b/docs-src/pages/ja/index.md index a9c328c..5968061 100644 --- a/docs-src/pages/ja/index.md +++ b/docs-src/pages/ja/index.md @@ -18,5 +18,8 @@ HTTPSも使えます。OpenSSLやmbedTLSをリンクするだけで、サーバ ## ドキュメント - [A Tour of cpp-httplib](tour/) — 基本を順を追って学べるチュートリアル。初めての方はここから + +## お楽しみに + - [Cookbook](cookbook/) — 目的別のレシピ集。必要なトピックから読めます - [Building a Desktop LLM App](llm-app/) — llama.cpp を組み込んだデスクトップアプリを段階的に構築する実践ガイド diff --git a/docs-src/pages/ja/llm-app/index.md b/docs-src/pages/ja/llm-app/index.md index 9e4c042..e66278a 100644 --- a/docs-src/pages/ja/llm-app/index.md +++ b/docs-src/pages/ja/llm-app/index.md @@ -1,6 +1,7 @@ --- title: "Building a Desktop LLM App with cpp-httplib" order: 0 +status: "draft" --- llama.cpp を組み込んだ LLM 翻訳デスクトップアプリを段階的に構築しながら、cpp-httplib のサーバー・クライアント両面の使い方を実践的に学びます。翻訳は一例であり、この部分を差し替えることで要約・コード生成・チャットボットなど自分のアプリに応用できます。