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