with client.chat.stream(
model="kf-reasoning-10b",
system="You are a BFSI compliance assistant. Be concise and cite regulations.",
messages=[{"role": "user", "content": "What is Form 60?"}],
) as stream:
for chunk in stream:
print(chunk.delta, end="", flush=True)