chat-langchain icon indicating copy to clipboard operation
chat-langchain copied to clipboard

Results 127 chat-langchain issues
Sort by recently updated
recently updated
newest added

INFO:__main__:Loaded 1219 docs from documentation WARNING:langchain_community.document_loaders.recursive_url_loader:Unable to load https://api.python.langchain.com/en/latest/agents/langchain.agents.output_parsers.react_json_single_input.ReActJsonSingleInputOutputParser.html. Received error Cannot connect to host api.python.langchain.com:443 ssl:default [Network is unreachable] of type ClientConnectorError

I use the app to help me write code in langchain, and I find myself too often copy-pasting the code in code blocks in model's response. It would save user...

Hi. I'm trying to adapt the code to run with a Pinecone vector database. I can get it to run without any errors, but the chatbot doesn't actually seem to...

I'm trying to display the streaming output from ChatGPT api to Streamlit (a python web app framework). The goal is to make it feel like the bot is typing back...

I noticed that this project is using numpy 1.25.2. According to [https://numpy.org/doc/stable/release/1.26.0-notes.html](numpy release note), numpy 1.25.2 isn't compatible with Python 3.12, so we should specify a Python version below 3.12.

When we ask questions. Some irrelevant sources also come. Can anybody give me an idea of how we can improve sources so that only relevant sources appear? Thanks

Hi, Does anyone give me a solution for deploying the chat-langchain to production? What is the best option? Option 1: -Build Nextjs as a static site -Start Unicorn API server...

I have an AI channel on Discord. I want to create a Discord bot which can ask questions directly to "Chat Langchain". Is there a way to access "Chat Langchain"...

1、add below code: ``` import openai openai.proxy = { "http": "http://127.0.0.1:7890", "https": "http://127.0.0.1:7890" } ``` 2、change openai.py file: ``` max_reties = 6 stop=stop_after_attempt(max_reties), ```

Hi all, I clone this repo and run it correctly. Now, I would like to store the chat history in DB using PostgresChatMessageHistory. How to do it? Please help me....