hf-legisqa / sidebar_mod.py
gabrielaltay's picture
more files
76cbdff
raw
history blame
868 Bytes
import streamlit as st
def render_outreach_links():
nomic_base_url = "https://atlas.nomic.ai/data/gabrielhyperdemocracy"
nomic_map_name = "us-congressional-legislation-s1024o256nomic-1"
nomic_url = f"{nomic_base_url}/{nomic_map_name}/map"
hf_url = "https://huggingface.co/hyperdemocracy"
pc_url = "https://www.pinecone.io/blog/serverless"
together_url = "https://www.together.ai/"
st.subheader(":brain: About [hyperdemocracy](https://hyperdemocracy.us)")
st.subheader(f":world_map: Visualize [nomic atlas]({nomic_url})")
st.subheader(f":hugging_face: Raw [huggingface datasets]({hf_url})")
st.subheader(f":evergreen_tree: Index [pinecone serverless]({pc_url})")
st.subheader(f":pancakes: Inference [together.ai]({together_url})")
def render_sidebar():
with st.container(border=True):
render_outreach_links()