fp-chainlit-ui


Namefp-chainlit-ui JSON
Version 0.7.1 PyPI version JSON
download
home_pagehttps://github.com/meicanhong/chainlit
SummaryA faster way to build chatbot UIs.
upload_time2023-09-24 10:34:34
maintainer
docs_urlNone
authordanny
requires_python>=3.8.1,<4.0.0
licenseApache-2.0 license
keywords llm agents gen ai chat ui chatbot ui langchain
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Welcome to Chainlit πŸ‘‹

**Build Python LLM apps in minutes ⚑️**

Chainlit lets you create ChatGPT-like UIs on top of any Python code in minutes! Some of the key features include intermediary steps visualisation, element management & display (images, text, carousel, etc.) as well as cloud deployment.

[![](https://dcbadge.vercel.app/api/server/ZThrUxbAYw?style=flat)](https://discord.gg/k73SQ3FyUh)
[![Twitter](https://img.shields.io/twitter/url/https/twitter.com/chainlit_io.svg?style=social&label=Follow%20%40chainlit_io)](https://twitter.com/chainlit_io)
[![CI](https://github.com/Chainlit/chainlit/actions/workflows/ci.yaml/badge.svg)](https://github.com/Chainlit/chainlit/actions/workflows/ci.yaml)

https://github.com/Chainlit/chainlit/assets/13104895/e347e52c-35b2-4c35-8a88-f8ac02dd198e

## Installation

Open a terminal and run:

```bash
$ pip install chainlit
$ chainlit hello
```

If this opens the `hello app` in your browser, you're all set!

## πŸ“– Documentation

Please see [here](https://docs.chainlit.io) for full documentation on:

- Getting started (installation, simple examples)
- Examples
- Reference (full API docs)

## πŸš€ Quickstart

### 🐍 Pure Python

Create a new file `demo.py` with the following code:

```python
import chainlit as cl


@cl.on_message  # this function will be called every time a user inputs a message in the UI
async def main(message: str):
    # this is an intermediate step
    await cl.Message(author="Tool 1", content=f"Response from tool1", indent=1).send()

    # send back the final answer
    await cl.Message(content=f"This is the final answer").send()
```

Now run it!

```
$ chainlit run demo.py -w
```

<img src="/images/quick-start.png" alt="Quick Start"></img>

### πŸ”— With LangChain

Check out our plug-and-play [integration](https://docs.chainlit.io/integrations/langchain) with LangChain!

### πŸ“š More Examples - Cookbook

You can find various examples of Chainlit apps [here](https://github.com/Chainlit/cookbook) that leverage tools and services such as OpenAI, Anthropiс, LangChain, LlamaIndex, ChromaDB, Pinecone and more.

## πŸ›£ Roadmap

- [ ] New UI elements (spreadsheet, video, carousel...)
- [ ] Create your own UI elements via component framework
- [ ] DAG-based chain-of-thought interface
- [ ] Support more LLMs in the prompt playground
- [ ] App deployment

Tell us what you would like to see added in Chainlit using the Github issues or on [Discord](https://discord.gg/ZThrUxbAYw).

## πŸ’ Contributing

As an open-source initiative in a rapidly evolving domain, we welcome contributions, be it through the addition of new features or the improvement of documentation.

For detailed information on how to contribute, see [here](.github/CONTRIBUTING.md).

## License

Chainlit is open-source and licensed under the [Apache 2.0](LICENSE) license.


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/meicanhong/chainlit",
    "name": "fp-chainlit-ui",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8.1,<4.0.0",
    "maintainer_email": "",
    "keywords": "LLM,Agents,gen ai,chat ui,chatbot ui,langchain",
    "author": "danny",
    "author_email": "danny@footprint.network",
    "download_url": "https://files.pythonhosted.org/packages/20/07/912a5f17a2a97d056deaa9710c08829b68901785381eeffef4a637102cb6/fp_chainlit_ui-0.7.1.tar.gz",
    "platform": null,
    "description": "# Welcome to Chainlit \ud83d\udc4b\n\n**Build Python LLM apps in minutes \u26a1\ufe0f**\n\nChainlit lets you create ChatGPT-like UIs on top of any Python code in minutes! Some of the key features include intermediary steps visualisation, element management & display (images, text, carousel, etc.) as well as cloud deployment.\n\n[![](https://dcbadge.vercel.app/api/server/ZThrUxbAYw?style=flat)](https://discord.gg/k73SQ3FyUh)\n[![Twitter](https://img.shields.io/twitter/url/https/twitter.com/chainlit_io.svg?style=social&label=Follow%20%40chainlit_io)](https://twitter.com/chainlit_io)\n[![CI](https://github.com/Chainlit/chainlit/actions/workflows/ci.yaml/badge.svg)](https://github.com/Chainlit/chainlit/actions/workflows/ci.yaml)\n\nhttps://github.com/Chainlit/chainlit/assets/13104895/e347e52c-35b2-4c35-8a88-f8ac02dd198e\n\n## Installation\n\nOpen a terminal and run:\n\n```bash\n$ pip install chainlit\n$ chainlit hello\n```\n\nIf this opens the `hello app` in your browser, you're all set!\n\n## \ud83d\udcd6 Documentation\n\nPlease see [here](https://docs.chainlit.io) for full documentation on:\n\n- Getting started (installation, simple examples)\n- Examples\n- Reference (full API docs)\n\n## \ud83d\ude80 Quickstart\n\n### \ud83d\udc0d Pure Python\n\nCreate a new file `demo.py` with the following code:\n\n```python\nimport chainlit as cl\n\n\n@cl.on_message  # this function will be called every time a user inputs a message in the UI\nasync def main(message: str):\n    # this is an intermediate step\n    await cl.Message(author=\"Tool 1\", content=f\"Response from tool1\", indent=1).send()\n\n    # send back the final answer\n    await cl.Message(content=f\"This is the final answer\").send()\n```\n\nNow run it!\n\n```\n$ chainlit run demo.py -w\n```\n\n<img src=\"/images/quick-start.png\" alt=\"Quick Start\"></img>\n\n### \ud83d\udd17 With LangChain\n\nCheck out our plug-and-play [integration](https://docs.chainlit.io/integrations/langchain) with LangChain!\n\n### \ud83d\udcda More Examples - Cookbook\n\nYou can find various examples of Chainlit apps [here](https://github.com/Chainlit/cookbook) that leverage tools and services such as OpenAI, Anthropi\u0441, LangChain, LlamaIndex, ChromaDB, Pinecone and more.\n\n## \ud83d\udee3 Roadmap\n\n- [ ] New UI elements (spreadsheet, video, carousel...)\n- [ ] Create your own UI elements via component framework\n- [ ] DAG-based chain-of-thought interface\n- [ ] Support more LLMs in the prompt playground\n- [ ] App deployment\n\nTell us what you would like to see added in Chainlit using the Github issues or on [Discord](https://discord.gg/ZThrUxbAYw).\n\n## \ud83d\udc81 Contributing\n\nAs an open-source initiative in a rapidly evolving domain, we welcome contributions, be it through the addition of new features or the improvement of documentation.\n\nFor detailed information on how to contribute, see [here](.github/CONTRIBUTING.md).\n\n## License\n\nChainlit is open-source and licensed under the [Apache 2.0](LICENSE) license.\n\n",
    "bugtrack_url": null,
    "license": "Apache-2.0 license",
    "summary": "A faster way to build chatbot UIs.",
    "version": "0.7.1",
    "project_urls": {
        "Homepage": "https://github.com/meicanhong/chainlit",
        "Repository": "https://github.com/meicanhong/chainlit"
    },
    "split_keywords": [
        "llm",
        "agents",
        "gen ai",
        "chat ui",
        "chatbot ui",
        "langchain"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c6e8c07fdc228ff268dff932a889dc6e89fe801b27473bf5b802c27d5ed30898",
                "md5": "b5e4aab8f4734c0e0e956d15bcf0e12f",
                "sha256": "2e8e99624f8ac1ea58b1a6495abde107775c1c03c4260ed2d847cb6d34f5b2b9"
            },
            "downloads": -1,
            "filename": "fp_chainlit_ui-0.7.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b5e4aab8f4734c0e0e956d15bcf0e12f",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8.1,<4.0.0",
            "size": 972468,
            "upload_time": "2023-09-24T10:34:32",
            "upload_time_iso_8601": "2023-09-24T10:34:32.786029Z",
            "url": "https://files.pythonhosted.org/packages/c6/e8/c07fdc228ff268dff932a889dc6e89fe801b27473bf5b802c27d5ed30898/fp_chainlit_ui-0.7.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2007912a5f17a2a97d056deaa9710c08829b68901785381eeffef4a637102cb6",
                "md5": "1f371559064e10c531c9a2e306b09e6d",
                "sha256": "bab86b3571e2ffb3d9e59150d2096128d2e1560c5b7c0ee38e8e40bbf9a6e683"
            },
            "downloads": -1,
            "filename": "fp_chainlit_ui-0.7.1.tar.gz",
            "has_sig": false,
            "md5_digest": "1f371559064e10c531c9a2e306b09e6d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8.1,<4.0.0",
            "size": 953603,
            "upload_time": "2023-09-24T10:34:34",
            "upload_time_iso_8601": "2023-09-24T10:34:34.505807Z",
            "url": "https://files.pythonhosted.org/packages/20/07/912a5f17a2a97d056deaa9710c08829b68901785381eeffef4a637102cb6/fp_chainlit_ui-0.7.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-24 10:34:34",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "meicanhong",
    "github_project": "chainlit",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "fp-chainlit-ui"
}
        
Elapsed time: 0.11823s