Advertisement
sosyamba

Untitled

Feb 7th, 2025
318
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. import requests
  2.  
  3. TOKEN = "Токен который мы получили на шаге 2"
  4.  
  5. QWEN_URL = "https://chat.qwenlm.ai/api/chat/completions"
  6. QWEN_HEADERS = {
  7. "Authorization": f"Bearer {TOKEN}",
  8. "Content-Type": "application/json",
  9. "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/237.84.2.178 Safari/537.36"
  10. }
  11.  
  12. messages = [
  13. {"role": "user", "content": "Привет!", "extra": {}, "chat_type": "t2t"},
  14. ]
  15.  
  16. payload = {
  17. "chat_type": "t2t",
  18. "messages": messages,
  19. "model": "qwen-max-latest",
  20. "stream": False
  21. }
  22.  
  23. response = requests.post(QWEN_URL, headers=QWEN_HEADERS, json=payload)
  24.  
  25. if response.status_code == 200:
  26. result = response.json()
  27. print("Ответ от нейросети:", result["choices"][0]["message"]["content"])
  28. else:
  29. print(f"Ошибка при отправке запроса: {response.status_code}")
  30. print("Текст ошибки:", response.text)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement