python 没有名为“openai.embeddings_utils”的模块;“openai”不是包

flvtvl50  于 2023-02-15  发布在  Python
关注(0)|答案(2)|浏览(483)

我想使用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??

imzjd6km

imzjd6km1#

首先运行此命令pip install openai[embeddings]
然后导入embeddings_utils包,如下所示:from openai.embeddings_utils import get_embedding
您可以在这里找到详细信息:https://github.com/openai/openai-python

plicqrtu

plicqrtu2#

您只需要安装pip install openai,然后在Python脚本中编写以下内容:

import openai
from openai.embeddings_utils import get_embedding

# The rest of your code

看看我过去的答案,它会对你有帮助。

相关问题