Taylor
Taylor
I am also noticing this issue when printing via Obico (formerly Spaghetti Detective), although this shouldn't matter, should it? 
You need to save the project first
Thanks for the prompt response! I was trying to cancel the asyncio thread in Quart, but cancelling the stream make much more sense :) I've been able to implement this...
Yes, actually, I did get that error :) I ended up implementing an abort controller instead.
Add the AbortController `const [abortController, setAbortController] = useState(null);` Add the below into `makeApiRequest` ``` const makeApiRequest = async (question: string) => { const controller = new AbortController(); setAbortController(controller); ``` Add...
Nice, does yours actually stop the stream on the backend? It seems that most of the time, mine doesn’t. It doesn’t bother me much, but it would be nice to...
Did you add any code to the backend to handle the abort?
`Exception: {'error': {'code': 'Authorization_RequestDenied', 'message': 'Insufficient privileges to complete the operation.', 'innerError': {'date': '2024-03-20T21:42:30', 'request-id': '45d0a377..............', 'client-request-id': '45d0a...............'}}}` It seems you don't have the permissions required to create the App...
> Yep - i see the permission error, i guess I'm wondering what is the minimum permission I'd need to get this working. Can these apps be set up by...
> Thanks, just wanted to make sure: Is there a way to create the apps separately by an administrator and run the authentication functionality on my script? I can't have...