12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- import requests
- import json
- def get_access_token():
- """
- 使用 API Key,Secret Key 获取access_token,替换下列示例中的应用API Key、应用Secret Key
- """
- url = "https://aip.baidubce.com/oauth/2.0/token?grant_type=client_credentials&client_id=gnwVXv96An9qMYqq9eWbeNqk&client_secret=mDsRQbCPsV4N7x28LbwkhTAaLmrrDnXk"
- payload = json.dumps("")
- headers = {
- 'Content-Type': 'application/json',
- 'Accept': 'application/json'
- }
- response = requests.request("POST", url, headers=headers, data=payload)
- return response.json().get("access_token")
- def main():
- # _token = get_access_token()
- _token = "24.93c9d66ffc94ffaef6c6c9d35770a5f5.2592000.1701242081.282335-37357318"
- url = "https://aip.baidubce.com/rpc/2.0/ai_custom/v1/wenxinworkshop/chat/completions?access_token=" + _token
- payload = json.dumps({
- "messages": [
- {
- "role": "user",
- "content": '''
- 假设分类是建筑建材-建筑涂料的相关产品词“面漆”
- 请拓展其相关行业产品词,列举30个
- '''
- }
- ]
- })
- headers = {
- 'Content-Type': 'application/json'
- }
- response = requests.request("POST", url, headers=headers, data=payload)
- print(response.text)
- def chat(message):
- _token = "24.93c9d66ffc94ffaef6c6c9d35770a5f5.2592000.1701242081.282335-37357318"
- url = "https://aip.baidubce.com/rpc/2.0/ai_custom/v1/wenxinworkshop/chat/completions?access_token=" + _token
- payload = json.dumps({
- "messages": [
- {
- "role": "user",
- "content": '''
- %s
- '''%message
- }
- ]
- })
- headers = {
- 'Content-Type': 'application/json'
- }
- response = requests.request("POST", url, headers=headers, data=payload)
- return response
- if __name__ == '__main__':
- main()
|