DeepResearch icon indicating copy to clipboard operation
DeepResearch copied to clipboard

Docker support please

Open arsaboo opened this issue 4 months ago • 4 comments

Can we please add docker compose for this project... thanks

arsaboo avatar Sep 17 '25 00:09 arsaboo

do you have the docker images for this project?

Yejinzeng avatar Sep 17 '25 08:09 Yejinzeng

I hope the official can provide the docker image as soon as possible, as the environment configuration often has problems.

mx597014232 avatar Sep 17 '25 08:09 mx597014232

We are preparing it, and it should be released within a few days.

likuanppd avatar Sep 17 '25 19:09 likuanppd

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 }, } """

mariaholland avatar Sep 19 '25 15:09 mariaholland