We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca44965 commit 0692ef4Copy full SHA for 0692ef4
examples/models/llama/runner/eager.py
@@ -80,7 +80,7 @@ def build_args_parser() -> argparse.ArgumentParser:
80
def execute_runner(runner_class: Type[LlamaRunner]) -> None:
81
parser = build_args_parser()
82
args = parser.parse_args()
83
- runner = runner_class(args)
+ runner = runner_class(args) # pyre-ignore: Missing argument [20]
84
generated_tokens = (
85
runner.chat_completion(temperature=args.temperature)
86
if args.chat
0 commit comments