File size: 647 Bytes
9d5790d
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
"""Model adapters for the Nori multi-policy inference server.

Adapter protocol (duck-typed; see base.py for the reference docstring):

    load()                                    heavy imports + weights; called once
                                              in a background thread
    act(images, state, instruction,
        num_steps, extras) -> (actions, dict) one action CHUNK, robot scale
    meta() -> dict                            {kind, chunk_hz, horizon, dof,
                                              cameras, max_images, source, ...}
    point(image, query, max_new_tokens)       OPTIONAL — pointing-capable VLMs only
"""