Skip to content

Bug with UI link to forked app with partition key #518

Open
@skrawcz

Description

@skrawcz

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()
)

Results in:
Image

Image

The links here are missing the partition key:
Image

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't workingui

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions