developer resources
Codebales holds an ever growing number of solutions to problems that we have experienced in our day to day code writing
Selected filter
29
results
Andrew Fletcher
•
The error message "RuntimeError: Directory 'static/' does not exist" typically indicates that your Python code is trying to access a directory named "static," but this directory doesn't exist in the current working directory or the specified path.
To resolve this issue, you can follow these steps:
Check the Directory
First, verify whether the "static" directory exists in the location specified in your code or the current working directory of your Python script. If it doesn't exist, you...
Andrew Fletcher
•
It seems like you're using the CharacterTextSplitter class from the tiktoken...
Andrew Fletcher
•
To use OpenAI to summarise text from a PDF using Python 3.11.6, you'll first...
Andrew Fletcher
•
The os.makedirs(directory_path) function in Python can be used with both...
Andrew Fletcher
•
You can move a file from one directory to another in Python using the shutil...
Andrew Fletcher
•
OpenAI request timeout?
Retrying langchain.chat_models.openai.ChatOpenAI.completion_with_retry.<locals>._completion_with_retry in 4.0 seconds as it raised ServiceUnavailableError: The server is overloaded or not ready yet..Try increasing the timeout parameter. For example,
llm = ChatOpenAI(temperature=0, model_name=model)Change to
llm = ChatOpenAI(temperature=0, model_name=model,...
Andrew Fletcher
•
Whilst installing Python 3.11.6 and running the command 'sudo make altinstall',...
Andrew Fletcher
•
Ubuntu 20.04 comes with Python 3.8 installed. If you run the update...
Andrew Fletcher
•
Changes to the Python3 package list post installing packages each of the...
Andrew Fletcher
•
Python3 error
None of PyTorch, TensorFlow >= 2.0, or Flax have been...
Andrew Fletcher
•
When running python openai command, I was greeted with
/usr/lib/python3/dist-packages/requests/__init__.py:89: RequestsDependencyWarning: urllib3 (1.25.8) or chardet (5.2.0) doesn't match a supported version!This is because of different requests module installed by the OS and the python dependencies for your local installation.
Package Version
----------------------- --------------------
chardet 5.2.0
urllib3 1.25.8Usually this issue can be solved...
Andrew Fletcher
•
Python3
Error
ImportError: cannot import name 'soft_unicode' from 'markupsafe'...
Andrew Fletcher
•
git clone git@bitbucket.org:{username}/{repo}.git
And I was unceremoniously...
Andrew Fletcher
•
Tailwind CSS is a highly customisable framework that delivers developers the...