cre-chatbot-rag / api /__init__.py
tony-42069's picture
Add source code and test files
d16e9aa
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
)