Start workflow with another language client

Hello,
Is it possible trigger a workflow made with python, using a client made with typescript?
Thanks

Hi @ReyJust

That is totally fine, please check out this video https://www.youtube.com/watch?v=LSXP_o6sTic. The repository is here GitHub - temporalio/temporal-polyglot

In your case, from typescript you can pass a string as the workflow type

await client.workflow.start(
      "my-workflow",
      {...}

and have the workflow implementation registered in your Python workers.

Antonio