Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1# (c) Stefan Countryman, 2019
3"""
4Control LLAMA server processes (for example: interactive status website).
5"""
7from llama.cli import RecursiveCli
9# THESE ARE FUNCTIONS; the names are valid
10# pylint: disable=invalid-name
11cli = RecursiveCli.from_module('llama.serve', description=__doc__)
12main = cli.main # pylint: disable=invalid-name
13# pylint: disable=invalid-name
14get_parser = cli.get_parser
17if __name__ == '__main__':
18 main()