Spaces:
Running
Running
sync
Browse files- cicero_jobs/app.py +20 -1
- pyproject.toml +1 -0
cicero_jobs/app.py
CHANGED
|
@@ -16,6 +16,25 @@ __generated_with = "0.17.0"
|
|
| 16 |
app = marimo.App(width="medium")
|
| 17 |
|
| 18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
@app.cell
|
| 20 |
def _():
|
| 21 |
import io
|
|
@@ -27,7 +46,7 @@ def _():
|
|
| 27 |
|
| 28 |
#
|
| 29 |
from html4docx import HtmlToDocx
|
| 30 |
-
from
|
| 31 |
|
| 32 |
# HtmlToDocx = htmlpatch.HtmlToDocx
|
| 33 |
from mistune.plugins.abbr import abbr
|
|
|
|
| 16 |
app = marimo.App(width="medium")
|
| 17 |
|
| 18 |
|
| 19 |
+
@app.cell
|
| 20 |
+
def _(mo):
|
| 21 |
+
mo.md(
|
| 22 |
+
r"""
|
| 23 |
+
|
| 24 |
+
""")
|
| 25 |
+
return
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
@app.cell
|
| 29 |
+
def _():
|
| 30 |
+
return
|
| 31 |
+
|
| 32 |
+
|
| 33 |
+
@app.cell
|
| 34 |
+
def _():
|
| 35 |
+
return
|
| 36 |
+
|
| 37 |
+
|
| 38 |
@app.cell
|
| 39 |
def _():
|
| 40 |
import io
|
|
|
|
| 46 |
|
| 47 |
#
|
| 48 |
from html4docx import HtmlToDocx
|
| 49 |
+
from pydantic_ai import DocumentUrl
|
| 50 |
|
| 51 |
# HtmlToDocx = htmlpatch.HtmlToDocx
|
| 52 |
from mistune.plugins.abbr import abbr
|
pyproject.toml
CHANGED
|
@@ -147,6 +147,7 @@ dependencies = [
|
|
| 147 |
"python-multipart==0.0.20",
|
| 148 |
"pytokens==0.2.0",
|
| 149 |
"pyyaml==6.0.3",
|
|
|
|
| 150 |
"referencing==0.36.2",
|
| 151 |
"requests==2.32.5",
|
| 152 |
"rfc3339-validator==0.1.4",
|
|
|
|
| 147 |
"python-multipart==0.0.20",
|
| 148 |
"pytokens==0.2.0",
|
| 149 |
"pyyaml==6.0.3",
|
| 150 |
+
"pyzmq>=27.1.0",
|
| 151 |
"referencing==0.36.2",
|
| 152 |
"requests==2.32.5",
|
| 153 |
"rfc3339-validator==0.1.4",
|