The community member is asking how to use the same Actor instance across multiple functions defined in separate files. They provide an example of defining an Actor in the main.py file and wanting to use Actor.log.info() in another function called from the main script.
In the comments, another community member suggests that the Actor instance can be used everywhere by importing it, as it behaves like a singleton. After calling async with Actor: (some code) in the main script, the same Actor instance can be used in all imports.
The original community member confirms that they have observed the same instance ID across different files, which aligns with the suggestion provided in the comments.