First, ensure you have Python 3.8+ installed. Then, install the required dependencies:
pip install -r requirements.txtCreate a .env file in the root directory of the project with the necessary environment variables. Example:
BASE_URL=http://localhost:8000
WATSONX_API_KEY=your_api_keyTo start the FastAPI server, use the following command:
uvicorn main:app --reloadThis will run the application locally and make it accessible at http://127.0.0.1:8000.
This simplified README covers the basic setup your team needs to get started quickly.