Accessing Compute Module Functions

I have a Compute Module with two published functions (Queries/APIs created).

  • In TypeScript Functions repo → I can access them using Queries method.
  • In Python Functions repo → functions are importable but not callable through Query API or functions package.
  • In Pipeline Builder → TypeScript-published functions don’t show up (even tried wrapping the compute module function).

Goal:
I want these Compute Module functions to be usable in Python Functions, Transforms, and Pipeline Builder.

Error in Python Functions:
RuntimeFunctionExecution:FunctionNotFound
404 Client Error: Not Found for url: …/functions-python-runtime/api/functions/runtime/execute

Questions:

  1. Has anyone been able to call Compute Module functions from Python Functions?
  2. Is there a way to expose TypeScript-published functions so they show up in Pipeline Builder?

We ended up generating OSDK and writing wrappers with code repos to bring them onto PB. It would be better to support them in a first-party way.