From 3fa0e0e61c5ea12f406c60407bc7b79481d9fe66 Mon Sep 17 00:00:00 2001 From: shaoyijia Date: Thu, 18 Jul 2024 11:23:26 +0800 Subject: [PATCH] Add a line break to readme.md. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 806c5411..dae8b41a 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,8 @@ openai_kwargs = { 'top_p': 0.9, } # STORM is a LM system so different components can be powered by different models to reach a good balance between cost and quality. -# For a good practice, choose a cheaper/faster model for `conv_simulator_lm` which is used to split queries, synthesize answers in the conversation. Choose a more powerful model for `article_gen_lm` to generate verifiable text with citations. +# For a good practice, choose a cheaper/faster model for `conv_simulator_lm` which is used to split queries, synthesize answers in the conversation. +# Choose a more powerful model for `article_gen_lm` to generate verifiable text with citations. gpt_35 = OpenAIModel(model='gpt-3.5-turbo', max_tokens=500, **openai_kwargs) gpt_4 = OpenAIModel(model='gpt-4-o', max_tokens=3000, **openai_kwargs) lm_configs.set_conv_simulator_lm(gpt_35)