You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/arc-api-docs/extensions/loopback4-llm-chat-extension/README.md
+112Lines changed: 112 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -492,6 +492,118 @@ export class AddTool implements IGraphTool {
492
492
}
493
493
```
494
494
495
+
# Observability
496
+
497
+
## With Langsmith
498
+
499
+
You can enable langsmith observability by simply adding the Langsmith env variables. Refer [this](https://docs.langchain.com/langsmith/observability-quickstart) for more details.
500
+
501
+
## With Langfuse
502
+
503
+
You can enable Langfuse based tracing with the following steps -
504
+
505
+
- install the following packages -
506
+
507
+
```sh
508
+
npm i @langfuse/core @langfuse/langchain @langfuse/otel
509
+
```
510
+
511
+
- adding the following component in your LB4 application -
0 commit comments