-
Notifications
You must be signed in to change notification settings - Fork 15.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs:
integrations/providers/
update (#14315)
- added missed provider files (from `integrations/Callbacks` - updated notebooks: added links; updated into consistent formats
- Loading branch information
Showing
13 changed files
with
163 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Context | ||
|
||
>[Context](https://context.ai/) provides user analytics for LLM-powered products and features. | ||
## Installation and Setup | ||
|
||
We need to install the `context-python` Python package: | ||
|
||
```bash | ||
pip install context-python | ||
``` | ||
|
||
|
||
## Callbacks | ||
|
||
See a [usage example](/docs/integrations/callbacks/context). | ||
|
||
```python | ||
from langchain.callbacks import ContextCallbackHandler | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Label Studio | ||
|
||
|
||
>[Label Studio](https://labelstud.io/guide/get_started) is an open-source data labeling platform that provides LangChain with flexibility when it comes to labeling data for fine-tuning large language models (LLMs). It also enables the preparation of custom training data and the collection and evaluation of responses through human feedback. | ||
## Installation and Setup | ||
|
||
See the [Label Studio installation guide](https://labelstud.io/guide/install) for installation options. | ||
|
||
We need to install the `label-studio` and `label-studio-sdk-python` Python packages: | ||
|
||
```bash | ||
pip install label-studio label-studio-sdk | ||
``` | ||
|
||
|
||
## Callbacks | ||
|
||
See a [usage example](/docs/integrations/callbacks/labelstudio). | ||
|
||
```python | ||
from langchain.callbacks import LabelStudioCallbackHandler | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# LLMonitor | ||
|
||
>[LLMonitor](https://llmonitor.com?utm_source=langchain&utm_medium=py&utm_campaign=docs) is an open-source observability platform that provides cost and usage analytics, user tracking, tracing and evaluation tools. | ||
## Installation and Setup | ||
|
||
Create an account on [llmonitor.com](https://llmonitor.com?utm_source=langchain&utm_medium=py&utm_campaign=docs), then copy your new app's `tracking id`. | ||
|
||
Once you have it, set it as an environment variable by running: | ||
|
||
```bash | ||
export LLMONITOR_APP_ID="..." | ||
``` | ||
|
||
|
||
## Callbacks | ||
|
||
See a [usage example](/docs/integrations/callbacks/llmonitor). | ||
|
||
```python | ||
from langchain.callbacks import LLMonitorCallbackHandler | ||
``` |
Oops, something went wrong.