From 8c0afbd8f2eb988358fbe6611d4dbe57d1213652 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanis=C5=82aw=20Szymczyk?= Date: Fri, 13 Dec 2024 14:55:45 +0100 Subject: [PATCH] Removed reference to OpenRouter. --- run_google.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_google.py b/run_google.py index 7fcd84f..ca6f1c2 100755 --- a/run_google.py +++ b/run_google.py @@ -13,7 +13,7 @@ DEFAULT_SYSTEM_PROMPT="You are a master of logical thinking. You carefully analyze the premises step by step, take detailed notes and draw intermediate conclusions based on which you can find the final answer to any question." parser = argparse.ArgumentParser() -parser.add_argument("-m", "--model", help="OpenRouter model name.", required=True) +parser.add_argument("-m", "--model", help="Model name.", required=True) parser.add_argument("-s", "--system-prompt", help="Use given system prompt. By default, the system prompt is not used. When this option is passed without a value, the default system prompt value is used: " + repr(DEFAULT_SYSTEM_PROMPT), const=DEFAULT_SYSTEM_PROMPT, default=None, nargs='?') args = parser.parse_args() model_name = args.model