#BotBuilder
I ended up making a nicer scene, some more bits and better shaders, also saving and loading!
Just got too busy to post, haha!
#gamedev #bionicle #botbuilder
January 7, 2025 at 3:53 PM
Here's some different little dudes!
Need to make better bits for making a proper Tahu, but otherwise pretty happy!
#gamedev #bionicle #botbuilder
January 9, 2025 at 6:05 PM
Looks like the botbuilder team shipped an update to their botbuilder-dialogs NPM package that breaks the first-run experience for all @MicrosoftTeams projects that use the #VSCode Teams Toolkit unless you have yarn installed 😡 👇🧵
November 19, 2024 at 7:31 PM
Open-source Cognitive Services samples for creating bots in the Microsoft Bot Framework.
http://bit.ly/2eABLss
GitHub - microsoft/BotBuilder-Samples: Welcome to the Bot...
Welcome to the Bot Framework samples repository. Here you...
bit.ly
December 2, 2024 at 8:02 AM
Debugging the Microsoft Bot Framework -> BotBuilder SDK
http://bit.ly/2tyusrd
Bot Framework
bit.ly
December 2, 2024 at 12:02 AM
Saving State data with BotBuilder-Azure in Node.js
http://bit.ly/2uPpKGS
Bot Framework
bit.ly
December 1, 2024 at 11:57 PM
Locally develop and manage LUIS applications with new BotBuilder tools
http://bit.ly/2tNReed
Bot Framework
bit.ly
December 1, 2024 at 11:21 AM
BotBuilder Community is making it easier to build great bots!
http://bit.ly/2CRTfft
Bot Framework
bit.ly
December 1, 2024 at 7:51 AM
Use AI bots to sell for you 24/7. Discover how to build and deploy ChatGPT bots that convert leads into buyers.
www.erikcagi.us/2024/11/chat...
#AIBots #SalesAutomation #ChatGPTTools #LeadConversion #DigitalSelling #SmartTech #BotBuilder
ChatGPTbotbuilder — The Ultimate Sales Toolkit using the very latest in AI Technology
ChatGPTbotbuilder — The Ultimate Sales Toolkit using the very latest in AI Technology
www.erikcagi.us
May 14, 2025 at 2:21 PM
Microsoft Bot Builder extension library for developing bots for Microsoft Teams http://alvn.me/2rUWcGg #MSTeams #bots
GitHub - OfficeDev/BotBuilder-MicrosoftTeams: Microsoft B...
Microsoft Bot Builder extension library for developing bo...
alvn.me
December 1, 2024 at 10:31 PM
Azure Bot working from local using teams toolkit, but not when hosted on AWS
Hi Everyone, I need help in debugging an issue I am facing while using the Azure bot on the teams channel. I have created a Teams Meeting bot using the botbuilder framework in python and tested it using the teams toolkit. It works fine using the toolkit. I also used an ngrok domain in the messaging endpoint in the configuration page of the bot and that works too. Now we took this bot logic and hosted it on AWS ECS. The api/messages endpoint is reachable through postman. But when the request comes from teams, our server just hangs and it becomes unreachable and eventually restarts. I have tried to add some logs and I am able to print the activity, auth header and the request body the teams sends to the API. I have ensured all the env variables are correct. Also, for the server to be reachable from the teams channel to AWS, we had to whitelist a few ips. Only then the server on AWS was reachable. Steps to reproduce the server restarts.: 1) I zip my manifest file and upload the custom app to a teams meeting. 2) When I add the app to the meeting, it counts as an event and teams calls the api/messages endpoint. I am able to see the logs for this event. 3) After I add the app, I open the custom app tab and the content comes up as expected. The issue starts after this step. 4) I start the meeting, teams sends an event (meetingstart) to the API and then the server just hangs. No logs are printed and then the server restarts and nothing is tracked. The bot in that meeting does not work anymore. Because when you start a meeting again, the server restarts. The same thing works fine on local and it checks for these teams events and performs the logic within that function. We are clueless on what's happening here as there are no logs either. Is there something we need to cross check when trying to host it on a server instead of running it on local using a teams toolkit.? The request gets sent to SETTINGS = BotFrameworkAdapterSettings(CONFIG.APP_ID, CONFIG.APP_PASSWORD) ADAPTER = BotFrameworkAdapter(SETTINGS) # Listen for incoming requests on /api/messages @app.post("/api/messages", response_model=None) async def messages(req: Request) -> Response: # Main bot message handler. if "application/json" in req.headers["Content-Type"]: body = await req.json() else: return Response(status_code=HTTPStatus.UNSUPPORTED_MEDIA_TYPE) activity = Activity().deserialize(body) auth_header = req.headers["Authorization"] if "Authorization" in req.headers else "" print(auth_header) response = await ADAPTER.process_activity(activity, auth_header, BOT.on_turn) if response: return JSONResponse(content=response.body, status_code=response.status) return Response(status_code=HTTPStatus.OK) It fails at line 15 I believe, as I have tried to comment the line to see if the restarts happen. It did not restart then. So the issue is clearly with line 15. Hoping for a reply from anyone. Thank you.
techcommunity.microsoft.com
September 2, 2024 at 12:53 PM
A new AI review! microsoft/BotBuilder-Samples ⭐3.4/5.0
This repository is a large, well-curated collection of end-to-end **Bot Framework SDK v4** samples across **.
https://gitrated.com/microsoft/BotBuilder-Samples
April 7, 2026 at 1:54 PM