Open
Description
When an application is forked and uses a partition key, the link in the UI does not have that partition key in the URL.
Current behavior
E.g. creating an app like this:
forked_app = (
ApplicationBuilder()
.with_graph(base_graph) # this could be different...
.initialize_from(
tracker,
resume_at_next_action=True,
default_state={"chat_history": []},
default_entrypoint="prompt",
fork_from_app_id=app_id,
fork_from_sequence_id=sequence_id,
fork_from_partition_key=partition_key
)
.with_identifiers(partition_key=partition_key)
.with_tracker(tracker, use_otel_tracing=True)
.build()
)