microsoft / JARVIS

JARVIS, a system to connect LLMs with ML community. Paper: https://arxiv.org/pdf/2303.17580.pdf
MIT License
23.58k stars 1.96k forks source link

where is configs/config.default.yaml? #188

Open bolongliu opened 1 year ago

bolongliu commented 1 year ago

python models_server.py --config configs/config.default.yaml # required when inference_mode is local or hybrid python awesome_chat.py --config configs/config.default.yaml --mode server # for text-davinci-003

The repo have not such configs dir and config.default.yaml files.

CVC2233 commented 1 year ago

The configs folder is located in the server directory of the project. The config.default.yaml is the default configuration file, while the config.lite.yaml is the configuration file used for lightweight deployment.

bolongliu commented 1 year ago

The configs folder is located in the server directory of the project. The config.default.yaml is the default configuration file, while the config.lite.yaml is the configuration file used for lightweight deployment.

Thank you.