That is entirely a custom code problem.
At this point you need to define your variables in the code, pass this to the View render API, and then it will display data as related to what you pass.
Let's say you want that value to be the current post, as when you view a post.
You could access that with https://developer.wordpress.org/reference/functions/get_queried_object_id/ for example, and pass it to your variable, which then you can use to populate the render_view args.
An example:
$dynamic_view_loaded = 'Your View Title';//You can populate this however you like. You won't use this, just trying to make an example of how you could use it.
$dynamic_myattribute = 'anotherattribute';//Again, you could go extreme, and even generate attributes on the fly, always given the view as well has some query settings for it... You won't use this, just trying to make an example of how you could use it.
$dynamic_value = 'myvalue_is_dynamic';//You can populate this with any code output you want, for example, let's say you use get_queried_object_id():
$dynamic_value = get_queried_object_id();
$args = array(
'title' => $dynamic_view_loaded,
$dynamic_myattribute => $dynamic_value
);
echo render_view( $args );
Depending on whether you use this on posts, or other places, like archives, you might need to use other Core API Functions or PHP Methos to get the current object ID for example, or who knows, maybe you want to load posts related to a completely different post, then you can, for example, build a Query, that gets that post, then use that Post ID to populate your render_view args.
But this is completely out of the hands of Toolset, it will depend on WordPress Query, an PHP code only.
I hope above examples help!