langserve icon indicating copy to clipboard operation
langserve copied to clipboard

LangServe 🦜️🏓

Results 144 langserve issues
Sort by recently updated
recently updated
newest added

Description: I've encountered an issue where the default value for `extra_body` in the `configurable` field is being lost when LangServe generates the API documentation. This results in the API expecting...

Via discord thread in `langsmith-support-forum` [here](https://discord.com/channels/1038097195422978059/1255134123203231776/1255134123203231776): > I have both the context that calls `RemoteRunnable(...).with_config(metadata={"my_key": "my_val"}).invoke(...)` and the `LangServe` API target running the LCEL runnable correctly wired up with langsmith;...

Ideally when we set a field to be configurable, it should be updated accordingly when new configurable values are given by per_req_config_modifier. However, it seems only `model_kwargs` **('user': 'some_user')** is...

I'm not getting create a new LangChain project and install this as the only package. Does anyone have a solution for this? > │ ╭─────────────────────────────────────────── locals ───────────────────────────────────────────╮ │ │ │...

At https://python.langchain.com/v0.2/docs/langserve/#deploy-to-azure change `az containerapp up --name [container-app-name] --source . --resource-group [resource-group-name] --environment [environment-name] --ingress external --target-port 8001 --env-vars=OPENAI_API_KEY=your_key` to `az containerapp up --name [container-app-name] --source . --resource-group [resource-group-name] --environment...

## 1 - Feature request - be able to run examples after installing all extras It would be really nice if I could clone the repository, create a new virtualenv,...

I want to share a conversation from LangServe, how how to do that? I clicked on the "Share" button: ![image](https://github.com/langchain-ai/langserve/assets/22435018/dc8487a9-188d-48ab-92f0-f6154a212f4a) Then copied the url: ![image](https://github.com/langchain-ai/langserve/assets/22435018/30204ad0-5657-4e44-885f-0865c01a1eb2) When I open that url...

If routes are added with ApiRouter: ``` # some/folder/custom.py from fastapi import APIRouter router = APIRouter() # Create some chain chain = ... add_routes(router, chain, ...) # server.py from some.folder.custom...

Me and some colleagues observed an issue, where Langchain Callback Handlers get not triggered if passed as callbacks on Clientside within the Streaming function. The Runnable contains RAG Components like...

How can I utilize Langchain memory components like "ConversationBufferWindowMemory" in Langserve. I am using a chat history as mentioned in the agent_with_history example in the following way: ``` from fastapi...