Tests pin down chain ordering (including ties), BaseAdvisor stream behaviour, redaction order versus memory and logging, the tool loop, and how a refusal surfaces on calls, streams and over HTTP. Co-Authored-By: Claude Sonnet 5 <[email protected]> Claude-Session: https://claude.ai/code/session_01Ja4jkzrbQ4LQZBNrb5mkZE
12 lines
735 B
Plaintext
12 lines
735 B
Plaintext
# Where a refusal surfaces
|
|
|
|
an advisor that throws IllegalStateException("refused"), model calls counted afterwards
|
|
|
|
plain advisor, call failed while running it with IllegalStateException: refused
|
|
plain advisor, stream, throws eagerly failed while running it with IllegalStateException: refused
|
|
plain advisor, stream, error inside Flux.defer failed while running it with IllegalStateException: refused
|
|
BaseAdvisor.before, call failed while running it with IllegalStateException: refused
|
|
BaseAdvisor.before, stream failed while running it with IllegalStateException: Stream processing failed (cause: IllegalStateException: refused)
|
|
|
|
model calls: 0
|