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
1. **Windows WSL2**: Ensure NVIDIA drivers are updated and WSL2 has GPU support
535
+
```powershell
536
+
wsl --update
537
+
nvidia-smi # Should work in WSL2
538
+
```
539
+
540
+
2. **Docker Desktop**: Enable GPU support in Settings → Resources → WSL Integration
541
+
542
+
3. **No GPU available**: Application will gracefully fall back to CPU
543
+
- OpenAI Agents SDK works fine without GPU
544
+
- GPU primarily benefits local model inference (if used)
545
+
546
+
4. **Disable GPU reservation**: Comment out the `deploy.resources.reservations` section in `docker-compose.yml`:
547
+
```yaml
548
+
# deploy:
549
+
# resources:
550
+
# reservations:
551
+
# devices:
552
+
# - driver: nvidia
553
+
# capabilities: [gpu]
554
+
# count: all
555
+
```
556
+
557
+
### GPU Usage Notes
558
+
559
+
- **Optional**: GPU support is not required for the OpenAI Agents SDK
560
+
- **Graceful Degradation**: Application automatically uses CPU if GPU unavailable
561
+
- **Performance**: Benefits local model inference and training (if implemented)
562
+
- **Resource Limits**: Production container has memory/CPU limits; adjust as needed
563
+
564
+
---
565
+
566
+
## Terminal Shell Integration
567
+
568
+
VS Code terminal shell integration provides enhanced terminal features including command navigation, decorations, IntelliSense, and debugging capabilities.
569
+
570
+
### Features
571
+
572
+
- **Command Navigation**: Navigate commands with Ctrl/Cmd+Up/Down
573
+
- **Command Decorations**: Visual success/failure indicators with exit codes
574
+
- **Quick Fixes**: Automatic suggestions for common errors (git, ports, etc.)
575
+
- **IntelliSense**: Context-aware completions for files, commands, and arguments
576
+
- **Run Recent Command**: Quick access to history (Ctrl+Alt+R)
577
+
- **Go to Recent Directory**: Quick cd navigation (Ctrl+G)
578
+
- **Sticky Scroll**: Shows current command at viewport top
579
+
- **Enhanced Accessibility**: Command navigation in accessible buffer, audio cues
580
+
581
+
### Configuration Status
582
+
583
+
Shell integration is **enabled** via `.vscode/settings.json`:
0 commit comments