### Configuring API Connection in NeuroSync Player (Python) Source: https://github.com/animavr/neurosync_player/blob/main/README.md This snippet illustrates how to switch between the local and alpha APIs for the NeuroSync Player by modifying a boolean configuration value within the `neurosync_api_connect.py` file. Setting `USE_LOCAL_API` to `True` directs the player to a locally hosted NeuroSync API, while setting it to `False` (or using an alternative flag like `USE_ALPHA_API = False`) connects to the alpha API. This allows users to control their preferred model hosting environment. ```Python # utils/neurosync/neurosync_api_connect.py # Set to True to use the local NeuroSync API, False to use the alpha API. USE_LOCAL_API = True # Or, if using an alpha API flag: # USE_ALPHA_API = False ``` -------------------------------- ### Listing Python Project Dependencies Source: https://github.com/animavr/neurosync_player/blob/main/requirements.txt This snippet specifies the exact versions of Python packages required for the project. It's typically used in a `requirements.txt` file to ensure all developers and deployment environments use the same library versions, preventing compatibility issues. Each line lists a package name followed by `==` and its version. ```Python pygame==2.6.1 keyboard==0.13.5 timecode==1.4.1 pandas==2.2.3 requests==2.32.3 PyAudio==0.2.14 soundfile==0.13.1 pydub==0.25.1 scipy==1.15.2 openai==1.75.0 ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.