[PR #1075] [MERGED] integrations cleanup #1270

Closed
opened 2026-02-17 17:22:03 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/docs/pull/1075
Author: @lnhsingh
Created: 10/21/2025
Status: Merged
Merged: 10/21/2025
Merged by: @lnhsingh

Base: mainHead: cleanup


📝 Commits (1)

📊 Changes

96 files changed (+1245 additions, -1018 deletions)

View changed files

📝 src/oss/javascript/integrations/chat/anthropic.mdx (+11 -16)
📝 src/oss/javascript/integrations/chat/arcjet.mdx (+21 -16)
📝 src/oss/javascript/integrations/chat/azure.mdx (+20 -15)
📝 src/oss/javascript/integrations/chat/bedrock.mdx (+20 -16)
📝 src/oss/javascript/integrations/chat/bedrock_converse.mdx (+10 -8)
📝 src/oss/javascript/integrations/chat/cerebras.mdx (+10 -9)
📝 src/oss/javascript/integrations/chat/cloudflare_workersai.mdx (+10 -8)
📝 src/oss/javascript/integrations/chat/cohere.mdx (+10 -9)
📝 src/oss/javascript/integrations/chat/deepseek.mdx (+10 -7)
📝 src/oss/javascript/integrations/chat/fireworks.mdx (+10 -9)
📝 src/oss/javascript/integrations/chat/google_generative_ai.mdx (+11 -15)
📝 src/oss/javascript/integrations/chat/google_vertex_ai.mdx (+21 -11)
📝 src/oss/javascript/integrations/chat/groq.mdx (+10 -9)
📝 src/oss/javascript/integrations/chat/ibm.mdx (+10 -8)
📝 src/oss/javascript/integrations/chat/mistral.mdx (+10 -8)
📝 src/oss/javascript/integrations/chat/novita.mdx (+10 -7)
📝 src/oss/javascript/integrations/chat/ollama.mdx (+10 -8)
📝 src/oss/javascript/integrations/chat/openai.mdx (+13 -16)
📝 src/oss/javascript/integrations/chat/perplexity.mdx (+10 -8)
📝 src/oss/javascript/integrations/chat/togetherai.mdx (+10 -8)

...and 76 more files

📄 Description

Overview

Ported Brody's changes from https://github.com/langchain-ai/docs/pull/415 over:

This tooltip was removed (the callout linked to a page that's in the old docs but not the new docs, and didn't seem critical to me to have right now):

import IntegrationInstallTooltip from '/snippets/javascript-integrations/integration-install-tooltip.mdx';

<IntegrationInstallTooltip/>

Installation code blocks like this didn't migrate so well:

<Npm2Yarn>
  @arcjet/redact
</Npm2Yarn>

For now, I've replaced these with code groups (below is just an example, each code group is different based on the library getting installed)

<CodeGroup>
```bash npm
npm install @arcjet/redact
yarn add @arcjet/redact
pnpm add @arcjet/redact
```

Removed {=mdx} tags

This snippet shows up in several places:

<ChatModelTabs customVarName="llm" />

So I removed

Type of change

Type: Fix

Checklist

  • I have read the contributing guidelines
  • I have tested my changes locally using docs dev
  • All code examples have been tested and work correctly
  • I have used root relative paths for internal links
  • I have updated navigation in src/docs.json if needed
  • I have gotten approval from the relevant reviewers

Additional notes


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langchain-ai/docs/pull/1075 **Author:** [@lnhsingh](https://github.com/lnhsingh) **Created:** 10/21/2025 **Status:** ✅ Merged **Merged:** 10/21/2025 **Merged by:** [@lnhsingh](https://github.com/lnhsingh) **Base:** `main` ← **Head:** `cleanup` --- ### 📝 Commits (1) - [`38db8a5`](https://github.com/langchain-ai/docs/commit/38db8a510ac1feefbf6e553a803598f0d0549918) integrations cleanup ### 📊 Changes **96 files changed** (+1245 additions, -1018 deletions) <details> <summary>View changed files</summary> 📝 `src/oss/javascript/integrations/chat/anthropic.mdx` (+11 -16) 📝 `src/oss/javascript/integrations/chat/arcjet.mdx` (+21 -16) 📝 `src/oss/javascript/integrations/chat/azure.mdx` (+20 -15) 📝 `src/oss/javascript/integrations/chat/bedrock.mdx` (+20 -16) 📝 `src/oss/javascript/integrations/chat/bedrock_converse.mdx` (+10 -8) 📝 `src/oss/javascript/integrations/chat/cerebras.mdx` (+10 -9) 📝 `src/oss/javascript/integrations/chat/cloudflare_workersai.mdx` (+10 -8) 📝 `src/oss/javascript/integrations/chat/cohere.mdx` (+10 -9) 📝 `src/oss/javascript/integrations/chat/deepseek.mdx` (+10 -7) 📝 `src/oss/javascript/integrations/chat/fireworks.mdx` (+10 -9) 📝 `src/oss/javascript/integrations/chat/google_generative_ai.mdx` (+11 -15) 📝 `src/oss/javascript/integrations/chat/google_vertex_ai.mdx` (+21 -11) 📝 `src/oss/javascript/integrations/chat/groq.mdx` (+10 -9) 📝 `src/oss/javascript/integrations/chat/ibm.mdx` (+10 -8) 📝 `src/oss/javascript/integrations/chat/mistral.mdx` (+10 -8) 📝 `src/oss/javascript/integrations/chat/novita.mdx` (+10 -7) 📝 `src/oss/javascript/integrations/chat/ollama.mdx` (+10 -8) 📝 `src/oss/javascript/integrations/chat/openai.mdx` (+13 -16) 📝 `src/oss/javascript/integrations/chat/perplexity.mdx` (+10 -8) 📝 `src/oss/javascript/integrations/chat/togetherai.mdx` (+10 -8) _...and 76 more files_ </details> ### 📄 Description ## Overview Ported Brody's changes from https://github.com/langchain-ai/docs/pull/415 over: This tooltip was removed (the callout linked to a page that's in the old docs but not the new docs, and didn't seem critical to me to have right now): ``` import IntegrationInstallTooltip from '/snippets/javascript-integrations/integration-install-tooltip.mdx'; <IntegrationInstallTooltip/> ``` Installation code blocks like this didn't migrate so well: ``` <Npm2Yarn> @arcjet/redact </Npm2Yarn> ``` For now, I've replaced these with code groups (below is just an example, each code group is different based on the library getting installed) ``` <CodeGroup> ```bash npm npm install @arcjet/redact ``` ```bash yarn yarn add @arcjet/redact ``` ```bash pnpm pnpm add @arcjet/redact ``` </CodeGroup> ``` Removed {=mdx} tags This snippet shows up in several places: `<ChatModelTabs customVarName="llm" />` So I removed ## Type of change **Type:** Fix ## Checklist <!-- Put an 'x' in all boxes that apply --> - [x] I have read the [contributing guidelines](README.md) - [x] I have tested my changes locally using `docs dev` - [x] All code examples have been tested and work correctly - [x] I have used **root relative** paths for internal links - [x] I have updated navigation in `src/docs.json` if needed - I have gotten approval from the relevant reviewers ## Additional notes <!-- Any other information that would be helpful for reviewers --> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-17 17:22:03 -05:00
yindo closed this issue 2026-02-17 17:22:03 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/docs#1270