Willy Douhard

Results 196 comments of Willy Douhard

Should be fixed in the latest version `0.3.0`. Please note that it contains breaking changes. We prepared a [migration guide](https://docs.chainlit.io/migration/0.3.0) to make it easy for everyone.

Okay, can you DM me on discord so we can debug this live? Will be much easier

Thanks @sebderhy to I figured the issue. You cannot serve chainlit from a subpath like `https://MY_DOMAIN.com/SUB_PATH`. For now you have to serve it from the root of your domain or...

This should be fixed with the latest version of package (0.3.0). Run `pip uninstall chainlit` and then `pip install chainlit` to make sure you have the latest version installed.

If you open the console in your blank browser page, does it have any error?

I think this is another issue (we can open a fresh one). At the moment, Chainlit has to be served at the root level (as described [here](https://docs.chainlit.io/cloud/deploy). Until it gets...

It looks that python anywhere does not support web sockets https://www.pythonanywhere.com/forums/topic/28393/. That means that you will not be able to deploy chainlit apps there. We have guides on how to...

`target.py` here would be your own file with your own app code depending on what you want to build. The guide you are following is to install Chainlit from sources....

yes, a chainlit app should at lease expose one of those. for instance: ```py import chainlit as cl @cl.on_message async def main(message: str): await cl.Message(content=message).send() ``` Is a minimal example

Ah I see you are using the wheel from the PR. Then langchain_factory now takes a parameter `use_async`. So it should be: ```py @cl.langchain_factory(use_async=False) def main(): pass ```