[PR #599] [MERGED] docs: add AI/ML API provider documentation #849

Closed
opened 2026-02-17 17:21:14 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/docs/pull/599
Author: @D1m7asis
Created: 9/19/2025
Status: Merged
Merged: 9/22/2025
Merged by: @lnhsingh

Base: mainHead: main


📝 Commits (5)

  • d987117 docs: add AI/ML API provider documentation
  • af9d918 Update src/oss/python/integrations/llms/aimlapi.mdx
  • 0110bdf Update src/oss/python/integrations/chat/aimlapi.mdx
  • 5c7e603 Update src/oss/python/integrations/text_embedding/aimlapi.mdx
  • cb63b4d Apply suggestions from code review

📊 Changes

8 files changed (+422 additions, -0 deletions)

View changed files

src/oss/python/integrations/chat/aimlapi.mdx (+136 -0)
📝 src/oss/python/integrations/chat/index.mdx (+9 -0)
src/oss/python/integrations/llms/aimlapi.mdx (+115 -0)
src/oss/python/integrations/providers/aimlapi.mdx (+46 -0)
📝 src/oss/python/integrations/providers/all_providers.mdx (+8 -0)
📝 src/oss/python/integrations/providers/index.mdx (+1 -0)
src/oss/python/integrations/text_embedding/aimlapi.mdx (+105 -0)
📝 src/oss/python/integrations/text_embedding/index.mdx (+2 -0)

📄 Description

Overview

Adds first-class documentation for the AI/ML API provider in the Python docs:

  • New provider page: src/oss/python/integrations/providers/aimlapi.mdx

  • New guides:

    • Chat: src/oss/python/integrations/chat/aimlapi.mdx
    • LLM (text): src/oss/python/integrations/llms/aimlapi.mdx
    • Embeddings: src/oss/python/integrations/text_embedding/aimlapi.mdx
  • Navigation updates in src/docs.json and index pages:

    • Providers index + “All providers”
    • Chat integrations index
    • Embeddings integrations index

Content includes: setup & install (pip install langchain-aimlapi), env var AIMLAPI_API_KEY, minimal usage examples, chaining, streaming, and links to API reference. UTM links added to aimlapi.com. Badges for PyPI downloads/version included where appropriate.

Type of change

Type: New documentation page

Related issues/PRs

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 PR mirrors the structure used by other provider docs (Anthropic, Fireworks, etc.) for consistency.
  • Per maintainer guidance, I will also open a follow-up PR to the new docs repo with the same changes so they remain visible after the migration.

🔄 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/599 **Author:** [@D1m7asis](https://github.com/D1m7asis) **Created:** 9/19/2025 **Status:** ✅ Merged **Merged:** 9/22/2025 **Merged by:** [@lnhsingh](https://github.com/lnhsingh) **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (5) - [`d987117`](https://github.com/langchain-ai/docs/commit/d987117316fc9f3c29899261819dbc5081eeb0c3) docs: add AI/ML API provider documentation - [`af9d918`](https://github.com/langchain-ai/docs/commit/af9d9181f51e78494f0c404ba1fdb498e38f40ac) Update src/oss/python/integrations/llms/aimlapi.mdx - [`0110bdf`](https://github.com/langchain-ai/docs/commit/0110bdf5cdbcc1122e43bc1640f9c4070d717db0) Update src/oss/python/integrations/chat/aimlapi.mdx - [`5c7e603`](https://github.com/langchain-ai/docs/commit/5c7e603d206dc68cf657eb00363ab3551706b319) Update src/oss/python/integrations/text_embedding/aimlapi.mdx - [`cb63b4d`](https://github.com/langchain-ai/docs/commit/cb63b4d5510fff1c6f75537bd1c323a3c064ddeb) Apply suggestions from code review ### 📊 Changes **8 files changed** (+422 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `src/oss/python/integrations/chat/aimlapi.mdx` (+136 -0) 📝 `src/oss/python/integrations/chat/index.mdx` (+9 -0) ➕ `src/oss/python/integrations/llms/aimlapi.mdx` (+115 -0) ➕ `src/oss/python/integrations/providers/aimlapi.mdx` (+46 -0) 📝 `src/oss/python/integrations/providers/all_providers.mdx` (+8 -0) 📝 `src/oss/python/integrations/providers/index.mdx` (+1 -0) ➕ `src/oss/python/integrations/text_embedding/aimlapi.mdx` (+105 -0) 📝 `src/oss/python/integrations/text_embedding/index.mdx` (+2 -0) </details> ### 📄 Description ## Overview Adds first-class documentation for the **AI/ML API** provider in the Python docs: * New provider page: `src/oss/python/integrations/providers/aimlapi.mdx` * New guides: * Chat: `src/oss/python/integrations/chat/aimlapi.mdx` * LLM (text): `src/oss/python/integrations/llms/aimlapi.mdx` * Embeddings: `src/oss/python/integrations/text_embedding/aimlapi.mdx` * Navigation updates in `src/docs.json` and index pages: * Providers index + “All providers” * Chat integrations index * Embeddings integrations index Content includes: setup & install (`pip install langchain-aimlapi`), env var `AIMLAPI_API_KEY`, minimal usage examples, chaining, streaming, and links to API reference. UTM links added to aimlapi.com. Badges for PyPI downloads/version included where appropriate. ## Type of change **Type:** New documentation page ## Related issues/PRs * Fixes #537 * See discussion in prior docs PR about the new docs site migration ## Checklist * [x] I have read the contributing guidelines * [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 * [x] I have gotten approval from the relevant reviewers ## Additional notes * This PR mirrors the structure used by other provider docs (Anthropic, Fireworks, etc.) for consistency. * Per maintainer guidance, I will also open a follow-up PR to the **new docs repo** with the same changes so they remain visible after the migration. --- <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:21:14 -05:00
yindo closed this issue 2026-02-17 17:21:14 -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#849