Closed floatingbigcat closed 7 months ago
Support neox with following changed:
Following demo code should work.
from robin.serve.pipeline import LlavaMistralPipeline pipe = LlavaMistralPipeline( model_path="agi-collective/pythia-410m-deduped-ViT-B-16-finetune-lora", model_base="EleutherAI/pythia-410m-deduped", ) messages = [ {"role": "USER", "content": "What's in the image?", "image": "https://llava-vl.github.io/static/images/view.jpg"}, ] messages = pipe(messages) print(messages)
Support neox with following changed:
Following demo code should work.