diff --git a/docs/concepts/llms.mdx b/docs/concepts/llms.mdx index 851e93085..261a1fdd8 100644 --- a/docs/concepts/llms.mdx +++ b/docs/concepts/llms.mdx @@ -243,6 +243,9 @@ There are three ways to configure LLMs in CrewAI. Choose the method that best fi # llm: bedrock/amazon.titan-text-express-v1 # llm: bedrock/meta.llama2-70b-chat-v1 + # Amazon SageMaker Models - Enterprise-grade + # llm: sagemaker/ + # Mistral Models - Open source alternative # llm: mistral/mistral-large-latest # llm: mistral/mistral-medium-latest @@ -506,6 +509,21 @@ Learn how to get the most out of your LLM configuration: ) ``` + + + ```python Code + AWS_ACCESS_KEY_ID= + AWS_SECRET_ACCESS_KEY= + AWS_DEFAULT_REGION= + ``` + + Example usage: + ```python Code + llm = LLM( + model="sagemaker/" + ) + ``` + ```python Code