IT评测·应用市场-qidao123.com

标题: AIGC(生成式AI)试用 21 -- Python调用deepseek API [打印本页]

作者: 万万哇    时间: 2025-3-9 22:38
标题: AIGC(生成式AI)试用 21 -- Python调用deepseek API
1. 安装openai
  1. pip3 install openai
  2. ##########################
  3. Collecting openai
  4.   Using cached openai-1.61.1-py3-none-any.whl.metadata (27 kB)
  5. Collecting anyio<5,>=3.5.0 (from openai)
  6.   Using cached anyio-4.8.0-py3-none-any.whl.metadata (4.6 kB)
  7. Collecting distro<2,>=1.7.0 (from openai)
  8.   Using cached distro-1.9.0-py3-none-any.whl.metadata (6.8 kB)
  9. Collecting httpx<1,>=0.23.0 (from openai)
  10.   Using cached httpx-0.28.1-py3-none-any.whl.metadata (7.1 kB)
  11. Collecting jiter<1,>=0.4.0 (from openai)
  12.   Using cached jiter-0.8.2-cp313-cp313-win_amd64.whl.metadata (5.3 kB)
  13. Collecting pydantic<3,>=1.9.0 (from openai)
  14.   Using cached pydantic-2.10.6-py3-none-any.whl.metadata (30 kB)
  15. Collecting sniffio (from openai)
  16.   Using cached sniffio-1.3.1-py3-none-any.whl.metadata (3.9 kB)
  17. Collecting tqdm>4 (from openai)
  18.   Using cached tqdm-4.67.1-py3-none-any.whl.metadata (57 kB)
  19. Collecting typing-extensions<5,>=4.11 (from openai)
  20.   Using cached typing_extensions-4.12.2-py3-none-any.whl.metadata (3.0 kB)
  21. Collecting idna>=2.8 (from anyio<5,>=3.5.0->openai)
  22.   Using cached idna-3.10-py3-none-any.whl.metadata (10 kB)
  23. Collecting certifi (from httpx<1,>=0.23.0->openai)
  24.   Using cached certifi-2025.1.31-py3-none-any.whl.metadata (2.5 kB)
  25. Collecting httpcore==1.* (from httpx<1,>=0.23.0->openai)
  26.   Using cached httpcore-1.0.7-py3-none-any.whl.metadata (21 kB)
  27. Collecting h11<0.15,>=0.13 (from httpcore==1.*->httpx<1,>=0.23.0->openai)
  28.   Using cached h11-0.14.0-py3-none-any.whl.metadata (8.2 kB)
  29. Collecting annotated-types>=0.6.0 (from pydantic<3,>=1.9.0->openai)
  30.   Using cached annotated_types-0.7.0-py3-none-any.whl.metadata (15 kB)
  31. Collecting pydantic-core==2.27.2 (from pydantic<3,>=1.9.0->openai)
  32.   Using cached pydantic_core-2.27.2-cp313-cp313-win_amd64.whl.metadata (6.7 kB)
  33. Collecting colorama (from tqdm>4->openai)
  34.   Using cached colorama-0.4.6-py2.py3-none-any.whl.metadata (17 kB)
  35. Using cached openai-1.61.1-py3-none-any.whl (463 kB)
  36. Using cached anyio-4.8.0-py3-none-any.whl (96 kB)
  37. Using cached distro-1.9.0-py3-none-any.whl (20 kB)
  38. Using cached httpx-0.28.1-py3-none-any.whl (73 kB)
  39. Using cached httpcore-1.0.7-py3-none-any.whl (78 kB)
  40. Using cached jiter-0.8.2-cp313-cp313-win_amd64.whl (203 kB)
  41. Using cached pydantic-2.10.6-py3-none-any.whl (431 kB)
  42. Downloading pydantic_core-2.27.2-cp313-cp313-win_amd64.whl (2.0 MB)
  43.    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.0/2.0 MB 11.9 kB/s eta 0:00:00
  44. Downloading sniffio-1.3.1-py3-none-any.whl (10 kB)
  45. Downloading tqdm-4.67.1-py3-none-any.whl (78 kB)
  46. Downloading typing_extensions-4.12.2-py3-none-any.whl (37 kB)
  47. Downloading annotated_types-0.7.0-py3-none-any.whl (13 kB)
  48. Downloading idna-3.10-py3-none-any.whl (70 kB)
  49. Downloading certifi-2025.1.31-py3-none-any.whl (166 kB)
  50. Downloading colorama-0.4.6-py2.py3-none-any.whl (25 kB)
  51. Downloading h11-0.14.0-py3-none-any.whl (58 kB)
  52. Installing collected packages: typing-extensions, sniffio, jiter, idna, h11, distro, colorama, certifi, annotated-types, tqdm, pydantic-core, httpcore, anyio, pydantic, httpx, openai
  53. Successfully installed annotated-types-0.7.0 anyio-4.8.0 certifi-2025.1.31 colorama-0.4.6 distro-1.9.0 h11-0.14.0 httpcore-1.0.7 httpx-0.28.1 idna-3.10 jiter-0.8.2 openai-1.61.1 pydantic-2.10.6 pydantic-core-2.27.2 sniffio-1.3.1 tqdm-4.67.1 typing-extensions-4.12.2
