Closed jimmarshall87 closed 1 year ago
I might be wrong, but shouldn't:
if not project_settings.public and not project_settings.project_id:
...be:
if not project_settings.public and not project_settings.id:
in config.py?
config.py
I think this may have broken in 0.4.0
Nice catch, will be fixed in the next release!
Great, now I got one right I will PR the next one I find for you....!
Awesome, you can follow here https://github.com/Chainlit/chainlit/pull/88
I might be wrong, but shouldn't:
if not project_settings.public and not project_settings.project_id:
...be:
if not project_settings.public and not project_settings.id:
in
config.py
?I think this may have broken in 0.4.0