#!/bin/bash # Configure bash error handling set -euo pipefail # Configuration API_HOST="localhost" API_PORT="8000" API_VERSION="v1" BASE_URL="http://${API_HOST}:${API_PORT}/api/${API_VERSION}" # Function to generate test embedding data generate_test_embedding() { python3 - <