cre-chatbot-rag / api /__init__.py
tony-42069's picture
Fresh start with optimized PDF
0169adb
raw
history blame
237 Bytes
import azure.functions as func
import streamlit as st
def main(req: func.HttpRequest) -> func.HttpResponse:
return func.HttpResponse(
"This is the API endpoint for the CRE Knowledge Assistant",
status_code=200
)