Skip to content
Skip to Content
Test Components

Component Test Page

This page tests all the new MDX components.


Callout Component

Info Callout

Warning Callout

Error Callout

Success Callout

Callout Without Title


LinkCard & CardGrid Components

Two Column Grid

Three Column Grid


Existing Components from @rbee/ui

CodeSnippet

curl -sSL https://install.rbee.dev  | sh

TerminalWindow

Installation

$ curl -sSL https://install.rbee.dev  | sh Downloading rbee v0.1.0… ✓ Installation complete $ rbee —version rbee 0.1.0

Badge

Default Secondary Destructive

Separator

Above the separator

Below the separator


CodeTabs Component

Multi-Language Example

python
from openai import OpenAI
client = OpenAI(
base_url="http://localhost:7833/openai",
api_key="not-needed"
)
response = client.chat.completions.create(
model="llama-3-8b",
messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)

APIParameterTable Component

Example API Parameters

ParameterTypeRequiredDefaultDescription
modelstringRequiredModel ID to use for inference (e.g., "llama-3-8b")
promptstringRequiredInput text prompt for the model
temperaturefloatOptional0.7Sampling temperature (0.0-2.0). Higher values make output more random.
max_tokensintegerOptional100Maximum number of tokens to generate
top_pfloatOptional0.9Nucleus sampling parameter (0.0-1.0)
streambooleanOptionalfalseEnable streaming response via SSE

Test Complete

All 5 components are working! ✅

  • ✅ Callout (4 variants)
  • ✅ LinkCard + CardGrid
  • ✅ CodeTabs (with syntax highlighting + copy)
  • ✅ APIParameterTable (with search)
2025 © rbee. Your private AI cloud, in one command.
GitHubrbee.dev