Skip to content

Commit

Permalink
Mention Azure OpenAI in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
whimo committed Oct 25, 2024
1 parent d229ec2 commit 19837e7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/source/choosing_llms.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ That's why we have an ``init_llm`` function to help you set up the LLM.
llm = init_llm(
llm_framework=LLMFramework.LANGCHAIN,
llm_provider=LLMProvider.ANTHROPIC,
llm_name="claude-3-5-sonnet-20240620",
llm_name="claude-3-5-sonnet-latest",
llm_temperature=0
)
agent = ReActToolCallingMotleyAgent(llm=llm, tools=[...])
Expand All @@ -49,6 +49,7 @@ The currently supported LLM providers (:py:class:`motleycrew.common.enums.LLMPro
- :py:class:`Together <motleycrew.common.enums.LLMProvider.TOGETHER>`
- :py:class:`Replicate <motleycrew.common.enums.LLMProvider.REPLICATE>`
- :py:class:`Ollama <motleycrew.common.enums.LLMProvider.OLLAMA>`
- :py:class:`Azure OpenAI <motleycrew.common.enums.LLMProvider.AZURE_OPENAI>`

Please raise an issue if you need to add support for another LLM provider.

Expand Down

0 comments on commit 19837e7

Please sign in to comment.