From dd97fad5a42329cd5100ac77bb759b7eaffba478 Mon Sep 17 00:00:00 2001 From: Dhravya Shah Date: Thu, 21 Dec 2023 22:26:40 -0700 Subject: [PATCH] Fix: indents in yaml file (#1046) --- docs/integration/streamlit-mistral.mdx | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/integration/streamlit-mistral.mdx b/docs/integration/streamlit-mistral.mdx index 8d6cbf95..c07ef1c8 100644 --- a/docs/integration/streamlit-mistral.mdx +++ b/docs/integration/streamlit-mistral.mdx @@ -85,22 +85,22 @@ pip install embedchain streamlit ```yaml app: - config: - name: 'mistral-streamlit-app' + config: + name: 'mistral-streamlit-app' llm: - provider: huggingface - config: - model: 'mistralai/Mixtral-8x7B-Instruct-v0.1' - temperature: 0.1 - max_tokens: 250 - top_p: 0.1 - stream: true + provider: huggingface + config: + model: 'mistralai/Mixtral-8x7B-Instruct-v0.1' + temperature: 0.1 + max_tokens: 250 + top_p: 0.1 + stream: true embedder: - provider: huggingface - config: - model: 'sentence-transformers/all-mpnet-base-v2' + provider: huggingface + config: + model: 'sentence-transformers/all-mpnet-base-v2' ```