Spaces:
Runtime error
Runtime error
File size: 2,637 Bytes
bf5ad3c e049ce9 bf5ad3c e049ce9 95ba32b bf5ad3c 95ba32b bf5ad3c 95ba32b bf5ad3c |
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 |
import streamlit as st
from PIL import Image
st.set_page_config(
page_title="Legal AI Demos",
page_icon="π",
)
image = Image.open('logo.png')
st.image(image, width=250)
st.write("# Welcome to the Legal AI Action 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
**π Select a demo from the sidebar** to see some examples of what Legal AI can do!
## 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 just for your taste π₯§!
### Want to learn more?
- π Check out our website [simplexico.ai](https://simplexico.ai)
- π Book a Call With Us [Book a call](https://calendly.com/uwais-iqbal/discovery-call)
"""
) |