llamameta's picture
Create QwQ.py
c2e7afc verified
raw
history blame contribute delete
272 Bytes
import gradio as gr
import spaces
import transformers_gradio
demo = gr.load(name="Qwen/QwQ-32B-Preview", src=transformers_gradio.registry)
demo.fn = spaces.GPU()(demo.fn)
for fn in demo.fns.values():
fn.api_name = False
if __name__ == "__main__":
demo.launch()