-
Notifications
You must be signed in to change notification settings - Fork 26
docs: add AI/ML API provider documentation #599
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Introduces documentation and guides for AI/ML API integration across chat, LLM, and embedding models in LangChain. Updates provider listings, feature tables, and navigation to include AI/ML API, with setup instructions and usage examples for each model type.
There was a problem hiding this 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 adds comprehensive documentation for the AI/ML API provider integration in the LangChain Python documentation. The documentation follows the established patterns used by other provider integrations like Anthropic and Fireworks.
- Adds complete provider documentation including setup, installation, and authentication
- Creates individual integration guides for chat models, LLMs, and embeddings
- Updates navigation and index pages to include the new AI/ML API provider
Reviewed Changes
Copilot reviewed 9 out of 9 changed files in this pull request and generated 2 comments.
Show a summary per file
File | Description |
---|---|
src/oss/python/integrations/providers/aimlapi.mdx |
New provider overview page with setup instructions and component links |
src/oss/python/integrations/chat/aimlapi.mdx |
Chat model integration guide with examples and API reference |
src/oss/python/integrations/llms/aimlapi.mdx |
LLM integration guide with streaming and chaining examples |
src/oss/python/integrations/text_embedding/aimlapi.mdx |
Embeddings integration guide with RAG examples |
src/oss/python/integrations/providers/index.mdx |
Adds AI/ML API entry to main providers table |
src/oss/python/integrations/providers/all_providers.mdx |
Adds AI/ML API card to all providers listing |
src/oss/python/integrations/chat/index.mdx |
Adds AI/ML API to chat models table and card grid |
src/oss/python/integrations/text_embedding/index.mdx |
Adds AI/ML API to embeddings table and card grid |
src/docs.json |
Adds navigation structure for AI/ML API documentation |
Co-authored-by: Copilot <[email protected]>
Co-authored-by: Copilot <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
Copilot reviewed 9 out of 9 changed files in this pull request and generated 1 comment.
Co-authored-by: Copilot <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
Copilot reviewed 9 out of 9 changed files in this pull request and generated no new comments.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
Copilot reviewed 8 out of 8 changed files in this pull request and generated no new comments.
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:
src/oss/python/integrations/chat/aimlapi.mdx
src/oss/python/integrations/llms/aimlapi.mdx
src/oss/python/integrations/text_embedding/aimlapi.mdx
Navigation updates in
src/docs.json
and index pages:Content includes: setup & install (
pip install langchain-aimlapi
), env varAIMLAPI_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
docs dev
src/docs.json
if neededAdditional notes