Spaces:
Build error
Build error
File size: 2,292 Bytes
7293b6f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
import os
import logging
from aiohttp import web
from botbuilder.core import (
BotFrameworkAdapterSettings,
ConversationState,
MemoryStorage,
UserState,
)
from botbuilder.integration.aiohttp import BotFrameworkHttpAdapter
from botbuilder.schema import Activity
from dotenv import load_dotenv
from utils import show_privacy_consent
from universal_reasoning import UniversalReasoning, load_json_config
from mybot import MyBot # Import updated MyBot class
from main_dialog import MainDialog
# Load environment variables from .env file
load_dotenv()
# Configure logging
logging.basicConfig(
level=logging.INFO, format="%(asctime)s - %(levelname)s - %(message)s"
)
# Show privacy consent dialog and check user response
if not show_privacy_consent():
logging.info("User declined data collection and privacy policy. Exiting application.")
exit()
# Load configuration
config = load_json_config("config.json")
config["azure_openai_api_key"] = os.getenv("AZURE_OPENAI_API_KEY")
config["azure_openai_endpoint"] = os.getenv("AZURE_OPENAI_ENDPOINT")
# Initialize UniversalReasoning
universal_reasoning = UniversalReasoning(config)
# Create adapter
settings = BotFrameworkAdapterSettings(
app_id=os.getenv("MICROSOFT_APP_ID"),
app_password=os.getenv("MICROSOFT_APP_PASSWORD"),
)
adapter = BotFrameworkHttpAdapter(settings)
# Create MemoryStorage, ConversationState, and UserState
memory_storage = MemoryStorage()
conversation_state = ConversationState(memory_storage)
user_state = UserState(memory_storage)
# Create the main dialog
main_dialog = MainDialog("MainDialog")
# Create the bot and pass the universal_reasoning instance
bot = MyBot(conversation_state, user_state, main_dialog, universal_reasoning)
# Listen for incoming requests on /api/messages
async def messages(req):
body = await req.json()
activity = Activity().deserialize(body)
auth_header = req.headers.get("Authorization", "")
response = await adapter.process_activity(activity, auth_header, bot.on_turn)
return web.Response(status=response.status)
app = web.Application()
app.router.add_post("/api/messages", messages)
if __name__ == "__main__":
web.run_app(app, host="localhost", port=3978)
|