Skip to main content
137
results
Andrew Fletcher
Overview of the elements Set Up API Keys Obtain API keys for Pinecone and OpenAI. Store the keys securely. Consider using a credentials.py file (as mentioned in a previous response).   Install Required Libraries Install the necessary Python libraries, such as Pinecone's Python client (pinecone-client) and OpenAI's Python client (openai). pip install pinecone-client openai  Create a Language Model Chain Use OpenAI's language model (e.g., GPT-4) to understand and process...
Andrew Fletcher
The issue of over 300 simultaneous database connections in the context of AWS...
Andrew Fletcher
Finalising a deployment to Drupal 10 and reviewing the latest log...
Andrew Fletcher
The error message "Attempting to re-run cron while it is already running" in...
Andrew Fletcher
Lando is a development environment tool that makes it easier to set up and...
Andrew Fletcher
In Drupal Twig templates, you can set a variable like paragraph_parent to the parent entity of a paragraph using the paragraph.getParentEntity() method. This is a common approach when you want to access the parent entity (e.g., a node) that contains the paragraph.  Here's how you can do it: {# Get the parent entity (e.g., node) of the paragraph #} {% set paragraph_parent = paragraph.getParentEntity() %} {# Now you can access properties of the parent entity #} {{ paragraph_parent.title.value...
Andrew Fletcher
In the Drupal Status report, I'm seeing the following message Not set This...
Andrew Fletcher
Create a Lando setup running Drupal 10. The command you provided appears to be a...
Andrew Fletcher
In Drupal, the Watchdog module (or the logging system) is responsible for...
Andrew Fletcher
Update Drupal to 10.1.x and I'm receiving the following...
Andrew Fletcher
  Set up your server Begin by cleaning up your server environment.  Do this by updating Ubuntu’s package index: sudo apt update && sudo apt upgrade -y  Check if Python3 is already installed python --versionResponse Unknown option: -e usage: python3 [option] ... [-c cmd | -m mod | file | -] [arg] ... Try `python -h' for more information.Or python3 --versionResponse Python 3.8.10  Update Python If you want to update to the latest version sudo apt-get install python3...
Andrew Fletcher
By default the maximum file upload size is set to 2MB.  It is not a...
Andrew Fletcher
Twig error Twig\Error\SyntaxError: Unknown "filter" tag. in...
Andrew Fletcher
Post upgrading from Drupal 9.5.10 to Drupal 10.1.3, I was seeing the following...
Andrew Fletcher
To get Flysystem S3 ready for Drupal 10, I needed to apply the latest patch to...