Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ rlm = RLM(

The descriptions are automatically added to the system prompt:
```
6. Custom tools and data available in the REPL:
**Custom tools and data available in the REPL:**
- `fetch_weather`: Fetch current weather data for a city name
- `calculate_shipping`: Calculate shipping cost given weight (kg) and distance (km)
- `API_KEY`: API key for the weather service
Expand Down
2 changes: 1 addition & 1 deletion rlm/utils/prompts.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def build_rlm_system_prompt(
tools_formatted = format_tools_for_prompt(custom_tools)
if tools_formatted:
custom_tools_section = (
f"\n6. Custom tools and data available in the REPL:\n{tools_formatted}"
f"\n**Custom tools and data available in the REPL:**\n{tools_formatted}"
)
else:
custom_tools_section = ""
Expand Down