VoyagerXHF commited on
Commit
fc05dae
·
verified ·
1 Parent(s): 7dbcc03

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +3 -4
README.md CHANGED
@@ -4,7 +4,6 @@ license: apache-2.0
4
  license_link: https://huggingface.co/Qwen/Qwen3.5-27B/blob/main/LICENSE
5
  pipeline_tag: image-text-to-text
6
  ---
7
-
8
  # Qwen3.5-27B
9
 
10
  <img width="400px" src="https://qianwen-res.oss-accelerate.aliyuncs.com/logo_qwen3.5.png">
@@ -1066,7 +1065,7 @@ messages = [
1066
  }
1067
  ]
1068
 
1069
- response = client.chat.completions.create(
1070
  model="Qwen/Qwen3.5-27B",
1071
  messages=messages,
1072
  max_tokens=81920,
@@ -1111,7 +1110,7 @@ messages = [
1111
  #
1112
  # By default, `fps=2` and `do_sample_frames=True`.
1113
  # With `do_sample_frames=True`, you can customize the `fps` value to set your desired video sampling rate.
1114
- response = client.chat.completions.create(
1115
  model="Qwen/Qwen3.5-27B",
1116
  messages=messages,
1117
  max_tokens=81920,
@@ -1348,4 +1347,4 @@ If you find our work helpful, feel free to give us a cite.
1348
  year = {2026},
1349
  url = {https://qwen.ai/blog?id=qwen3.5}
1350
  }
1351
- ```
 
4
  license_link: https://huggingface.co/Qwen/Qwen3.5-27B/blob/main/LICENSE
5
  pipeline_tag: image-text-to-text
6
  ---
 
7
  # Qwen3.5-27B
8
 
9
  <img width="400px" src="https://qianwen-res.oss-accelerate.aliyuncs.com/logo_qwen3.5.png">
 
1065
  }
1066
  ]
1067
 
1068
+ chat_response = client.chat.completions.create(
1069
  model="Qwen/Qwen3.5-27B",
1070
  messages=messages,
1071
  max_tokens=81920,
 
1110
  #
1111
  # By default, `fps=2` and `do_sample_frames=True`.
1112
  # With `do_sample_frames=True`, you can customize the `fps` value to set your desired video sampling rate.
1113
+ chat_response = client.chat.completions.create(
1114
  model="Qwen/Qwen3.5-27B",
1115
  messages=messages,
1116
  max_tokens=81920,
 
1347
  year = {2026},
1348
  url = {https://qwen.ai/blog?id=qwen3.5}
1349
  }
1350
+ ```