复制代码
2. First API Call
  1. from openai import OpenAI
  2. client = OpenAI(api_key="<DeepSeek API Key>", base_url="https://api.deepseek.com")
  3. response = client.chat.completions.create(
  4. model="deepseek-chat",
  5. messages=[
  6. {"role": "system", "content": "You are a helpful assistant"},
  7. {"role": "user", "content": "Hello"},
  8. ],
  9. stream=False
  10. )
  11. print(response.choices[0].message.content)
复制代码
3. Create API Key


4. 执行第一次API调用
  1. #####################################
  2.     raise self._make_status_error_from_response(err.response) from None
  3. openai.APIStatusError: Error code: 402 - {'error': {'message': 'Insufficient Balance', 'type': 'unknown_error', 'param': None, 'code': 'invalid_request_error'}}
  4. 402 - Insufficient Balance        Cause: You have run out of balance.
  5. Solution: Please check your account's balance, and go to the Top up page to add funds.
  6. ## 账户余额不足,请续费
复制代码
5. 问问 DeepSeek什么问题
  1. 中文回答:penai.APIStatusError: Error code: 402 - {'error': {'message': 'Insufficient Balance'
  2. openai.APIStatusError: Error code: 402 - {'error': {'message': 'Insufficient Balance'}} 这个错误表示你的 OpenAI 账户余额不足,无法完成当前的 API 请求。以下是解决此问题的步骤:
  3. 1. 检查账户余额
  4. 登录 OpenAI 平台(https://platform.openai.com)。
  5. 进入 Billing(账单)页面,查看当前账户余额。
  6. 如果余额为 0 或不足以支付当前请求,需要充值。
  7. 2. 设置支付方式
  8. 在 Billing 页面,确保你已经绑定了有效的支付方式(如信用卡)。
  9. 如果没有绑定支付方式,或者支付方式失效,OpenAI 会拒绝处理请求。
  10. 3. 检查 API 使用情况
  11. 在 Usage(使用情况)页面,查看你的 API 使用量和费用。
  12. 如果你使用的是按量付费(Pay-As-You-Go)模式,确保账户中有足够的余额来支付当前请求。
  13. 4. 充值或升级计划
  14. 如果余额不足,可以通过 OpenAI 的支付页面进行充值。
  15. 如果你需要更高的使用额度,可以考虑升级到更高级的订阅计划。
  16. 5. 联系 OpenAI 支持
  17. 如果你确认账户余额充足,但仍然遇到此错误,可能是系统问题。
  18. 联系 OpenAI 支持团队(https://help.openai.com),提供以下信息:
  19. 错误信息(包括错误代码 402)。
  20. 你的账户邮箱或 API Key(确保不泄露完整 Key)。
  21. 相关请求的详细信息。
  22. 6. 代码中处理错误
  23. 在你的代码中,可以捕获此错误并提示用户检查账户余额。例如:
  24. import openai
  25. try:
  26.     response = openai.Completion.create(
  27.         engine="davinci",
  28.         prompt="Translate the following English text to French: '{}'",
  29.         max_tokens=60
  30.     )
  31.     print(response.choices[0].text.strip())
  32. except openai.error.APIStatusError as e:
  33.     if e.code == 402:
  34.         print("错误:账户余额不足,请充值后再试。")
  35.     else:
  36.         print(f"API 请求失败: {e}")
  37. except Exception as e:
  38.     print(f"发生未知错误: {e}")
  39. 总结
  40. 错误代码 402 通常是由于账户余额不足或支付方式问题导致的。通过检查余额、绑定有效支付方式或充值,可以解决此问题。如果问题仍然存在,建议联系 OpenAI 支持团队获取进一步帮助。
复制代码
要钱。。。。。。那就等等,先用起来再加强。
参考:


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。




欢迎光临 IT评测·应用市场-qidao123.com (https://dis.qidao123.com/) Powered by Discuz! X3.4