npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

Iโ€™ve always been into building performant and accessible sites, but lately Iโ€™ve been taking it extremely seriously. So much so that Iโ€™ve been building a tool to help me optimize and monitor the sites that I build to make sure that Iโ€™m making an attempt to offer the best experience to those who visit them. If youโ€™re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, ๐Ÿ‘‹, Iโ€™m Ryan Hefnerย  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If youโ€™re interested in other things Iโ€™m working on, follow me on Twitter or check out the open source projects Iโ€™ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soonโ€“ish.

Open Software & Tools

This site wouldnโ€™t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you ๐Ÿ™

ยฉ 2025 โ€“ย Pkg Stats / Ryan Hefner

langflow-embedded-chat

v0.1.1

Published

Welcome to the Langflow Embedded Chat repository! ๐ŸŽ‰

Downloads

178

Readme

Langflow Embedded Chat โ›“๏ธ

Welcome to the Langflow Embedded Chat repository! ๐ŸŽ‰

The Langflow Embedded Chat is a powerful web component that enables seamless communication with the Langflow โ›“๏ธ. This widget provides a chat interface, allowing you to integrate Langflow โ›“๏ธ into your web applications effortlessly.

MIT License

What is Langflow?

Langflow is a no-code open-source project that empowers developers to build cutting-edge applications using Language Model technologies. With Langflow, you can leverage the power of LLMs (Large Language Models) to enhance user interactions, generate human-like text, and gain valuable insights from natural language data.

Features

๐ŸŒŸ Seamless Integration: Easily integrate the Langflow Widget into your website or web application with just a few lines of JavaScript.

๐Ÿš€ Interactive Chat Interface: Engage your users with a user-friendly chat interface, powered by Langflow's advanced language understanding capabilities.

๐ŸŽ›๏ธ Customizable Styling: Customize the appearance of the chat widget to match your application's design and branding.

๐ŸŒ Multilingual Support: Communicate with users in multiple languages, opening up your application to a global audience.

Installation

Option 1: CDN Link

Use the Langflow Widget directly from the CDN by including the following script tag in your HTML:

<script src="https://cdn.jsdelivr.net/gh/logspace-ai/langflow-embedded-chat@main/dist/build/static/js/bundle.min.js"></script>

Option 2: Local Build

  1. Clone this repository to your local machine:
git clone https://github.com/logspace-ai/langflow-embedded-chat.git
  1. Navigate to the project directory:
cd langflow-embedded-chat
  1. Build the project to generate the bundle:
npm run build
  1. After the build process completes, you'll find the bundle in the dist/build/static/js folder. You can include this JavaScript file in your HTML:
<script src="path/to/your/langflow-widget.js"></script>

Usage

on simple HTML

<html lang="en">
<head>
<script src="https://cdn.jsdelivr.net/gh/logspace-ai/langflow-embedded-chat@main/dist/build/static/js/bundle.min.js"></script>
</head>
<body>
<langflow-chat
    chat_input_field="input"
    chat_inputs='{"input":""}'
    host_url="langflow url"
    flow_id="your_flow_id"
  ></langflow-chat>
</body>
</html>

on React

Import the js bundle in the index.html of your react project

<script src="https://cdn.jsdelivr.net/gh/logspace-ai/langflow-embedded-chat@main/dist/build/static/js/bundle.min.js"></script>

Encapsulate your custom element in a react component

export default function ChatWidget() {
  return (
    <div>
<langflow-chat
    chat_input_field="input"
    chat_inputs='{"input":""}'
    host_url="langflow url"
    flow_id="your_flow_id"></langflow-chat>
    </div>
  );
}

Configuration

Use the widget API to customize your widget:

| Prop | Type | Required | |-----------------------|-----------|----------| | bot_message_style | json | No | | chat_input_field | string | Yes | | chat_inputs | json | Yes | | chat_position | string | No | | chat_trigger_style | json | No | | chat_window_style | json | No | | chat_output_key | string | No | | error_message_style | json | No | | flow_id | string | Yes | | height | number | No | | host_url | string | Yes | | input_container_style | json | No | | input_style | json | No | | online | boolean | No | | online_message | string | No | | placeholder | string | No | | placeholder_sending | string | No | | send_button_style | json | No | | send_icon_style | json | No | | tweaks | json | No | | user_message_style | json | No | | width | number | No | | window_title | string | No |

  • bot_message_style:

    • Type: JSON
    • Required: No
    • Description: Styling options for formatting bot messages in the chat window.
  • chat_input_field:

    • Type: String
    • Required: Yes
    • Description: Specifies the input field type for chat messages.
  • chat_inputs:

    • Type: JSON
    • Required: Yes
    • Description: Defines the chat input elements and their values.
  • chat_output_key:

    • Type: String
    • Required: No
    • Description: Specify which output to choose if there is more than one output.
  • chat_position:

    • Type: String
    • Required: No
    • Description: Determines the position of the chat window (top-left, top-center, top-right, center-left, center-right, bottom-right, bottom-center, bottom-left).
  • chat_trigger_style:

    • Type: JSON
    • Required: No
    • Description: Styling options for the chat trigger.
  • chat_window_style:

    • Type: JSON
    • Required: No
    • Description: Styling options for the overall chat window.
  • error_message_style:

    • Type: JSON
    • Required: No
    • Description: Styling options for error messages in the chat window.
  • flow_id:

    • Type: String
    • Required: Yes
    • Description: Identifier for the flow associated with the component.
  • height:

    • Type: Number
    • Required: No
    • Description: Specifies the height of the chat window in pixels.
  • host_url:

    • Type: String
    • Required: Yes
    • Description: The URL of the host for communication with the chat component.
  • input_container_style:

    • Type: JSON
    • Required: No
    • Description: Styling options for the input container where chat messages are typed.
  • input_style:

    • Type: JSON
    • Required: No
    • Description: Styling options for the chat input field.
  • Online:

    • Type: Boolean
    • Required: No
    • Description: Indicates if the chat component is online or offline.
  • online_message:

    • Type: String
    • Required: No
    • Description: Custom message to display when the chat component is online.
  • placeholder:

    • Type: String
    • Required: No
    • Description: Placeholder text for the chat input field.
  • placeholder_sending:

    • Type: String
    • Required: No
    • Description: Placeholder text to display while a message is being sent.
  • send_button_style:

    • Type: JSON
    • Required: No
    • Description: Styling options for the send button in the chat window.
  • send_icon_style:

    • Type: JSON
    • Required: No
    • Description: Styling options for the send icon in the chat window.
  • tweaks:

    • Type: JSON
    • Required: No
    • Description: Additional custom tweaks for the associated flow.
  • user_message_style:

    • Type: JSON
    • Required: No
    • Description: Styling options for formatting user messages in the chat window.
  • width:

    • Type: Number
    • Required: No
    • Description: Specifies the width of the chat window in pixels.
  • window_title:

    • Type: String
    • Required: No
    • Description: Title for the chat window, displayed in the header or title bar.

License

This project is licensed under the MIT License - see the LICENSE file for details.