No Module named 'openai'
When running the latest update - 7 hours ago from writing - I see installation instructions have changed since last night :D
no more pip install -r requirements.txt but rather poetry install. Done all that and then when I come to run any type of promt I get the following
"PS D:\Development\SMOLAI\developer> poetry install Installing dependencies from lock file
No dependencies to install or update
Installing the current project: smol_dev (0.0.3)
PS D:\Development\SMOLAI\developer> python main.py a HTML/JS/CSS Tic Tac Toe Game
Traceback (most recent call last):
File "D:\Development\SMOLAI\developer\main.py", line 3, in
File "D:\Development\SMOLAI\developer\smol_dev_init_.py", line 1, in
Still a bit of a noob but im guessing the poetry install , allthough confirming that openai is installed doesnt find it.
Great fan. Thanks so much for wat you are doing.
You may need to prefix commands with poetry run
ie: poetry run python main.py --prompt "a test case"
or open a poetry shell to activate the environment
error got after running "poetry run py main.py "a test case""
==>
Traceback (most recent call last):
File "E:\SMOLAI\developer\main.py", line 3, in
pip show openai validates that openai is available on my system but shows the above error as well
please assists!!!
error got after running "poetry run python main_no_modal.py " "prompt.md" (in prompt.md I had written ' a HTML/JS/CSS Tic Tac Toe Game ' )
==>
hi its me, �🐣the smol develope🐣🐣! you said you wan
a HTML/JS/CSS Tic Tac Toe Game
Traceback (most recent call last):
File "C:\Users\Kiran\Desktop\chrome extension\developer\v0\main_no_modal.py", line 232, in
please help!
error got after running "poetry run py main.py "a test case""
==> Traceback (most recent call last): File "E:\SMOLAI\developer\main.py", line 3, in from smol_dev.prompts import plan, specify_file_paths, generate_code_sync File "E:\SMOLAI\developer\smol_dev__init__.py", line 1, in from smol_dev.prompts import * File "E:\SMOLAI\developer\smol_dev\prompts.py", line 7, in from openai_function_call import openai_function ModuleNotFoundError: No module named 'openai_function_call'
pip show openai validates that openai is available on my system but shows the above error as well
please assists!!!
error got after running "poetry run py main.py "a test case""
==> Traceback (most recent call last): File "E:\SMOLAI\developer\main.py", line 3, in from smol_dev.prompts import plan, specify_file_paths, generate_code_sync File "E:\SMOLAI\developer\smol_dev__init__.py", line 1, in from smol_dev.prompts import * File "E:\SMOLAI\developer\smol_dev\prompts.py", line 7, in from openai_function_call import openai_function ModuleNotFoundError: No module named 'openai_function_call'
pip show openai validates that openai is available on my system but shows the above error as well
please assists!!!
I am having the same issue - openai_function_call cannot be imported. I've installed everything via poetry. pip list shows openai_function_call on the list. I cannot import it via python interactive shell either.
Any hints? What temporarily worked for me was copying init.py file from openai_function_call directory to the main directory of smol-ai and renaming it to "openai_function_call.py".
I also received the same error "No module named 'openai_function_call" when first trying the project and resolved it.
NOTE: When we report bugs as a community, let's take the time to include the environment information to reproduce the bug, such as the name and version of the application, the version of the operating system, execution switches, etc. This aids in reproducing the error and understanding the specific circumstances. Otherwise, the messages may not be actionable.
Environment
- smol-ai/developer commit fd77b4e1ba8ee23f56e1d1a1c05948af9f016122
- Windows 11 Pro 21H2 Build 22000.2295
- i7-6800K CPU
- 128 GiB RAM
- NVIDIA GeForce 1080Ti GTX
- NVIDIA Graphics Driver 531.14
- NVIDIA CUDA Runtime 11.8
- NVIDIA CUDA Runtime 12.1
- Visual Studio Professional 2022 version 17.6.6
- Git Bash version 2.41.0.2 (https://gitforwindows.org/)
- pip 23.1.2 from C:\Python311\Lib\site-packages\pip (python 3.11)
Steps to Reproduce
- Right-click to launch the program "git-bash.exe" from the Windows GUI as an Administrator (Run as administrator)
-
mkdir -p ~/git -
cd ~/git -
git clone https://github.com/smol-ai/developer.git -
cd developer -
pip install poetry -
poetry install -
py main.py --prompt "Create a bash script that plays blackjack interactively with the user." - ERROR: No module named 'openai_function_call'
Steps to Resolve
-
poetry shell -
export OPENAI_API_KEY=sk-XXXXX# add your Open AI API key -
py main.py --prompt "Create a bash script that plays blackjack interactively with the user." - SUCCESS: file written to generated/blackjack.sh and generated/shared_deps.md
NOTE: I also used poetry run py main.py --prompt "Create a bash script that plays blackjack interactively with the user." successfully.