langserve icon indicating copy to clipboard operation
langserve copied to clipboard

LangServe 🦜️🏓

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

{"output":"ashes","metadata":{"run_id":"cb043b82-d879-43fa-8625-c326509bc822","feedback_tokens":[]}} I don't really want "metadata", and maybe add "session_id", how can I do this? I'm now using langserve add_routes to complete this.

I like the look of the newer chat playground_type, but I can't seem to get it work. When I try send a chat message the UI pops up the following...

bug
playground

I don't see a way to _start_ the chat playground with an initial AI message. Use-case here is to explore conversations where the bot will initiate the conversation. So if...

enhancement
playground

I'm using APIRouter to separate my routes like so: ```python # app/main.py app.include_router(api_router, prefix='/api/v1') # app/api/main.py from app.api.routes import chat api_router = APIRouter() api_router.include_router(chat.router, prefix="/chat", tags=["chats"]) # app/api/routes/chat.py router =...

Hi guys, I'm sure I'm doing something wrong here, but I am trying to get this server up and running: server.py ```` import datetime from typing import Any, Dict import...

## Overview I have developed a chain for question answering, which functions correctly when run as an independent Python script, returning sources as expected. However, when this script is hosted...

Hello, is it possible to add also text field for feedback in chat playground? I am working on a project where there are few people testing the app and this...

I want to modify request body to send to the model, is there a way to use pydantic to modify input_type for example this is the default req body: ```...

Previously, the playground was building request URLs by removing the `playground` suffix and appending `stream_log`. This worked when the URL ended with `playground`, but failed for URLs ending with `index.html`....

I am using the code from the sample section of the `RunnableWithMessageHistory`. it works perfectly if I invoke the chain manually by calling in python code directly. It DOES NOT...