Docker support please
Can we please add docker compose for this project... thanks
do you have the docker images for this project?
I hope the official can provide the docker image as soon as possible, as the environment configuration often has problems.
We are preparing it, and it should be released within a few days.
if 'OPENAI_API_KEY' in os.environ and 'OPENAI_MODEL_SERVER' in os.environ and 'OPENAI_MODEL' in os.environ and 'OPENAI_MODEL_MAX_TOKENS' in os.environ: model = os.getenv('OPENAI_MODEL') llm_cfg = { 'model': model, 'api_key': os.getenv('OPENAI_API_KEY'), 'model_server': os.getenv('OPENAI_MODEL_SERVER'), 'generate_cfg': { 'top_p': 0.8, 'max_input_tokens': int(os.getenv('OPENAI_MODEL_MAX_TOKENS')), 'max_retries': 20 }, } """