Monitor and test the capabilities of OpenAI models with Python (Part 2: streamlit GUI)

In a previous article, the process of retrieving OpenAI models and their capabilities using Python was demonstrated. In this post, the same functionality will be extended by creating a web interface using Streamlit, allowing users to interact with OpenAI models via their browser. The web app will list available OpenAI models, perform basic tests, and … Read more

Monitor and test the capabilities of OpenAI models with Python (Part 1: command line)

For developers in the field of artificial intelligence, verifying the accuracy of AI models is crucial. This blog introduces a Python script designed to automatically check the capabilities of OpenAI models directly from the command line. Objective of the Script The script interfaces with the OpenAI API to fetch all available GPT models, tests each … Read more

Building a Stock Chart Display Application with Flask and Python

This post describes deploying a Flask-based application on a Linux system (Ubuntu, in this case) to display stock charts using Python. The simplicity of Flask makes it an ideal choice for DevOps engineers looking to leverage Python for web projects. Prerequisites Step 1: Setting Up Your Environment First, ensure you have Python and pip installed … Read more

[Python] Terraform install (AI generated)

This the python version of the bash script discussed in a previous post The script is designed to automate the installation and update process of Terraform (binary).What does the script do: Below Bash Code will install or update Terraform (File: install_terraform.sh) This is AI generated code (based on sample input of the previous terraform.sh bash … Read more

[Bash] Terraform install

To make sure the latest version of terraform is used when applying IaC code (mostly on a local Linux terminal) this bash script comes in handy ! The script is designed to automate the installation and update process of Terraform (binary).What does the script do: Below Bash Code will install or update Terraform (File: install_terraform.sh) … Read more

Deploying Azure Storage with Bicep and GitHub Actions (part 1)

In this blog post, it is shown how to deploy an Azure Storage account using Bicep, a declarative language for describing and deploying Azure resources, and GitHub Actions, a CI/CD solution that’s directly integrated into GitHub. The Bicep File Our Bicep file, main.bicep, starts by defining a few parameters: The Bicep file then defines a … Read more