kasand commited on
Commit
8003b0e
1 Parent(s): bc6f5aa

added imports, created app.py, test commit

Browse files
Files changed (1) hide show
  1. app.py +12 -0
app.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+
3
+ import nltk
4
+ import yaml
5
+
6
+ import pandas as pd
7
+ import streamlit as st
8
+
9
+ from txtai.embeddings import Documents, Embeddings
10
+ from txtai.pipeline import Summary, Tabular, Textractor, Translation
11
+ from txtai.workflow import ServiceTask, Task, UrlTask, Workflow
12
+