Mark Franco

Results 5 comments of Mark Franco

Agreed on both points. extra setup after the generator has run will add further complexity. I think hanging it off the generator would make more sense as well.

Hi All, Anything wrong with this approach: define a private member in startup class: ``` private ILogger Logger() { var loggerFactory = LoggerFactory.Create(startupLogbuilder => { startupLogbuilder.AddConsole(); startupLogbuilder.AddDebug(); }); return loggerFactory.CreateLogger();...

Thank you, I've updated my component and packages, but it seems it is even worse now, that overwrite is not honoured anymore as well. here is my code: https://github.com/MTCMarkFranco/chatbot/blob/websockets/src/App.tsx Line...

Thank you! My code structure follows your WebSocket skeleton code verbatim here: https://deepchat.dev/docs/connect/#Handler // this handler is invoked when the component is loaded chatElementRef.request = { websocket: true, handler: (_,...

further investigation: signals.onResponse() is thinking that every call should be a separate response hence it creates a new message in the messages list instead of updating the latest response message....