Quick learn: -Getting Started Building Generative AI Using HuggingFace Open Source Models And Langchain – part 1

Short weekly tech update video (31:05 minutes).This week:langchain_huggingface, a partner package in LangChain jointly maintained by Hugging Face and LangChain. This new Python package is designed to bring the power of the latest development of Hugging Face into LangChain and keep it up to date. langchain-huggingface integrates seamlessly with LangChain, providing an efficient and effective … Read more

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