Skip to content

Commit 28ed3c1

Browse files
committed
docs(examples): update usage scenarios with correct repository URLs and improvements
- Replace placeholder 'yourusername' URLs with actual repository path - Update GitHub Actions and Docker examples with correct repository references - Add installation reference link for Simon Willison's LLM CLI - Improve documentation accuracy and usability - All provider references and commands remain accurate with current codebase
1 parent e512234 commit 28ed3c1

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

examples/usage-scenarios.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This document provides real-world examples of how to use the LLM Environment Man
1111
# Check what providers you have configured
1212
llm-env list
1313

14-
# Start with free tier for light tasks
14+
# Start with an OpenRouter free tier for light tasks
1515
llm-env set openrouter2 # DeepSeek free model
1616

1717
# Verify setup
@@ -115,7 +115,7 @@ jobs:
115115

116116
- name: Setup LLM Environment
117117
run: |
118-
curl -o llm-env https://raw.githubusercontent.com/yourusername/llm-env/main/llm-env
118+
curl -o llm-env https://raw.githubusercontent.com/samestrin/llm-env/main/llm-env
119119
chmod +x llm-env
120120
echo 'llm-env() { source ./llm-env "$@"; }' >> ~/.bashrc
121121
source ~/.bashrc
@@ -134,7 +134,7 @@ jobs:
134134
FROM ubuntu:22.04
135135

136136
# Install LLM Environment Manager
137-
RUN curl -o /usr/local/bin/llm-env https://raw.githubusercontent.com/yourusername/llm-env/main/llm-env && \
137+
RUN curl -o /usr/local/bin/llm-env https://raw.githubusercontent.com/samestrin/llm-env/main/llm-env && \
138138
chmod +x /usr/local/bin/llm-env
139139

140140
# Add to shell profile
@@ -235,7 +235,8 @@ llm-env unset
235235

236236
### With Simon Willison's LLM CLI
237237
```bash
238-
# Install llm if you haven't
238+
# Install llm if you haven't already
239+
# See: https://llm.datasette.io/en/stable/setup.html
239240
pip install llm
240241

241242
# Use with different providers
@@ -335,4 +336,4 @@ llm-env list
335336

336337
# Check specific key
337338
echo "Cerebras key: ${LLM_CEREBRAS_API_KEY:0:10}..."
338-
```
339+
```

0 commit comments

Comments
 (0)