Hide keyboard shortcuts

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 

2 

3""" 

4Tools for interacting with LLAMA servers in non-SSH-based ways, e.g. websites 

5etc. 

6""" 

7 

8from llama.serve import ( 

9 gui, 

10 jupyter, 

11) 

12 

13__all__ = [ 

14 'gui', 

15]