我想使用openai.embeddings_utils import get_embeddings
所以已经安装了openai
Name: openai
Version: 0.26.5
Summary: Python client library for the OpenAI API
Home-page: https://github.com/openai/openai-python
Author: OpenAI
Author-email: support@openai.com
License:
Location: /Users/lima/Desktop/Paprika/Openai/.venv/lib/python3.9/site-packages
Requires: aiohttp, requests, tqdm
Required-by:
这是我的openai但是为什么不使用openai.embeddings_utils??
2条答案
按热度按时间imzjd6km1#
首先运行此命令
pip install openai[embeddings]
。然后导入
embeddings_utils
包,如下所示:from openai.embeddings_utils import get_embedding
您可以在这里找到详细信息:https://github.com/openai/openai-python
plicqrtu2#
您只需要安装
pip install openai
,然后在Python脚本中编写以下内容:看看我过去的答案,它会对你有帮助。