From 1619626a60ef35de2406f1614c56ef3db1107c47 Mon Sep 17 00:00:00 2001 From: Mark Sturdevant Date: Fri, 27 Mar 2026 16:36:52 -0700 Subject: [PATCH] fix: Add qualitative and slow markers so the example is skipped Add qualitative and slow markers so the example is skipped by default locally and in CI, consistent with other non-deterministic examples. Also added loop_budget parameter. More loop budget does not fix the problem for me (see issue #762 for fix), but this seems like a good place to show an example with loop_budget for folks that want to play with that. Part of: #684 Signed-off-by: Mark Sturdevant --- docs/examples/agents/react/react_using_mellea.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/examples/agents/react/react_using_mellea.py b/docs/examples/agents/react/react_using_mellea.py index b2a7ab589..e901b1201 100644 --- a/docs/examples/agents/react/react_using_mellea.py +++ b/docs/examples/agents/react/react_using_mellea.py @@ -1,4 +1,4 @@ -# pytest: ollama, llm +# pytest: ollama, llm, qualitative, slow """React examples using the Mellea library's framework.""" @@ -36,6 +36,7 @@ async def main(): context=ChatContext(), backend=m.backend, tools=[search_tool], + loop_budget=12, ) print(out)