Skip to content

Commit

Permalink
DemoApp: add more command invocation examples
Browse files Browse the repository at this point in the history
  • Loading branch information
bartekpacia committed Aug 28, 2024
1 parent 78c04a3 commit 2584b86
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions maestro-ai/src/main/java/maestro/ai/DemoApp.kt
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,21 @@ fun main(args: Array<String>) = DemoApp().main(args)
*
* ### Usage examples
*
* Run test for a single screenshot that contains defects (i.e. is bad):
*
* ```console
* maestro-ai-demo *.png
* maestro-ai-demo foo_1_bad.png
* ```
*
* Run tests for all screenshots from the Uber that contain defects (i.e. are bad). Additionally, show prompts and raw
* LLM response:
*
* ```console
* maestro-ai-demo foo_1_bad.png
* maestro-ai-demo \
* --model gpt-4o-2024-08-06 \
* --show-prompts \
* --show-raw-response \
* test-ai-fixtures/uber_*_bad.png
* ```
*
* ### Input format
Expand Down

0 comments on commit 2584b86

Please sign in to comment.