Giter Club home page Giter Club logo

Comments (3)

dosubot avatar dosubot commented on June 23, 2024 2

Hey @qiaolb! I'm here to help you with any questions or issues you have regarding Langflow API. I can assist you with bug fixes, troubleshooting, and more while you wait for a human maintainer. Let's tackle these inquiries together!

To ensure distinct and isolated sessions for multiple users accessing Langflow flows via curl, you can use the session_id parameter in the SimplifiedAPIRequest. Each user should be assigned a unique session_id to maintain session isolation.

For passing custom parameters to a Langflow flow through curl, you can use the tweaks parameter in the request body. The tweaks parameter allows you to customize the flow's behavior by modifying its parameters and components.

Here is an example of how to use curl to run a flow with custom parameters and ensure session isolation:

curl -X 'POST' \
  'http://<your_server>/run/{flow_id}' \
  -H 'accept: application/json' \
  -H 'Content-Type: application/json' \
  -H 'x-api-key: YOUR_API_KEY' \
  -d '{
        "input_value": "Sample input",
        "input_type": "chat",
        "output_type": "chat",
        "tweaks": {
            "Component Name": {"parameter_name": "value"},
            "parameter_name": "value"
        },
        "session_id": "unique_session_id_for_user"
      }'

In this example:

  • Replace <your_server> with the actual server address.
  • Replace {flow_id} with the specific flow ID you want to run.
  • Replace YOUR_API_KEY with your actual API key.
  • Customize the input_value, input_type, output_type, and tweaks as needed.
  • Use a unique session_id for each user to ensure session isolation [1].

To continue talking to Dosu, mention @dosu.

from langflow.

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.