Hi, new to Flyte and was wondering how one could c...
# ask-the-community
s
Hi, new to Flyte and was wondering how one could change the "output" and "input" decks. Thanks.
The default_deck is easy to modify with
current_context().default_deck.append(html_text)
but what about the output and input decks?
s
I don't think you can modify the input and output decks. cc @Kevin Su
k
You cannot, they are implicit currently and use the renderer for the type
You can make new ones
s
Hi, could you clarify how one would make new ones? Is there a way to for example disable output and input, and then just have a default where you would manually create the rendering?
k
To create new one, it will be like
Copy code
flytekit.Deck("demo", BoxRenderer("sepal_length").to_html(iris_df))
Is there a way to for example disable output and input,
you cannot for now, mind creating an issue for it?
s
In which repo should the issue be created in?
k
[flyte-core]
150 Views