From 19837e76c89f1e96707dbe2c334360682c47b890 Mon Sep 17 00:00:00 2001 From: whimo Date: Fri, 25 Oct 2024 12:33:30 +0300 Subject: [PATCH] Mention Azure OpenAI in docs --- docs/source/choosing_llms.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/source/choosing_llms.rst b/docs/source/choosing_llms.rst index 930d5b97..c749c61b 100644 --- a/docs/source/choosing_llms.rst +++ b/docs/source/choosing_llms.rst @@ -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=[...]) @@ -49,6 +49,7 @@ The currently supported LLM providers (:py:class:`motleycrew.common.enums.LLMPro - :py:class:`Together ` - :py:class:`Replicate ` - :py:class:`Ollama ` +- :py:class:`Azure OpenAI ` Please raise an issue if you need to add support for another LLM provider.