ecologits-chat / app.py
yipfram's picture
Fix app.py
ad73a34 verified
from chat_interface import ChatInterface
def main():
"""Launch the chat application"""
# Create and launch the interface
chat_app = ChatInterface()
interface = chat_app.create_interface()
print("🌱 Launching EcoLogits Chat...")
interface.launch(
share=True
)
if __name__ == "__main__":
main()