Advertisement
sosyamba

Untitled

Feb 7th, 2025
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. # Отправка POST-запроса
  2. response = requests.post(QWEN_URL, headers=QWEN_HEADERS, json=payload)
  3.  
  4. # Обработка ответа
  5. if response.status_code == 200:
  6. result = response.json()
  7. print("Ответ от нейросети:", result["choices"][0]["message"]["content"])
  8. else:
  9. print(f"Ошибка при отправке запроса: {response.status_code}")
  10. print("Текст ошибки:", response.text)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement