Skip to content

Commit 1137508

Browse files
committed
doc update
1 parent 5cb2e5c commit 1137508

2 files changed

Lines changed: 25 additions & 0 deletions

File tree

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,18 @@ While originally designed for software development, PatchPal is also a general-p
129129
2. PatchPal includes a [unique guardrails system](https://amaiya.github.io/patchpal/safety/) that is better suited to privacy-conscious use cases involving sensitive data.
130130
3. We needed an agent harness that seamlessly works with [both local and cloud models](https://amaiya.github.io/patchpal/models/overview/#supported-models), including AWS GovCloud Bedrock models.
131131

132+
> On Windows Subsystem for Linux (WSL), why is it stalling intermittently at "Thinking..."?
133+
134+
This is a [known issue](https://github.com/microsoft/WSL/issues/6264#issuecomment-762154193) with WSL2.
135+
136+
Try examining and then lowering the `mtu`:
137+
138+
```bash
139+
$ cat /sys/class/net/eth1/mtu
140+
1427
141+
142+
$ sudo ip link set eth1 mtu 1400
143+
```
132144

133145
## Documentation
134146

docs/index.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,16 @@ While originally designed for software development, PatchPal is also a general-
4444
1. Most agent harnesses are in TypeScript. We wanted [something in Python](https://amaiya.github.io/patchpal/usage/python-api/) that we could easily extend for our custom workflows.
4545
2. PatchPal includes a [unique guardrails system](https://amaiya.github.io/patchpal/safety/) that is better suited to privacy-conscious use cases involving sensitive data.
4646
3. We needed an agent harness that seamlessly works with [both local and cloud models](https://amaiya.github.io/patchpal/models/overview/ #supported-models), including AWS GovCloud Bedrock models.
47+
48+
> On Windows Subsystem for Linux (WSL), why is it stalling intermittently at "Thinking..."?
49+
50+
This is a [known issue](https://github.com/microsoft/WSL/issues/6264#issuecomment-762154193) with WSL2.
51+
52+
Try examining and then lowering the `mtu`:
53+
54+
```bash
55+
$ cat /sys/class/net/eth1/mtu
56+
1427
57+
58+
$ sudo ip link set eth1 mtu 1400
59+
```

0 commit comments

Comments
 (0)