meta-introspector / https-streamlit.io-community-llm-hackathon-2023

hackathon
Apache License 2.0
0 stars 1 forks source link

cleanup #29

Open jmikedupont2 opened 9 months ago

jmikedupont2 commented 9 months ago

remove unused elements save user name on sharing list paging of inputs showing one input that is shared.

jmikedupont2 commented 9 months ago

It sounds like you're working on a versatile streamlet app with three distinct functionalities controlled by URL parameters. Here's a brief breakdown of how you might approach each of these features:

  1. Browse and Page through Unclassified Inputs: You'll need to create a URL parameter that specifies this mode, such as ?mode=browse. In this mode, your app should display unclassified inputs and allow users to navigate through them, possibly with pagination.

  2. Browse Through a Concept: For this mode, you can use a parameter like ?mode=browse_concept. In this state, your app should allow users to search or select a concept, and then display relevant information or content related to that concept.

  3. Individual Input View: To view an individual input, you can use a parameter like ?mode=view_input&id=XYZ, where XYZ represents the unique identifier of the input. In this mode, your app should fetch and display the specific input in detail.

Remember to design the user interface and backend logic accordingly to handle these different modes and URL parameters effectively. Proper routing, data retrieval, and rendering components will be crucial for a seamless user experience.

jmikedupont2 commented 9 months ago

https://org-clarifai.streamlit.app/?workflows=RakeItUp&workflows=RakeItUpMore here is how to pass in workflows

jmikedupont2 commented 9 months ago

Ok i simplified the code and pushed out versions. will retest tomorrow