Files
sglang/examples/quick_start/srt_example_yi_vl.py

71 lines
1.5 KiB
Python
Raw Normal View History

2024-02-01 08:33:22 -08:00
"""
Usage: python3 srt_example_yi_vl.py
2024-05-21 09:13:37 -07:00
Requirements: transformers==4.38
2024-02-01 08:33:22 -08:00
"""
2024-07-18 04:55:39 +10:00
2024-02-01 08:33:22 -08:00
import sglang as sgl
@sgl.function
def image_qa(s, image_path, question):
s += sgl.user(sgl.image(image_path) + question)
s += sgl.assistant(sgl.gen("answer"))
def single():
state = image_qa.run(
image_path="images/cat.jpeg",
question="What is this?",
max_new_tokens=64,
2024-07-18 04:55:39 +10:00
stop="###",
)
2024-02-01 08:33:22 -08:00
print(state["answer"], "\n")
def stream():
state = image_qa.run(
image_path="images/cat.jpeg",
question="What is this?",
max_new_tokens=64,
stream=True,
2024-07-18 04:55:39 +10:00
stop="###",
)
2024-02-01 08:33:22 -08:00
for out in state.text_iter("answer"):
print(out, end="", flush=True)
print()
def batch():
states = image_qa.run_batch(
[
2024-07-18 04:55:39 +10:00
{"image_path": "images/cat.jpeg", "question": "What is this?"},
{"image_path": "images/dog.jpeg", "question": "What is this?"},
2024-02-01 08:33:22 -08:00
],
max_new_tokens=64,
2024-07-18 04:55:39 +10:00
stop="###",
2024-02-01 08:33:22 -08:00
)
for s in states:
print(s["answer"], "\n")
if __name__ == "__main__":
2024-02-01 22:44:05 +00:00
runtime = sgl.Runtime(model_path="BabyChou/Yi-VL-6B")
# runtime = sgl.Runtime(model_path="BabyChou/Yi-VL-34B")
2024-02-01 08:33:22 -08:00
sgl.set_default_backend(runtime)
# Run a single request
print("\n========== single ==========\n")
single()
# Stream output
print("\n========== stream ==========\n")
stream()
# Run a batch of requests
print("\n========== batch ==========\n")
batch()
2024-02-01 22:44:05 +00:00
runtime.shutdown()