File size: 3,088 Bytes
bf5ad3c
f0296d1
4a3a4a3
bf5ad3c
 
 
 
4a3a4a3
 
 
 
 
 
 
bf5ad3c
 
4a3a4a3
bf5ad3c
73df6bf
bf5ad3c
 
 
 
 
 
 
4a3a4a3
bf5ad3c
 
 
 
 
e049ce9
95ba32b
 
73df6bf
 
f0296d1
 
bf5ad3c
72e3e71
bf5ad3c
73df6bf
 
 
 
 
f0296d1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
73df6bf
4a3a4a3
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import streamlit as st

from utils import add_logo_to_sidebar, add_footer, add_email_signup_form

st.set_page_config(
    page_title="Legal AI Demos",
    page_icon="πŸ‘‹",
    layout="wide",
    initial_sidebar_state="expanded",
    menu_items={
        'Get Help': 'mailto:hello@simplexico.ai',
        'Report a bug': None,
        'About': "## This a demo showcasing different Legal AI Actions"
    }
)

add_logo_to_sidebar()

st.title("πŸ‘‹ Welcome - Legal AI Demos from simplexico!")

st.sidebar.success("πŸ‘† Select a demo above.")

st.markdown(
    """
    Here at simplexico, we've put together a collection of demos showcasing what AI can do in legal.
    AI tends go get spoken about in vague terms. We like to think about AI in terms of the specific 
    **action** it can perform. These demos are meant to cut through all the hype and noise so you can simplify see
    for yourself what AI can and can't do. 
    
    Here you will find demos for the most common Legal AI Actions including:
    - 🏷 **Label** - Using AI to **label** text
    - ⛏ **Extract** - Using AI to **extract** information from text
    - πŸ”— **Compare** - Using AI to **compare** passages of text
    - πŸ—‚ **Organise** - Using AI to **organise** a collection of texts
    - πŸ”Ž **Find** - Using AI to **find** relevant information from a collection of texts
    - ✍️ **Draft** - Using AI to **draft** text
    - πŸ“ **Summarise** - Using AI to **summarise** text
    
    πŸ“’ FYI - These demos are to help you understand AI better. The AI models have not been optimised for prediction performance.

    ### πŸ‘ˆ Select a demo from the sidebar to see some examples of what Legal AI can do!
    
    """)

add_email_signup_form()

st.markdown(
    """
        ### πŸ— What goes into making an AI model?
        Building an AI model is a lot like cooking. 
        A πŸ‘©β€πŸ³ chef (data scientist) combines the πŸ₯’ ingredients (data) according to a recipe πŸ“œ (algorithm)
        and 🍳 cooks the meal (trains the model) in the πŸ”ͺ kitchen (computing environment). 
        Once the πŸ₯§ meal (AI model) is ready, it can be πŸ›Ž served (deployed) to a πŸ’πŸ»customer (user) 
        ready to be 🍽 eaten (used) and enjoyed πŸ˜‹ (meeting the user's needs).
        
        ### 🎁 Showcasing our recipes
        Our Legal AI Chefs πŸ§‘β€πŸ³ have prepared a selection of recipes πŸ“œ and with publicly sourced 
        ingredients πŸ₯’ they have created some fantastic meals πŸ₯§ (AI demos) for you to try. 
        We've also peppered on some explainability so you can see what the AI model is thinking. 
        Try them out 🍽!
        
        ### β„Ή About Us
        simplexico offers white-glove Legal AI education, design and development services. We are on a mission to help
        legal professionals step into a future of collaboration with AI. 
        
        We have the Legal AI Chefs πŸ‘©β€πŸ³ and recipes πŸ“œ. 
        You have the ingredients πŸ₯’ (data).
        We can tailor some yummy Legal AI meals for your taste πŸ₯§!
    """
)

add_footer()