Skip to content

Instantly share code, notes, and snippets.

@vndee
Created March 29, 2025 10:51
Show Gist options
  • Save vndee/c8a72b25e78ac0a3a550087afe6182c6 to your computer and use it in GitHub Desktop.
Save vndee/c8a72b25e78ac0a3a550087afe6182c6 to your computer and use it in GitHub Desktop.
# Create tabs for results and reasoning process
result_tab, process_tab, viz_tab = st.tabs(["Answer", "Reasoning Process", "Graph Visualization"])
with result_tab:
st.markdown("### Answer")
# Display the final answer...
with process_tab:
st.markdown("### Reasoning Steps")
# Show detailed reasoning steps...
with viz_tab:
st.markdown("### Knowledge Graph Exploration")
# Visualize the knowledge graph with highlighted reasoning path...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment