Skip to content

Commit c124ddd

Browse files
committed
Update README files to include installation instructions for ffmpeg and Java on the Coder platform
1 parent 74423d6 commit c124ddd

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed

implementations/multimedia_rag/README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,12 +89,22 @@ Two independent environments are required due to package conflicts between the R
8989

9090
---
9191

92+
> **On the Coder platform**, `ffmpeg` is already available. You can verify with:
93+
>
94+
> ```bash
95+
> ffmpeg -version
96+
> ```
97+
98+
<details>
99+
<summary>Not on Coder? Install ffmpeg manually</summary>
100+
92101
```bash
93-
# If ffmpeg is not installed, install it for video/audio processing
94102
sudo apt update
95103
sudo apt install ffmpeg
96104
```
97105
106+
</details>
107+
98108
Both the retrieval (RAG) and QA (inference) pipelines use the same dependency group. From the **root of the repository**:
99109

100110
```bash

implementations/xai_refresher/README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,13 +93,24 @@ are not reliably aligned with prediction sensitivity — especially in early lay
9393

9494
## Package Dependencies
9595

96-
The Concept Grounding notebook requires Java to be installed. On Linux, you can install it using:
96+
The Concept Grounding notebook requires Java to be installed.
97+
98+
> **On the Coder platform**, Java is already available. You can verify with:
99+
>
100+
> ```bash
101+
> java -version
102+
> ```
103+
104+
<details>
105+
<summary>Not on Coder? Install Java manually</summary>
97106
98107
```bash
99108
sudo apt update
100109
sudo apt install -y default-jre
101110
```
102111
112+
</details>
113+
103114
## Resources
104115

105116
For further reading on the methods covered in this module:

0 commit comments

Comments
 (0)