From e025320d19b7cdb495e8ea78d108940b51a3603f Mon Sep 17 00:00:00 2001 From: Dicklesworthstone Date: Tue, 26 Sep 2023 17:44:36 +0000 Subject: [PATCH] Updated FastAPI name and description --- swiss_army_llama.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/swiss_army_llama.py b/swiss_army_llama.py index 2281824..371c80a 100644 --- a/swiss_army_llama.py +++ b/swiss_army_llama.py @@ -107,7 +107,10 @@ def rotator(source, dest): logger.info(f"USE_RAMDISK is set to: {USE_RAMDISK}") db_writer = None -app = FastAPI(docs_url="/") # Set the Swagger UI to root +description_string = """ +🇨🇭🎖️🦙 Swiss Army Llama is your One-Stop-Shop to Quickly and Conveniently Integrate Powerful Local LLM Functionality into your Project via a REST API. +""" +app = FastAPI(title="Swiss Army Llama", description=description_string, docs_url="/") # Set the Swagger UI to root engine = create_async_engine(DATABASE_URL, echo=False, connect_args={"check_same_thread": False}) AsyncSessionLocal = sessionmaker( bind=engine,