-
Notifications
You must be signed in to change notification settings - Fork 16k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: integrations W&B update (#28059)
Issue: Here is an ambiguity about W&B integrations. There are two existing provider pages. Fix: Added the "root" W&B provider page. Added there the references to the documentation in the W&B site. Cleaned up formats in existing pages. Added one more integration reference. --------- Co-authored-by: Erick Friis <[email protected]> Co-authored-by: Eugene Yurtsev <[email protected]>
- Loading branch information
1 parent
288f204
commit fc80061
Showing
3 changed files
with
103 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Weights & Biases | ||
|
||
>[Weights & Biases](https://wandb.ai/) is provider of the AI developer platform to train and | ||
> fine-tune AI models and develop AI applications. | ||
`Weights & Biase` products can be used to log metrics and artifacts during training, | ||
and to trace the execution of your code. | ||
|
||
There are several main ways to use `Weights & Biases` products within LangChain: | ||
- with `wandb_tracing_enabled` | ||
- with `Weave` lightweight toolkit | ||
- with `WandbCallbackHandler` (deprecated) | ||
|
||
|
||
## wandb_tracing_enabled | ||
|
||
See a [usage example](/docs/integrations/providers/wandb_tracing). | ||
|
||
See in the [W&B documentation](https://docs.wandb.ai/guides/integrations/langchain). | ||
|
||
```python | ||
from langchain_community.callbacks import wandb_tracing_enabled | ||
``` | ||
|
||
## Weave | ||
|
||
See in the [W&B documentation](https://weave-docs.wandb.ai/guides/integrations/langchain). | ||
|
||
|
||
## WandbCallbackHandler | ||
|
||
**Note:** the `WandbCallbackHandler` is being deprecated in favour of the `wandb_tracing_enabled`. | ||
|
||
See a [usage example](/docs/integrations/providers/wandb_tracking). | ||
|
||
See in the [W&B documentation](https://docs.wandb.ai/guides/integrations/langchain). | ||
|
||
```python | ||
from langchain_community.callbacks import WandbCallbackHandler | ||
``` | ||
|
||
|
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