| import requests |
| import json |
| |
| # 填写你的API密钥 |
| api_key = 'your_api_key' |
| |
| # 填写你要调用的API的URL |
| api_url = 'https://api.ai.baidu.com/gensim/api/v1/gensim/text/generate' |
| |
| # 填写哀求参数 |
| params = { |
| 'text': 'Hello, world!', # 要生成的文本 |
| 'n_sentences': 1, # 生成句子的数目 |
| 'n_words': 50, # 每个句子的单词数目 |
| 'embedding_dim': 300, # 嵌入向量的维度 |
| 'model_name': 'ERNIE2.0', # 使用的模子名称 |
| } |
| |
| # 发送GET哀求 |
| response = requests.get(api_url, params=params, headers={'Authorization': api_key}) |
| |
| # 剖析响应JSON数据 |
| data = json.loads(response.text) |
| |
| # 提取生成的文本 |
| generated_text = data['data'] |
| print(generated_text) |
请留意,这只是一个简单的示例代码,详细的哀求参数和响应数据布局可能会根据所使用的API而有所差别。你需要参考百度文心一言的官方文档,相识更多关于API的使用方法和数据布局的信息。