Git Product home page Git Product logo

Comments (5)

marcovirgolin avatar marcovirgolin commented on July 21, 2024 1

Thank you, very possible that I am doing something wrong. Thank you also for explaining background.

I know Iā€™m passing a dict correctly.
Did you happen to have tried also with LLMChain instead of ConversationChain?
Is it crucial to pass the Chain as a dependency instead of creating it within the body of the function? (I tried both)

I will try more tomorrow.

from lanarky.

marcovirgolin avatar marcovirgolin commented on July 21, 2024 1

@ajndkr my bad, I was missing the .from_chain (previous version did not need that).

tried now with most recent version, using StreamingResponse, works fine too.

Thank you very much <3

from lanarky.

ajndkr avatar ajndkr commented on July 21, 2024

Hi! thanks for bug report! I will look into this.

from lanarky.

ajndkr avatar ajndkr commented on July 21, 2024

@marcovirgolin I don't think there's a bug in the code but likely a small error in how you are using BaseLangchainStreamingResponse. In case of multiple inputs, your fastapi application should look something like:

@app.post("/chat")
async def chat(
    request: QueryRequest,
    chain: ConversationChain = Depends(conversation_chain),
) -> LLMChainStreamingResponse:
    return LLMChainStreamingResponse.from_chain(
        chain, request.dict(), media_type="text/event-stream"
    )

here request.dict() is a dictionary: {number-one": "<value>", "number-two": "<value>"}. QueryRequest is a pydantic model to define the request body parameters.

Your second question about self.background: it is supposed to be an instance of BackgroundTask. You can learn more about them here: https://fastapi.tiangolo.com/tutorial/background-tasks/

We use it to run some operation after the chain execution is complete. It is useful in situations where you might want to update a database with new input and chain output.

from lanarky.

ajndkr avatar ajndkr commented on July 21, 2024

If possible, can you share your script? It will be helpful for me to debug this error.

from lanarky.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    šŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. šŸ“ŠšŸ“ˆšŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ā¤ļø Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.