Eric Zhu
Eric Zhu
Specifically what is the issue? Can you copy and paste the error? On Mon, Mar 27, 2023 at 6:26 AM Gerardo Garcia ***@***.***> wrote: > > https://python.langchain.com/en/latest/modules/chains/index_examples/summarize.html > This link...
This following code works for me: ```python from langchain.chat_models import AzureChatOpenAI from langchain.text_splitter import CharacterTextSplitter from langchain.schema import HumanMessage llm = AzureChatOpenAI( deployment_name="gpt-35-turbo", temperature=0, openai_api_version="2023-03-15-preview", ) text_splitter = CharacterTextSplitter() print(llm([HumanMessage(content="Tell...
See this doc: https://python.langchain.com/en/latest/modules/models/chat/integrations/azure_chat_openai.html
> @ekzhu this was working for me Monday, but this morning, I see this issue using gpt-35-turbo, due to the same naming discrepancy between AOAI and OpenAI.... looks like Langchain...
> Ah I see - so when initializing the AzureChatOpenAI in langchain - I should set deployment_name to match AOAI deployment name, but model_name to match OpenAI model naming (with...
I think it makes sense to allow `config` to be modified externally from the agent. You might want to take a look at `experimental` branch as we are working toward...
cc @BeibinLi
Thank you @hardchor ! This is very helpful.
Thanks @marklysze for the update. The test result is very useful! I have two questions: 1. If we were to add an API for resuming the group chat, should this...
Sounds like we can have a `GroupChatManager.recover` method to recover from a previous chat history.