Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 683 Bytes

File metadata and controls

37 lines (27 loc) · 683 Bytes

Echo Provider Smoke Test

This example proves the CLI, settings, session memory, usage tracking, and trace writer can run without a model API key.

uv sync --dev
TINY_CLAW_PROVIDER=echo TINY_CLAW_STATE_DIR=.tmp-state uv run tiny-claw health
TINY_CLAW_PROVIDER=echo TINY_CLAW_STATE_DIR=.tmp-state uv run tiny-claw run --mode think "hello tiny claw"

Expected health output:

status=ok
provider=echo
tools=read
state_dir=.tmp-state

The final CLI response should include:

hello tiny claw

Inspect generated local state:

find .tmp-state -maxdepth 4 -type f | sort

Remove local state when you are done:

rm -rf .tmp-state