davidmezzetti
commited on
Commit
·
15483a3
1
Parent(s):
4349316
Update app.py
Browse files
app.py
CHANGED
@@ -15,7 +15,7 @@ import pandas as pd
|
|
15 |
import streamlit as st
|
16 |
|
17 |
from txtai.embeddings import Documents, Embeddings
|
18 |
-
from txtai.pipeline import Segmentation, Summary, Tabular,
|
19 |
from txtai.workflow import ServiceTask, Task, UrlTask, Workflow
|
20 |
|
21 |
|
@@ -528,7 +528,7 @@ class Application:
|
|
528 |
with st.sidebar:
|
529 |
st.image("https://github.com/neuml/txtai/raw/master/logo.png", width=256)
|
530 |
st.markdown("# Workflow builder \n*Build and apply workflows to data* ")
|
531 |
-
st.markdown("Workflows combine machine-learning pipelines together to aggregate logic. This application provides a number of pre-configured workflows to get a feel of how they work. Workflows can be exported and run locally through FastAPI. Read more on [GitHub](https://github.com/neuml/txtai)")
|
532 |
st.markdown("---")
|
533 |
|
534 |
# Component configuration
|
|
|
15 |
import streamlit as st
|
16 |
|
17 |
from txtai.embeddings import Documents, Embeddings
|
18 |
+
from txtai.pipeline import Segmentation, Summary, Tabular, Textractor, Translation
|
19 |
from txtai.workflow import ServiceTask, Task, UrlTask, Workflow
|
20 |
|
21 |
|
|
|
528 |
with st.sidebar:
|
529 |
st.image("https://github.com/neuml/txtai/raw/master/logo.png", width=256)
|
530 |
st.markdown("# Workflow builder \n*Build and apply workflows to data* ")
|
531 |
+
st.markdown("Workflows combine machine-learning pipelines together to aggregate logic. This application provides a number of pre-configured workflows to get a feel of how they work. Workflows can be exported and run locally through FastAPI. Read more on [GitHub](https://github.com/neuml/txtai) and in the [Docs](https://neuml.github.io/txtai/workflow/).")
|
532 |
st.markdown("---")
|
533 |
|
534 |
# Component configuration
|