Spaces:
Sleeping
Sleeping
File size: 367 Bytes
ccf217e 593a090 51c72fd ccf217e fb7d4a2 593a090 51c72fd 593a090 ccf217e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import langsmith
from langsmith import traceable
from src.apps.chat.app import ChatbotApplication
from src.utils.logging import init_logging
from src.cache.cache import Cache
from dotenv import load_dotenv
if __name__ == "__main__":
load_dotenv()
Cache.configure(mode='cloud', no_cache=False)
init_logging(interactive_mode=False)
ChatbotApplication("de").run()
|