This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # X11 Forwarding Setup for VSCode Remote SSH | |
| This guide details how to configure X11 forwarding to enable GUI support when using VSCode Remote SSH. | |
| --- | |
| ## Steps | |
| ```powershell | |
| # 1. Install and Configure Xming on Windows |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import openai | |
| import time | |
| import streamlit as st | |
| from dotenv import load_dotenv | |
| # Load the environment variables from .env file | |
| load_dotenv() | |
| # Initialize the client | |
| client = openai.OpenAI() |