OpenGVLab/MMBench-GUI
Preview
•
Updated
•
23
Computer Vision
from HelpingAI import HAI # pip install HelpingAI==1.1.1
from rich import print
hai = HAI(api_key="hl-***********************")
response = hai.chat.completions.create(
model="Dhanishtha-2.0-preview",
messages=[{"role": "user", "content": "What is the value of ∫0∞𝑥3/𝑥−1𝑑𝑥 ?"}],
stream=True,
hide_think=False # Hide or show models thinking
)
for chunk in response:
print(chunk.choices[0].delta.content, end="", flush=True)