Skip to content

feat(webiste): utiliziation cases of LLM frameworks.#1797

Merged
samchon merged 19 commits intomasterfrom
doc/utilization-cases
Mar 19, 2026
Merged

feat(webiste): utiliziation cases of LLM frameworks.#1797
samchon merged 19 commits intomasterfrom
doc/utilization-cases

Conversation

@samchon
Copy link
Copy Markdown
Owner

@samchon samchon commented Mar 19, 2026

This pull request primarily refactors the LangChain and MCP guide documentation pages to redirect users to their new locations under the /docs/utilization/ path, replacing the previous content with client-side redirects. Additionally, it introduces a reusable ClientRedirect React component for handling these redirects and updates some internal documentation links for consistency.

Documentation refactoring and redirects:

  • Replaced the content of llm/langchain.mdx and llm/mcp.mdx with a <ClientRedirect> component that redirects to /docs/utilization/langchain and /docs/utilization/mcp, respectively, simplifying navigation and centralizing documentation. [1] [2]
  • Added a new ClientRedirect React component in components/internal/ClientRedirect.tsx to handle client-side redirects and display a message to users.

Internal link updates:

  • Updated the Swagger document link in llm/chat.mdx to use an external URL for clarity and consistency.
  • Changed internal documentation links in llm/http.mdx to reference the new /docs/utilization/ paths for MCP and Vercel AI SDK.

Minor formatting:

  • Added a newline at the end of _meta.ts for formatting consistency.

@samchon samchon self-assigned this Mar 19, 2026
@samchon samchon added the documentation Improvements or additions to documentation label Mar 19, 2026
@samchon samchon marked this pull request as ready for review March 19, 2026 07:15
Copilot AI review requested due to automatic review settings March 19, 2026 07:15
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR reorganizes the website documentation for LLM framework integrations by moving full guides under /docs/utilization/* and turning the previous /docs/llm/* pages into client-side redirects, while also updating a few related doc links and adding a reusable redirect component.

Changes:

  • Added new utilization guides for LangChain, MCP, and Vercel AI SDK under /docs/utilization/.
  • Replaced the existing /docs/llm/{langchain,mcp,vercel} pages with a ClientRedirect-based redirect to the new locations.
  • Updated several documentation passages/links for consistency (e.g., HttpLlm integration links, Swagger link).

Reviewed changes

Copilot reviewed 13 out of 13 changed files in this pull request and generated 23 comments.

Show a summary per file
File Description
website/src/content/docs/utilization/vercel.mdx New utilization guide page for Vercel AI SDK integration.
website/src/content/docs/utilization/mcp.mdx New utilization guide page for MCP integration.
website/src/content/docs/utilization/langchain.mdx New utilization guide page for LangChain integration.
website/src/content/docs/utilization/_meta.ts Adds navigation entries for the new utilization pages.
website/src/content/docs/llm/vercel.mdx Converts prior Vercel LLM doc page into a redirect to utilization.
website/src/content/docs/llm/mcp.mdx Converts prior MCP LLM doc page into a redirect to utilization.
website/src/content/docs/llm/langchain.mdx Converts prior LangChain LLM doc page into a redirect to utilization.
website/src/components/internal/ClientRedirect.tsx Introduces reusable client-side redirect component.
website/src/content/docs/llm/http.mdx Updates integration links to point at new utilization pages.
website/src/content/docs/llm/chat.mdx Updates Swagger link to external nestia.io docs URL.
website/src/content/docs/validators/tags.mdx Refines explanation text for why comment tags are supported.
website/src/content/docs/protobuf/message.mdx Refines explanation text for why comment tags are supported.
website/src/content/docs/_meta.ts Adds trailing newline (formatting consistency).

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

samchon and others added 14 commits March 19, 2026 16:38
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
@samchon samchon requested a review from Copilot March 19, 2026 08:14
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Refactors the website documentation to move LangChain, MCP, and Vercel AI SDK guides under /docs/utilization/, while keeping the previous /docs/llm/* routes working via client-side redirects.

Changes:

  • Added new utilization-case docs pages for LangChain, MCP, and Vercel AI SDK.
  • Replaced the old /docs/llm/{langchain,mcp,vercel} pages with a reusable ClientRedirect component.
  • Updated a few internal links for consistency and adjusted minor formatting.

Reviewed changes

Copilot reviewed 13 out of 13 changed files in this pull request and generated 5 comments.

Show a summary per file
File Description
website/src/components/internal/ClientRedirect.tsx New client component used to redirect legacy docs routes to new utilization paths.
website/src/content/docs/llm/langchain.mdx Replaced page body with a redirect to /docs/utilization/langchain.
website/src/content/docs/llm/mcp.mdx Replaced page body with a redirect to /docs/utilization/mcp.
website/src/content/docs/llm/vercel.mdx Replaced page body with a redirect to /docs/utilization/vercel.
website/src/content/docs/utilization/langchain.mdx New LangChain utilization guide content.
website/src/content/docs/utilization/mcp.mdx New MCP utilization guide content.
website/src/content/docs/utilization/vercel.mdx New Vercel AI SDK utilization guide content.
website/src/content/docs/utilization/_meta.ts Adds nav entries for the new utilization pages.
website/src/content/docs/llm/http.mdx Updates links to point at new utilization pages.
website/src/content/docs/llm/chat.mdx Updates Swagger doc link to an external URL.
website/src/content/docs/validators/tags.mdx Revises wording in the “comment tags” warning callout.
website/src/content/docs/protobuf/message.mdx Revises wording in the “comment tags” warning callout.
website/src/content/docs/_meta.ts Adds trailing newline.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

samchon and others added 4 commits March 19, 2026 17:41
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
@samchon samchon merged commit c99421d into master Mar 19, 2026
4 checks passed
@samchon samchon deleted the doc/utilization-cases branch March 19, 2026 08:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

documentation Improvements or additions to documentation

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants