Skip to content

Commit

Permalink
docs: add tracing documentation
Browse files Browse the repository at this point in the history
Apply suggestions from code review

Co-authored-by: Adam Dąbrowski <adam.dabrowski@robotec.ai>

docs: rewrite tracing.md (prioritize open source solution), fix misleading info
  • Loading branch information
maciejmajek committed Sep 30, 2024
1 parent 07659f2 commit 3282d76
Show file tree
Hide file tree
Showing 3 changed files with 70 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ The RAI framework aims to:
- [x] Integration with LangChain to abstract vendors and access convenient AI tools.
- [x] Tasks in natural language to nav2 goals.
- [x] NoMaD integration.
- [x] Tracing.
- [ ] Grounded SAM 2 integration.
- [ ] Improved Human-Robot Interaction with voice and text.
- [ ] SDK for RAI developers.
Expand Down
1 change: 1 addition & 0 deletions docs/developer_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ agent.invoke({"messages": ["Please pick up an object and scan it."]})

Additional resources:

- [Tracing](tracing.md) configuration for genAI models and agents.
- [Beta demos](demos.md).
- [Multimodal Messages](multimodal_messages.md) definition.
- Available ROS 2 packages: [ros packages](ros_packages.md).
Expand Down
68 changes: 68 additions & 0 deletions docs/tracing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
# Tracing Configuration

RAI supports tracing capabilities to help monitor and analyze the performance of your AI models, at a minor performance cost. By default, tracing is off. This document outlines how to configure tracing for your RAI project.

## Configuration

Tracing configuration is managed through the `config.toml` file. The relevant parameters for tracing are:

### Project Name

The `project` field under the `[tracing]` section sets the name for your tracing project. This name will be used to identify your project in the tracing tools.

> [!NOTE]
> Project name is currently only used by LangSmith. Langfuse will upload traces to the default project.
### Langfuse (open-source)

[Langfuse](https://langfuse.com/) is an open-source observability & analytics platform for LLM applications.

To enable Langfuse tracing:

1. Set `use_langfuse = true` in the `config.toml` file.
2. Set the `LANGFUSE_PUBLIC_KEY` and `LANGFUSE_SECRET_KEY` environment variables with your Langfuse credentials.
3. Optionally, you can specify a custom Langfuse host by modifying the `host` field under `[tracing.langfuse]`.

### LangSmith (closed-source, paid)

[LangSmith](https://www.langchain.com/langsmith) is a platform for debugging, testing, and monitoring LangChain applications.

To enable LangSmith tracing:

1. Set `use_langsmith = true` in the `config.toml` file.
2. Set the `LANGCHAIN_API_KEY` environment variable with your LangSmith API key.

## Usage

To enable tracing in your RAI application, you need to import the get_tracing_callbacks() function and add it to the configuration when invoking your agent or model. Here's how to do it:

1. First, import the get_tracing_callbacks() function:

```python
from rai.utils.model_initialization import get_tracing_callbacks
```

2. Then, add it to the configuration when invoking your agent or model:

```python
response = agent.invoke(
input_dict,
config={"callbacks": get_tracing_callbacks()}
)
```

By adding the get_tracing_callbacks() to the config parameter, you enable tracing for that specific invocation. The get_tracing_callbacks() function returns a list of callback handlers based on your configuration in config.toml.

## Troubleshooting

If you encounter issues with tracing:

1. Ensure all required environment variables are set correctly.
2. Check whether tracing is on by checking whether `use_langsmith` or `use_langfuse` flag is set to `true` in `config.toml`.
3. Verify that you have the necessary permissions and valid API keys for the tracing services you're using.
4. Look for any error messages in your application logs related to tracing initialization.

For more detailed information on using these tracing tools, refer to their respective documentation:

- [LangSmith Documentation](https://docs.langchain.com/docs/langsmith)
- [Langfuse Documentation](https://langfuse.com/docs)

0 comments on commit 3282d76

Please sign in to comment.