From 6f144f0768664917b1687d5db52e466c953fe97a Mon Sep 17 00:00:00 2001 From: Tony Kipkemboi Date: Wed, 30 Oct 2024 19:31:39 -0400 Subject: [PATCH] fix numbering --- docs/concepts/llms.mdx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/concepts/llms.mdx b/docs/concepts/llms.mdx index 1dd9682f29..835c2491fe 100644 --- a/docs/concepts/llms.mdx +++ b/docs/concepts/llms.mdx @@ -25,6 +25,12 @@ By default, CrewAI uses the `gpt-4o-mini` model. It uses environment variables i - `OPENAI_API_BASE` - `OPENAI_API_KEY` +### 2. Custom LLM Objects + +Pass a custom LLM implementation or object from another library. + +See below for examples. + ```python Code @@ -42,10 +48,6 @@ By default, CrewAI uses the `gpt-4o-mini` model. It uses environment variables i -### 3. Custom LLM Objects - -Pass a custom LLM implementation or object from another library. - ## Connecting to OpenAI-Compatible LLMs You can connect to OpenAI-compatible LLMs using either environment variables or by setting specific attributes on the LLM class: