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 flash/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ Running matrix multiplication on Runpod GPU...
Creating endpoint: flash-quickstart
Provisioning Serverless endpoint...
Endpoint ready
Executing function on RunPod endpoint ID: xvf32dan8rcilp
Executing function on Runpod endpoint ID: xvf32dan8rcilp
Initial job status: IN_QUEUE
Job completed, output received

Expand Down
2 changes: 1 addition & 1 deletion flash/troubleshooting.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ async def process(data: dict) -> dict:

**Error:**
```
No RunPod API key found. Set one with:
No Runpod API key found. Set one with:

flash login # interactive setup
or
Expand Down
8 changes: 4 additions & 4 deletions public-endpoints/ai-coding-tools.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -50,30 +50,30 @@ OpenCode supports multiple provider configurations, so you can set up both Runpo
"provider": {
"runpod-gpt": {
"npm": "@ai-sdk/openai-compatible",
"name": "RunPod GPT OSS 120B",
"name": "Runpod GPT OSS 120B",
"options": {
"baseURL": "https://api.runpod.ai/v2/gpt-oss-120b/openai/v1",
"apiKey": "{env:RUNPOD_API_KEY}"
},
"models": {
"gpt-oss-120b": {
"id": "openai/gpt-oss-120b",
"name": "GPT OSS 120B (RunPod)",
"name": "GPT OSS 120B (Runpod)",
"limit": { "context": 131072, "output": 4096 }
}
}
},
"runpod-qwen": {
"npm": "@ai-sdk/openai-compatible",
"name": "RunPod Qwen3",
"name": "Runpod Qwen3",
"options": {
"baseURL": "https://api.runpod.ai/v2/qwen3-32b-awq/openai/v1",
"apiKey": "{env:RUNPOD_API_KEY}"
},
"models": {
"qwen3-32b": {
"id": "Qwen/Qwen3-32B-AWQ",
"name": "Qwen3 32B AWQ (RunPod)",
"name": "Qwen3 32B AWQ (Runpod)",
"limit": { "context": 32768, "output": 4096 }
}
}
Expand Down
4 changes: 2 additions & 2 deletions tutorials/flash/image-generation-with-sdxl.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ This may take 1-2 minutes on first run (downloading model)...
Creating endpoint: server_Endpoint_a1b2c3d4
Provisioning Serverless endpoint...
Endpoint ready
Executing function on RunPod endpoint ID: xvf32dan8rcilp
Executing function on Runpod endpoint ID: xvf32dan8rcilp
Initial job status: IN_QUEUE
Downloading model weights from Hugging Face...
Model loaded, generating image...
Expand All @@ -335,7 +335,7 @@ Device: cuda
Generating image with Stable Diffusion XL on Runpod GPU...

Resource Endpoint_a1b2c3d4 already exists, reusing.
Executing function on RunPod endpoint ID: xvf32dan8rcilp
Executing function on Runpod endpoint ID: xvf32dan8rcilp
Initial job status: IN_QUEUE
Job completed, output received
✓ Image saved to generated_images/sdxl_output.png
Expand Down
8 changes: 4 additions & 4 deletions tutorials/flash/text-generation-with-transformers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,8 @@ Starting text generation on Runpod GPU...
Creating endpoint: server_Endpoint_a1b2c3d4
Provisioning Serverless endpoint...
Endpoint ready
Registering RunPod endpoint at https://api.runpod.ai/xvf32dan8rcilp
Executing function on RunPod endpoint ID: xvf32dan8rcilp
Registering Runpod endpoint at https://api.runpod.ai/xvf32dan8rcilp
Executing function on Runpod endpoint ID: xvf32dan8rcilp
Initial job status: IN_QUEUE
Installing dependencies: transformers torch accelerate
Downloading model weights...
Expand Down Expand Up @@ -279,8 +279,8 @@ Max length: 100 tokens
```text
Starting text generation on Runpod GPU...
Resource Endpoint_a1b2c3d4 already exists, reusing.
Registering RunPod endpoint at https://api.runpod.ai/xvf32dan8rcilp
Executing function on RunPod endpoint ID: xvf32dan8rcilp
Registering Runpod endpoint at https://api.runpod.ai/xvf32dan8rcilp
Executing function on Runpod endpoint ID: xvf32dan8rcilp
Initial job status: IN_QUEUE
Job completed, output received

Expand Down
Loading