Qwen
Qwen2 Audio 7B Instruct
qwen/qwen2-audio-7b-instruct
Qwen2-Audio is the new series of Qwen large audio-language models. Qwen2-Audio is capable of accepting various audio signal inputs and performing audio analysis or direct textual responses with regard to speech instructions. We introduce two distinct audio interaction modes:
- voice chat: users can freely engage in voice interactions with Qwen2-Audio without text input;
- audio analysis: users could provide audio and text instructions for analysis during the interaction;
Community
Open Source
Context Window
131,072
Max Output Tokens
4,096
Using Qwen2 Audio 7B Instruct with Python API
Using Qwen2 Audio 7B Instruct with OpenAI compatible API
import openai
client = openai.Client(
api_key= '{your_api_key}',
base_url="https://api.model.box/v1",
)
response = client.chat.completions.create(
model="qwen/qwen2-audio-7b-instruct",
messages: [
{
role: 'user',
content:
'introduce your self',
},
]
)
print(response)