Skip to content

Commit 64a8429

Browse files
authored
refs(py): add langchain-model-profiles (#1273)
1 parent 87821c6 commit 64a8429

File tree

7 files changed

+41
-6
lines changed

7 files changed

+41
-6
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
title: Model profiles
3+
---
4+
5+
# :simple-wikidata:{ .lg .middle } `langchain-model-profiles`
6+
7+
[![PyPI - Version](https://img.shields.io/pypi/v/langchain-model-profiles?label=%20)](https://pypi.org/project/langchain-model-profiles/#history)
8+
[![PyPI - License](https://img.shields.io/pypi/l/langchain-model-profiles)](https://opensource.org/licenses/MIT)
9+
[![PyPI - Downloads](https://img.shields.io/pepy/dt/langchain-model-profiles)](https://pypistats.org/packages/langchain-model-profiles)
10+
11+
Reference documentation for the [`langchain-model-profiles`](https://pypi.org/project/langchain-model-profiles/) package.
12+
13+
!!! danger "Beta package"
14+
15+
This package is currently in development and the API is subject to change.
16+
17+
::: langchain_model_profiles

reference/python/docs/langsmith/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,25 @@ Welcome to the LangSmith reference documentation!
1010

1111
<div class="grid cards" markdown>
1212

13-
- __Observability & Evaluation__
13+
- :material-eye-outline:{ .lg .middle } __Observability & Evaluation__
1414

1515
---
1616

1717
[:octicons-arrow-right-24: Reference](./observability/sdk/index.md)
1818

19-
- __Deployment__
19+
- :material-upload:{ .lg .middle } __Deployment__
2020

2121
---
2222

2323
[:octicons-arrow-right-24: Reference](./deployment/sdk.md)
2424

25-
- __Remote Graph__
25+
- :material-router-wireless:{ .lg .middle } __Remote Graph__
2626

2727
---
2828

2929
[:octicons-arrow-right-24: Reference](./deployment/remote_graph.md)
3030

31-
- __LangSmith REST API__
31+
- :material-api:{ .lg .middle } __LangSmith REST API__
3232

3333
---
3434

reference/python/mkdocs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -376,6 +376,8 @@ nav:
376376
- Overview: langchain_text_splitters/index.md
377377
- langchain-mcp-adapters:
378378
- Overview: langchain_mcp_adapters/index.md
379+
- langchain-model-profiles:
380+
- Overview: langchain_model_profiles/index.md
379381
- langchain-tests:
380382
- langchain_tests/index.md
381383
- Unit tests:

reference/python/pyproject.dev.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ dependencies = [
3333
"langchain",
3434
"langchain-classic",
3535
"langchain-tests",
36+
"langchain-model-profiles",
3637
"langchain-text-splitters",
3738
"langchain-anthropic",
3839
"langchain-chroma",
@@ -128,6 +129,7 @@ langchain-core = { path = "../../../langchain/libs/core", editable = true }
128129
langchain = { path = "../../../langchain/libs/langchain_v1", editable = true }
129130
langchain-classic = { path = "../../../langchain/libs/langchain", editable = true }
130131
langchain-tests = { path = "../../../langchain/libs/standard-tests", editable = true }
132+
langchain-model-profiles = { path = "../../../langchain/libs/model-profiles", editable = true }
131133
langchain-text-splitters = { path = "../../../langchain/libs/text-splitters", editable = true }
132134

133135
### Partners

reference/python/pyproject.prod.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ dependencies = [
3333
"langchain",
3434
"langchain-classic",
3535
"langchain-tests",
36+
"langchain-model-profiles",
3637
"langchain-text-splitters",
3738
"langchain-anthropic",
3839
"langchain-chroma",
@@ -114,6 +115,7 @@ langchain-core = { git = "https://github.com/langchain-ai/langchain.git", subdir
114115
langchain = { git = "https://github.com/langchain-ai/langchain.git", subdirectory = "libs/langchain_v1" }
115116
langchain-classic = { git = "https://github.com/langchain-ai/langchain.git", subdirectory = "libs/langchain" }
116117
langchain-tests = { git = "https://github.com/langchain-ai/langchain.git", subdirectory = "libs/standard-tests" }
118+
langchain-model-profiles = { git = "https://github.com/langchain-ai/langchain.git", subdirectory = "libs/model-profiles" }
117119
langchain-text-splitters = { git = "https://github.com/langchain-ai/langchain.git", subdirectory = "libs/text-splitters" }
118120

119121
### Partners

reference/python/pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ dependencies = [
3333
"langchain",
3434
"langchain-classic",
3535
"langchain-tests",
36+
"langchain-model-profiles",
3637
"langchain-text-splitters",
3738
"langchain-anthropic",
3839
"langchain-chroma",
@@ -114,6 +115,7 @@ langchain-core = { git = "https://github.com/langchain-ai/langchain.git", subdir
114115
langchain = { git = "https://github.com/langchain-ai/langchain.git", subdirectory = "libs/langchain_v1" }
115116
langchain-classic = { git = "https://github.com/langchain-ai/langchain.git", subdirectory = "libs/langchain" }
116117
langchain-tests = { git = "https://github.com/langchain-ai/langchain.git", subdirectory = "libs/standard-tests" }
118+
langchain-model-profiles = { git = "https://github.com/langchain-ai/langchain.git", subdirectory = "libs/model-profiles" }
117119
langchain-text-splitters = { git = "https://github.com/langchain-ai/langchain.git", subdirectory = "libs/text-splitters" }
118120

119121
### Partners

reference/python/uv.lock

Lines changed: 12 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)