Mark Karle

Results 3 comments of Mark Karle

Unfortunately, that won't work. With `x = threading.Thread(target=self._invoke_semantic_async)`, the async function will never be awaited. But Thread doesn't have a `result` property, so even with `x = threading.Thread(target=asyncio.run, args=(self._invoke_semantic_async,))`, we...

start and join both return None, so I don't think I can combine those lines

Right now you can only return None, str, and SKContext types. You can put dict and list values in the SKContext object though.