From d3eefdb7700d24dd401424f3d65e9548b3fbfd1e Mon Sep 17 00:00:00 2001 From: magmueller Date: Fri, 6 Dec 2024 17:12:01 +0100 Subject: [PATCH] Try example task update --- examples/try.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/try.py b/examples/try.py index 71c4008b2..aa6add1b3 100644 --- a/examples/try.py +++ b/examples/try.py @@ -30,7 +30,8 @@ def get_llm(provider: str): raise ValueError(f'Unsupported provider: {provider}') -task = 'go to https://ui.shadcn.com/examples/forms and fill out the form' +task = 'Show the solution of y"(z) + sin(y(z)) = 0 from wolframalpha https://www.wolframalpha.com/' + parser = argparse.ArgumentParser() parser.add_argument('--query', type=str, help='The query to process', default=task)