Spaces:
Sleeping
Sleeping
=
commited on
Commit
Β·
acc66a1
1
Parent(s):
5c40eb3
works
Browse files- .theme +1 -0
- Dockerfile +28 -0
- Manifest.toml +1547 -0
- Project.toml +10 -0
- README.md +26 -5
- app.jl +64 -0
- app.jl.html +16 -0
- lib/MyController.jl +109 -0
- lib/Transcriber.jl +45 -0
- lib/__pycache__/youtube_transcripts.cpython-310.pyc +0 -0
- log/dev-2025-03-14.log +980 -0
- log/dev-2025-03-15.log +1182 -0
- log/dev-2025-03-16.log +13 -0
- log/dev-2025-03-17.log +570 -0
- log/dev-2025-03-18.log +13 -0
- myapp.jl +66 -0
.theme
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
default
|
Dockerfile
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM julia:1.10.4
|
2 |
+
|
3 |
+
RUN apt-get update && apt-get install -y python3 python3-pip python3-venv
|
4 |
+
|
5 |
+
RUN useradd --create-home --shell /bin/bash genie
|
6 |
+
RUN mkdir -p /home/genie/app
|
7 |
+
COPY . /home/genie/app
|
8 |
+
WORKDIR /home/genie/app
|
9 |
+
RUN chown -R genie:genie /home/genie
|
10 |
+
USER genie
|
11 |
+
|
12 |
+
## Install youtube transcript api
|
13 |
+
# Install pinecone and other Python dependencies as non-root user
|
14 |
+
RUN python3 -m venv /home/genie/venv && \
|
15 |
+
/home/genie/venv/bin/pip install youtube-transcript-api
|
16 |
+
# Activate the virtual environment
|
17 |
+
RUN echo 'export PATH="/home/genie/venv/bin:$PATH"' >> /home/genie/.bashrc
|
18 |
+
|
19 |
+
RUN mkdir -p /home/genie/.julia/config && \
|
20 |
+
echo 'ENV["PYTHON"] = "/home/genie/venv/bin/python"' >> /home/genie/.julia/config/startup.jl
|
21 |
+
|
22 |
+
EXPOSE 8000
|
23 |
+
EXPOSE 80
|
24 |
+
ENV JULIA_DEPOT_PATH "/home/genie/.julia"
|
25 |
+
|
26 |
+
RUN julia -e 'using Pkg; Pkg.activate("."); Pkg.add(["Genie", "Colors", "Stipple"]); Pkg.precompile()'
|
27 |
+
|
28 |
+
ENTRYPOINT julia --project -e 'using Pkg; Pkg.instantiate(); using Genie; Genie.loadapp(); up(8000, "0.0.0.0", async=false);;'
|
Manifest.toml
ADDED
@@ -0,0 +1,1547 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# This file is machine-generated - editing it directly is not advised
|
2 |
+
|
3 |
+
julia_version = "1.10.4"
|
4 |
+
manifest_format = "2.0"
|
5 |
+
project_hash = "35f7727c626519a47f6e6d05131787fbd377b3cf"
|
6 |
+
|
7 |
+
[[deps.AliasTables]]
|
8 |
+
deps = ["PtrArrays", "Random"]
|
9 |
+
git-tree-sha1 = "9876e1e164b144ca45e9e3198d0b689cadfed9ff"
|
10 |
+
uuid = "66dad0bd-aa9a-41b7-9441-69ab47430ed8"
|
11 |
+
version = "1.1.3"
|
12 |
+
|
13 |
+
[[deps.ArgParse]]
|
14 |
+
deps = ["Logging", "TextWrap"]
|
15 |
+
git-tree-sha1 = "22cf435ac22956a7b45b0168abbc871176e7eecc"
|
16 |
+
uuid = "c7e460c6-2fb9-53a9-8c5b-16f535851c63"
|
17 |
+
version = "1.2.0"
|
18 |
+
|
19 |
+
[[deps.ArgTools]]
|
20 |
+
uuid = "0dad84c5-d112-42e6-8d28-ef12dabb789f"
|
21 |
+
version = "1.1.1"
|
22 |
+
|
23 |
+
[[deps.Artifacts]]
|
24 |
+
uuid = "56f22d72-fd6d-98f1-02f0-08ddc0907c33"
|
25 |
+
|
26 |
+
[[deps.Base64]]
|
27 |
+
uuid = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
|
28 |
+
|
29 |
+
[[deps.BitFlags]]
|
30 |
+
git-tree-sha1 = "0691e34b3bb8be9307330f88d1a3c3f25466c24d"
|
31 |
+
uuid = "d1d4a3ce-64b1-5f1a-9ba4-7e7e69966f35"
|
32 |
+
version = "0.1.9"
|
33 |
+
|
34 |
+
[[deps.Bzip2_jll]]
|
35 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl"]
|
36 |
+
git-tree-sha1 = "1b96ea4a01afe0ea4090c5c8039690672dd13f2e"
|
37 |
+
uuid = "6e34b625-4abd-537c-b88f-471c36dfa7a0"
|
38 |
+
version = "1.0.9+0"
|
39 |
+
|
40 |
+
[[deps.CSTParser]]
|
41 |
+
deps = ["Tokenize"]
|
42 |
+
git-tree-sha1 = "0157e592151e39fa570645e2b2debcdfb8a0f112"
|
43 |
+
uuid = "00ebfdb7-1f24-5e51-bd34-a7502290713f"
|
44 |
+
version = "3.4.3"
|
45 |
+
|
46 |
+
[[deps.Cairo_jll]]
|
47 |
+
deps = ["Artifacts", "Bzip2_jll", "CompilerSupportLibraries_jll", "Fontconfig_jll", "FreeType2_jll", "Glib_jll", "JLLWrappers", "LZO_jll", "Libdl", "Pixman_jll", "Xorg_libXext_jll", "Xorg_libXrender_jll", "Zlib_jll", "libpng_jll"]
|
48 |
+
git-tree-sha1 = "009060c9a6168704143100f36ab08f06c2af4642"
|
49 |
+
uuid = "83423d85-b0ee-5818-9007-b63ccbeb887a"
|
50 |
+
version = "1.18.2+1"
|
51 |
+
|
52 |
+
[[deps.CodeTracking]]
|
53 |
+
deps = ["InteractiveUtils", "UUIDs"]
|
54 |
+
git-tree-sha1 = "7eee164f122511d3e4e1ebadb7956939ea7e1c77"
|
55 |
+
uuid = "da1fd8a2-8d9e-5ec2-8556-3022fb5608a2"
|
56 |
+
version = "1.3.6"
|
57 |
+
|
58 |
+
[[deps.CodecZlib]]
|
59 |
+
deps = ["TranscodingStreams", "Zlib_jll"]
|
60 |
+
git-tree-sha1 = "962834c22b66e32aa10f7611c08c8ca4e20749a9"
|
61 |
+
uuid = "944b1d66-785c-5afd-91f1-9de20f533193"
|
62 |
+
version = "0.7.8"
|
63 |
+
|
64 |
+
[[deps.ColorSchemes]]
|
65 |
+
deps = ["ColorTypes", "ColorVectorSpace", "Colors", "FixedPointNumbers", "PrecompileTools", "Random"]
|
66 |
+
git-tree-sha1 = "403f2d8e209681fcbd9468a8514efff3ea08452e"
|
67 |
+
uuid = "35d6a980-a343-548e-a6ea-1d62b119f2f4"
|
68 |
+
version = "3.29.0"
|
69 |
+
|
70 |
+
[[deps.ColorTypes]]
|
71 |
+
deps = ["FixedPointNumbers", "Random"]
|
72 |
+
git-tree-sha1 = "c7acce7a7e1078a20a285211dd73cd3941a871d6"
|
73 |
+
uuid = "3da002f7-5984-5a60-b8a6-cbb66c0b333f"
|
74 |
+
version = "0.12.0"
|
75 |
+
|
76 |
+
[deps.ColorTypes.extensions]
|
77 |
+
StyledStringsExt = "StyledStrings"
|
78 |
+
|
79 |
+
[deps.ColorTypes.weakdeps]
|
80 |
+
StyledStrings = "f489334b-da3d-4c2e-b8f0-e476e12c162b"
|
81 |
+
|
82 |
+
[[deps.ColorVectorSpace]]
|
83 |
+
deps = ["ColorTypes", "FixedPointNumbers", "LinearAlgebra", "Requires", "Statistics", "TensorCore"]
|
84 |
+
git-tree-sha1 = "8b3b6f87ce8f65a2b4f857528fd8d70086cd72b1"
|
85 |
+
uuid = "c3611d14-8923-5661-9e6a-0046d554d3a4"
|
86 |
+
version = "0.11.0"
|
87 |
+
|
88 |
+
[deps.ColorVectorSpace.extensions]
|
89 |
+
SpecialFunctionsExt = "SpecialFunctions"
|
90 |
+
|
91 |
+
[deps.ColorVectorSpace.weakdeps]
|
92 |
+
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
|
93 |
+
|
94 |
+
[[deps.Colors]]
|
95 |
+
deps = ["ColorTypes", "FixedPointNumbers", "Reexport"]
|
96 |
+
git-tree-sha1 = "64e15186f0aa277e174aa81798f7eb8598e0157e"
|
97 |
+
uuid = "5ae59095-9a9b-59fe-a467-6f913c188581"
|
98 |
+
version = "0.13.0"
|
99 |
+
|
100 |
+
[[deps.CommonMark]]
|
101 |
+
deps = ["Crayons", "PrecompileTools"]
|
102 |
+
git-tree-sha1 = "3faae67b8899797592335832fccf4b3c80bb04fa"
|
103 |
+
uuid = "a80b9123-70ca-4bc0-993e-6e3bcb318db6"
|
104 |
+
version = "0.8.15"
|
105 |
+
|
106 |
+
[[deps.Compat]]
|
107 |
+
deps = ["TOML", "UUIDs"]
|
108 |
+
git-tree-sha1 = "8ae8d32e09f0dcf42a36b90d4e17f5dd2e4c4215"
|
109 |
+
uuid = "34da2185-b29b-5c13-b0c7-acf172513d20"
|
110 |
+
version = "4.16.0"
|
111 |
+
weakdeps = ["Dates", "LinearAlgebra"]
|
112 |
+
|
113 |
+
[deps.Compat.extensions]
|
114 |
+
CompatLinearAlgebraExt = "LinearAlgebra"
|
115 |
+
|
116 |
+
[[deps.CompilerSupportLibraries_jll]]
|
117 |
+
deps = ["Artifacts", "Libdl"]
|
118 |
+
uuid = "e66e0078-7015-5450-92f7-15fbd957f2ae"
|
119 |
+
version = "1.1.1+0"
|
120 |
+
|
121 |
+
[[deps.ConcurrentUtilities]]
|
122 |
+
deps = ["Serialization", "Sockets"]
|
123 |
+
git-tree-sha1 = "d9d26935a0bcffc87d2613ce14c527c99fc543fd"
|
124 |
+
uuid = "f0e56b4a-5159-44fe-b623-3e5288b988bb"
|
125 |
+
version = "2.5.0"
|
126 |
+
|
127 |
+
[[deps.Conda]]
|
128 |
+
deps = ["Downloads", "JSON", "VersionParsing"]
|
129 |
+
git-tree-sha1 = "b19db3927f0db4151cb86d073689f2428e524576"
|
130 |
+
uuid = "8f4d0f93-b110-5947-807f-2305c1781a2d"
|
131 |
+
version = "1.10.2"
|
132 |
+
|
133 |
+
[[deps.Configurations]]
|
134 |
+
deps = ["ExproniconLite", "OrderedCollections", "TOML"]
|
135 |
+
git-tree-sha1 = "4358750bb58a3caefd5f37a4a0c5bfdbbf075252"
|
136 |
+
uuid = "5218b696-f38b-4ac9-8b61-a12ec717816d"
|
137 |
+
version = "0.17.6"
|
138 |
+
|
139 |
+
[[deps.Contour]]
|
140 |
+
git-tree-sha1 = "439e35b0b36e2e5881738abc8857bd92ad6ff9a8"
|
141 |
+
uuid = "d38c429a-6771-53c6-b99e-75d170b6e991"
|
142 |
+
version = "0.6.3"
|
143 |
+
|
144 |
+
[[deps.Crayons]]
|
145 |
+
git-tree-sha1 = "249fe38abf76d48563e2f4556bebd215aa317e15"
|
146 |
+
uuid = "a8cc5b0e-0ffa-5ad4-8c14-923d3ee1735f"
|
147 |
+
version = "4.1.1"
|
148 |
+
|
149 |
+
[[deps.DataAPI]]
|
150 |
+
git-tree-sha1 = "abe83f3a2f1b857aac70ef8b269080af17764bbe"
|
151 |
+
uuid = "9a962f9c-6df0-11e9-0e5d-c546b8b5ee8a"
|
152 |
+
version = "1.16.0"
|
153 |
+
|
154 |
+
[[deps.DataFrames]]
|
155 |
+
deps = ["Compat", "DataAPI", "DataStructures", "Future", "InlineStrings", "InvertedIndices", "IteratorInterfaceExtensions", "LinearAlgebra", "Markdown", "Missings", "PooledArrays", "PrecompileTools", "PrettyTables", "Printf", "Random", "Reexport", "SentinelArrays", "SortingAlgorithms", "Statistics", "TableTraits", "Tables", "Unicode"]
|
156 |
+
git-tree-sha1 = "fb61b4812c49343d7ef0b533ba982c46021938a6"
|
157 |
+
uuid = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
|
158 |
+
version = "1.7.0"
|
159 |
+
|
160 |
+
[[deps.DataStructures]]
|
161 |
+
deps = ["Compat", "InteractiveUtils", "OrderedCollections"]
|
162 |
+
git-tree-sha1 = "1d0a14036acb104d9e89698bd408f63ab58cdc82"
|
163 |
+
uuid = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
|
164 |
+
version = "0.18.20"
|
165 |
+
|
166 |
+
[[deps.DataValueInterfaces]]
|
167 |
+
git-tree-sha1 = "bfc1187b79289637fa0ef6d4436ebdfe6905cbd6"
|
168 |
+
uuid = "e2d170a0-9d28-54be-80f0-106bbe20a464"
|
169 |
+
version = "1.0.0"
|
170 |
+
|
171 |
+
[[deps.Dates]]
|
172 |
+
deps = ["Printf"]
|
173 |
+
uuid = "ade2ca70-3891-5945-98fb-dc099432e06a"
|
174 |
+
|
175 |
+
[[deps.Dbus_jll]]
|
176 |
+
deps = ["Artifacts", "Expat_jll", "JLLWrappers", "Libdl"]
|
177 |
+
git-tree-sha1 = "fc173b380865f70627d7dd1190dc2fce6cc105af"
|
178 |
+
uuid = "ee1fde0b-3d02-5ea6-8484-8dfef6360eab"
|
179 |
+
version = "1.14.10+0"
|
180 |
+
|
181 |
+
[[deps.DelimitedFiles]]
|
182 |
+
deps = ["Mmap"]
|
183 |
+
git-tree-sha1 = "9e2f36d3c96a820c678f2f1f1782582fcf685bae"
|
184 |
+
uuid = "8bb1440f-4735-579b-a4ab-409b98df4dab"
|
185 |
+
version = "1.9.1"
|
186 |
+
|
187 |
+
[[deps.Distributed]]
|
188 |
+
deps = ["Random", "Serialization", "Sockets"]
|
189 |
+
uuid = "8ba89e20-285c-5b6f-9357-94700520ee1b"
|
190 |
+
|
191 |
+
[[deps.DocStringExtensions]]
|
192 |
+
deps = ["LibGit2"]
|
193 |
+
git-tree-sha1 = "2fb1e02f2b635d0845df5d7c167fec4dd739b00d"
|
194 |
+
uuid = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
|
195 |
+
version = "0.9.3"
|
196 |
+
|
197 |
+
[[deps.DotEnv]]
|
198 |
+
deps = ["PrecompileTools"]
|
199 |
+
git-tree-sha1 = "92e88cb68a5b10545234f46dfaeb2fa8a8a50c45"
|
200 |
+
uuid = "4dc1fcf4-5e3b-5448-94ab-0c38ec0385c1"
|
201 |
+
version = "1.0.0"
|
202 |
+
|
203 |
+
[[deps.Downloads]]
|
204 |
+
deps = ["ArgTools", "FileWatching", "LibCURL", "NetworkOptions"]
|
205 |
+
uuid = "f43a241f-c20a-4ad4-852c-f6b1247861c6"
|
206 |
+
version = "1.6.0"
|
207 |
+
|
208 |
+
[[deps.EpollShim_jll]]
|
209 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl"]
|
210 |
+
git-tree-sha1 = "8a4be429317c42cfae6a7fc03c31bad1970c310d"
|
211 |
+
uuid = "2702e6a9-849d-5ed8-8c21-79e8b8f9ee43"
|
212 |
+
version = "0.0.20230411+1"
|
213 |
+
|
214 |
+
[[deps.ExceptionUnwrapping]]
|
215 |
+
deps = ["Test"]
|
216 |
+
git-tree-sha1 = "d36f682e590a83d63d1c7dbd287573764682d12a"
|
217 |
+
uuid = "460bff9d-24e4-43bc-9d9f-a8973cb893f4"
|
218 |
+
version = "0.1.11"
|
219 |
+
|
220 |
+
[[deps.Expat_jll]]
|
221 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl"]
|
222 |
+
git-tree-sha1 = "d55dffd9ae73ff72f1c0482454dcf2ec6c6c4a63"
|
223 |
+
uuid = "2e619515-83b5-522b-bb60-26c02a35a201"
|
224 |
+
version = "2.6.5+0"
|
225 |
+
|
226 |
+
[[deps.ExproniconLite]]
|
227 |
+
git-tree-sha1 = "c13f0b150373771b0fdc1713c97860f8df12e6c2"
|
228 |
+
uuid = "55351af7-c7e9-48d6-89ff-24e801d99491"
|
229 |
+
version = "0.10.14"
|
230 |
+
|
231 |
+
[[deps.EzXML]]
|
232 |
+
deps = ["Printf", "XML2_jll"]
|
233 |
+
git-tree-sha1 = "380053d61bb9064d6aa4a9777413b40429c79901"
|
234 |
+
uuid = "8f5d6c58-4d21-5cfd-889c-e3ad7ee6a615"
|
235 |
+
version = "1.2.0"
|
236 |
+
|
237 |
+
[[deps.FFMPEG]]
|
238 |
+
deps = ["FFMPEG_jll"]
|
239 |
+
git-tree-sha1 = "53ebe7511fa11d33bec688a9178fac4e49eeee00"
|
240 |
+
uuid = "c87230d0-a227-11e9-1b43-d7ebe4e7570a"
|
241 |
+
version = "0.4.2"
|
242 |
+
|
243 |
+
[[deps.FFMPEG_jll]]
|
244 |
+
deps = ["Artifacts", "Bzip2_jll", "FreeType2_jll", "FriBidi_jll", "JLLWrappers", "LAME_jll", "Libdl", "Ogg_jll", "OpenSSL_jll", "Opus_jll", "PCRE2_jll", "Zlib_jll", "libaom_jll", "libass_jll", "libfdk_aac_jll", "libvorbis_jll", "x264_jll", "x265_jll"]
|
245 |
+
git-tree-sha1 = "466d45dc38e15794ec7d5d63ec03d776a9aff36e"
|
246 |
+
uuid = "b22a6f82-2f65-5046-a5b2-351ab43fb4e5"
|
247 |
+
version = "4.4.4+1"
|
248 |
+
|
249 |
+
[[deps.FilePathsBase]]
|
250 |
+
deps = ["Compat", "Dates"]
|
251 |
+
git-tree-sha1 = "3bab2c5aa25e7840a4b065805c0cdfc01f3068d2"
|
252 |
+
uuid = "48062228-2e41-5def-b9a4-89aafe57970f"
|
253 |
+
version = "0.9.24"
|
254 |
+
weakdeps = ["Mmap", "Test"]
|
255 |
+
|
256 |
+
[deps.FilePathsBase.extensions]
|
257 |
+
FilePathsBaseMmapExt = "Mmap"
|
258 |
+
FilePathsBaseTestExt = "Test"
|
259 |
+
|
260 |
+
[[deps.FileWatching]]
|
261 |
+
uuid = "7b1f6079-737a-58dc-b8bc-7a2ca5c1b5ee"
|
262 |
+
|
263 |
+
[[deps.FixedPointNumbers]]
|
264 |
+
deps = ["Statistics"]
|
265 |
+
git-tree-sha1 = "05882d6995ae5c12bb5f36dd2ed3f61c98cbb172"
|
266 |
+
uuid = "53c48c17-4a7d-5ca2-90c5-79b7896eea93"
|
267 |
+
version = "0.8.5"
|
268 |
+
|
269 |
+
[[deps.Fontconfig_jll]]
|
270 |
+
deps = ["Artifacts", "Bzip2_jll", "Expat_jll", "FreeType2_jll", "JLLWrappers", "Libdl", "Libuuid_jll", "Zlib_jll"]
|
271 |
+
git-tree-sha1 = "21fac3c77d7b5a9fc03b0ec503aa1a6392c34d2b"
|
272 |
+
uuid = "a3f928ae-7b40-5064-980b-68af3947d34b"
|
273 |
+
version = "2.15.0+0"
|
274 |
+
|
275 |
+
[[deps.Format]]
|
276 |
+
git-tree-sha1 = "9c68794ef81b08086aeb32eeaf33531668d5f5fc"
|
277 |
+
uuid = "1fa38f19-a742-5d3f-a2b9-30dd87b9d5f8"
|
278 |
+
version = "1.3.7"
|
279 |
+
|
280 |
+
[[deps.FreeType2_jll]]
|
281 |
+
deps = ["Artifacts", "Bzip2_jll", "JLLWrappers", "Libdl", "Zlib_jll"]
|
282 |
+
git-tree-sha1 = "786e968a8d2fb167f2e4880baba62e0e26bd8e4e"
|
283 |
+
uuid = "d7e528f0-a631-5988-bf34-fe36492bcfd7"
|
284 |
+
version = "2.13.3+1"
|
285 |
+
|
286 |
+
[[deps.FriBidi_jll]]
|
287 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl"]
|
288 |
+
git-tree-sha1 = "846f7026a9decf3679419122b49f8a1fdb48d2d5"
|
289 |
+
uuid = "559328eb-81f9-559d-9380-de523a88c83c"
|
290 |
+
version = "1.0.16+0"
|
291 |
+
|
292 |
+
[[deps.Future]]
|
293 |
+
deps = ["Random"]
|
294 |
+
uuid = "9fa8497b-333b-5362-9e8d-4d0656e87820"
|
295 |
+
|
296 |
+
[[deps.GLFW_jll]]
|
297 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Libglvnd_jll", "Xorg_libXcursor_jll", "Xorg_libXi_jll", "Xorg_libXinerama_jll", "Xorg_libXrandr_jll", "libdecor_jll", "xkbcommon_jll"]
|
298 |
+
git-tree-sha1 = "fcb0584ff34e25155876418979d4c8971243bb89"
|
299 |
+
uuid = "0656b61e-2033-5cc2-a64a-77c0f6c09b89"
|
300 |
+
version = "3.4.0+2"
|
301 |
+
|
302 |
+
[[deps.GMP_jll]]
|
303 |
+
deps = ["Artifacts", "Libdl"]
|
304 |
+
uuid = "781609d7-10c4-51f6-84f2-b8444358ff6d"
|
305 |
+
version = "6.2.1+6"
|
306 |
+
|
307 |
+
[[deps.GR]]
|
308 |
+
deps = ["Artifacts", "Base64", "DelimitedFiles", "Downloads", "GR_jll", "HTTP", "JSON", "Libdl", "LinearAlgebra", "Preferences", "Printf", "Qt6Wayland_jll", "Random", "Serialization", "Sockets", "TOML", "Tar", "Test", "p7zip_jll"]
|
309 |
+
git-tree-sha1 = "0ff136326605f8e06e9bcf085a356ab312eef18a"
|
310 |
+
uuid = "28b8d3ca-fb5f-59d9-8090-bfdbd6d07a71"
|
311 |
+
version = "0.73.13"
|
312 |
+
|
313 |
+
[[deps.GR_jll]]
|
314 |
+
deps = ["Artifacts", "Bzip2_jll", "Cairo_jll", "FFMPEG_jll", "Fontconfig_jll", "FreeType2_jll", "GLFW_jll", "JLLWrappers", "JpegTurbo_jll", "Libdl", "Libtiff_jll", "Pixman_jll", "Qt6Base_jll", "Zlib_jll", "libpng_jll"]
|
315 |
+
git-tree-sha1 = "9cb62849057df859575fc1dda1e91b82f8609709"
|
316 |
+
uuid = "d2c73de3-f751-5644-a686-071e5b155ba9"
|
317 |
+
version = "0.73.13+0"
|
318 |
+
|
319 |
+
[[deps.GarishPrint]]
|
320 |
+
deps = ["Configurations", "Preferences"]
|
321 |
+
git-tree-sha1 = "41136d24cc02c4d7c2b8c8982823fedac66d0a45"
|
322 |
+
uuid = "b0ab02a7-8576-43f7-aa76-eaa7c3897c54"
|
323 |
+
version = "0.5.1"
|
324 |
+
|
325 |
+
[[deps.Genie]]
|
326 |
+
deps = ["ArgParse", "Base64", "Dates", "Distributed", "DotEnv", "EzXML", "FilePathsBase", "HTTP", "HttpCommon", "Inflector", "JSON3", "JuliaFormatter", "Logging", "LoggingExtras", "LoweredCodeUtils", "MIMEs", "Markdown", "Millboard", "Nettle", "OrderedCollections", "Pkg", "REPL", "Random", "Reexport", "Revise", "SHA", "Serialization", "Sockets", "UUIDs", "Unicode", "XML2_jll", "YAML"]
|
327 |
+
git-tree-sha1 = "2b0926e0b6c2a0d09c49e9a27a660fc2f83a9d01"
|
328 |
+
uuid = "c43c736e-a2d1-11e8-161f-af95117fbd1e"
|
329 |
+
version = "5.33.7"
|
330 |
+
|
331 |
+
[[deps.GenieAutoReload]]
|
332 |
+
deps = ["Distributed", "Genie", "Logging", "Revise"]
|
333 |
+
git-tree-sha1 = "d2c018ae2b097631c09a09d9e88cf551e3a378fc"
|
334 |
+
uuid = "c6228e60-a24f-11e9-1776-c313472ebacc"
|
335 |
+
version = "2.2.5"
|
336 |
+
|
337 |
+
[[deps.GenieDevTools]]
|
338 |
+
deps = ["Dates", "Genie", "RemoteREPL", "Revise", "Stipple", "StippleUI", "Tables"]
|
339 |
+
git-tree-sha1 = "5c84de04cde55e272e760e7ef021bb645f53bd67"
|
340 |
+
uuid = "4e5d9629-6565-4102-a9ff-45c707eb060e"
|
341 |
+
version = "2.12.1"
|
342 |
+
|
343 |
+
[[deps.GenieFramework]]
|
344 |
+
deps = ["GarishPrint", "Genie", "GenieAutoReload", "GenieDevTools", "GeniePackageManager", "Reexport", "Revise", "Stipple", "StipplePivotTable", "StipplePlotly", "StippleTable", "StippleTabs", "StippleUI"]
|
345 |
+
git-tree-sha1 = "3dcb24f1559dd015e09cb78aa4636b710c60a49e"
|
346 |
+
uuid = "a59fdf5c-6bf0-4f5d-949c-a137c9e2f353"
|
347 |
+
version = "3.0.1"
|
348 |
+
|
349 |
+
[[deps.GeniePackageManager]]
|
350 |
+
deps = ["Base64", "Genie", "Pkg"]
|
351 |
+
git-tree-sha1 = "3e0a96753f53eab0d15ad837ef1a3742389c928b"
|
352 |
+
uuid = "3bdcc7f3-4b7d-42a1-be8e-724ecf5e3574"
|
353 |
+
version = "1.1.0"
|
354 |
+
|
355 |
+
[[deps.GenieSession]]
|
356 |
+
deps = ["Dates", "Genie", "HTTP", "Logging", "Random", "SHA"]
|
357 |
+
git-tree-sha1 = "936838b4eccdd5a2b62b695558d5dbc1f5f56560"
|
358 |
+
uuid = "03cc5b98-4f21-4eb6-99f2-22eced81f962"
|
359 |
+
version = "1.1.2"
|
360 |
+
|
361 |
+
[[deps.GenieSessionFileSession]]
|
362 |
+
deps = ["Genie", "GenieSession", "Logging", "Serialization"]
|
363 |
+
git-tree-sha1 = "5f5ffc33251d0d5f110072f7a0c07717c9453c97"
|
364 |
+
uuid = "5c4fdc26-39e3-47cf-9034-e533e09961c2"
|
365 |
+
version = "1.1.0"
|
366 |
+
|
367 |
+
[[deps.Gettext_jll]]
|
368 |
+
deps = ["Artifacts", "CompilerSupportLibraries_jll", "JLLWrappers", "Libdl", "Libiconv_jll", "Pkg", "XML2_jll"]
|
369 |
+
git-tree-sha1 = "9b02998aba7bf074d14de89f9d37ca24a1a0b046"
|
370 |
+
uuid = "78b55507-aeef-58d4-861c-77aaff3498b1"
|
371 |
+
version = "0.21.0+0"
|
372 |
+
|
373 |
+
[[deps.Glib_jll]]
|
374 |
+
deps = ["Artifacts", "Gettext_jll", "JLLWrappers", "Libdl", "Libffi_jll", "Libiconv_jll", "Libmount_jll", "PCRE2_jll", "Zlib_jll"]
|
375 |
+
git-tree-sha1 = "b0036b392358c80d2d2124746c2bf3d48d457938"
|
376 |
+
uuid = "7746bdde-850d-59dc-9ae8-88ece973131d"
|
377 |
+
version = "2.82.4+0"
|
378 |
+
|
379 |
+
[[deps.Glob]]
|
380 |
+
git-tree-sha1 = "97285bbd5230dd766e9ef6749b80fc617126d496"
|
381 |
+
uuid = "c27321d9-0574-5035-807b-f59d2c89b15c"
|
382 |
+
version = "1.3.1"
|
383 |
+
|
384 |
+
[[deps.Graphite2_jll]]
|
385 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"]
|
386 |
+
git-tree-sha1 = "01979f9b37367603e2848ea225918a3b3861b606"
|
387 |
+
uuid = "3b182d85-2403-5c21-9c21-1e1f0cc25472"
|
388 |
+
version = "1.3.14+1"
|
389 |
+
|
390 |
+
[[deps.Grisu]]
|
391 |
+
git-tree-sha1 = "53bb909d1151e57e2484c3d1b53e19552b887fb2"
|
392 |
+
uuid = "42e2da0e-8278-4e71-bc24-59509adca0fe"
|
393 |
+
version = "1.0.2"
|
394 |
+
|
395 |
+
[[deps.HTTP]]
|
396 |
+
deps = ["Base64", "CodecZlib", "ConcurrentUtilities", "Dates", "ExceptionUnwrapping", "Logging", "LoggingExtras", "MbedTLS", "NetworkOptions", "OpenSSL", "PrecompileTools", "Random", "SimpleBufferStream", "Sockets", "URIs", "UUIDs"]
|
397 |
+
git-tree-sha1 = "c67b33b085f6e2faf8bf79a61962e7339a81129c"
|
398 |
+
uuid = "cd3eb016-35fb-5094-929b-558a96fad6f3"
|
399 |
+
version = "1.10.15"
|
400 |
+
|
401 |
+
[[deps.HarfBuzz_jll]]
|
402 |
+
deps = ["Artifacts", "Cairo_jll", "Fontconfig_jll", "FreeType2_jll", "Glib_jll", "Graphite2_jll", "JLLWrappers", "Libdl", "Libffi_jll"]
|
403 |
+
git-tree-sha1 = "55c53be97790242c29031e5cd45e8ac296dadda3"
|
404 |
+
uuid = "2e76f6c2-a576-52d4-95c1-20adfe4de566"
|
405 |
+
version = "8.5.0+0"
|
406 |
+
|
407 |
+
[[deps.HttpCommon]]
|
408 |
+
deps = ["Dates", "Nullables", "Test", "URIParser"]
|
409 |
+
git-tree-sha1 = "46313284237aa6ca67a6bce6d6fbd323d19cff59"
|
410 |
+
uuid = "77172c1b-203f-54ac-aa54-3f1198fe9f90"
|
411 |
+
version = "0.5.0"
|
412 |
+
|
413 |
+
[[deps.Inflector]]
|
414 |
+
deps = ["Unicode"]
|
415 |
+
git-tree-sha1 = "c82a172a07c94887709e613cc67cec0b472fb742"
|
416 |
+
uuid = "6d011eab-0732-4556-8808-e463c76bf3b6"
|
417 |
+
version = "1.1.0"
|
418 |
+
|
419 |
+
[[deps.InlineStrings]]
|
420 |
+
git-tree-sha1 = "6a9fde685a7ac1eb3495f8e812c5a7c3711c2d5e"
|
421 |
+
uuid = "842dd82b-1e85-43dc-bf29-5d0ee9dffc48"
|
422 |
+
version = "1.4.3"
|
423 |
+
|
424 |
+
[deps.InlineStrings.extensions]
|
425 |
+
ArrowTypesExt = "ArrowTypes"
|
426 |
+
ParsersExt = "Parsers"
|
427 |
+
|
428 |
+
[deps.InlineStrings.weakdeps]
|
429 |
+
ArrowTypes = "31f734f8-188a-4ce0-8406-c8a06bd891cd"
|
430 |
+
Parsers = "69de0a69-1ddd-5017-9359-2bf0b02dc9f0"
|
431 |
+
|
432 |
+
[[deps.InteractiveUtils]]
|
433 |
+
deps = ["Markdown"]
|
434 |
+
uuid = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
|
435 |
+
|
436 |
+
[[deps.InvertedIndices]]
|
437 |
+
git-tree-sha1 = "6da3c4316095de0f5ee2ebd875df8721e7e0bdbe"
|
438 |
+
uuid = "41ab1584-1d38-5bbf-9106-f11c6c58b48f"
|
439 |
+
version = "1.3.1"
|
440 |
+
|
441 |
+
[[deps.IrrationalConstants]]
|
442 |
+
git-tree-sha1 = "e2222959fbc6c19554dc15174c81bf7bf3aa691c"
|
443 |
+
uuid = "92d709cd-6900-40b7-9082-c6be49f344b6"
|
444 |
+
version = "0.2.4"
|
445 |
+
|
446 |
+
[[deps.IteratorInterfaceExtensions]]
|
447 |
+
git-tree-sha1 = "a3f24677c21f5bbe9d2a714f95dcd58337fb2856"
|
448 |
+
uuid = "82899510-4779-5014-852e-03e436cf321d"
|
449 |
+
version = "1.0.0"
|
450 |
+
|
451 |
+
[[deps.JLFzf]]
|
452 |
+
deps = ["Pipe", "REPL", "Random", "fzf_jll"]
|
453 |
+
git-tree-sha1 = "71b48d857e86bf7a1838c4736545699974ce79a2"
|
454 |
+
uuid = "1019f520-868f-41f5-a6de-eb00f4b6a39c"
|
455 |
+
version = "0.1.9"
|
456 |
+
|
457 |
+
[[deps.JLLWrappers]]
|
458 |
+
deps = ["Artifacts", "Preferences"]
|
459 |
+
git-tree-sha1 = "a007feb38b422fbdab534406aeca1b86823cb4d6"
|
460 |
+
uuid = "692b3bcd-3c85-4b1f-b108-f13ce0eb3210"
|
461 |
+
version = "1.7.0"
|
462 |
+
|
463 |
+
[[deps.JSON]]
|
464 |
+
deps = ["Dates", "Mmap", "Parsers", "Unicode"]
|
465 |
+
git-tree-sha1 = "31e996f0a15c7b280ba9f76636b3ff9e2ae58c9a"
|
466 |
+
uuid = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
|
467 |
+
version = "0.21.4"
|
468 |
+
|
469 |
+
[[deps.JSON3]]
|
470 |
+
deps = ["Dates", "Mmap", "Parsers", "PrecompileTools", "StructTypes", "UUIDs"]
|
471 |
+
git-tree-sha1 = "1d322381ef7b087548321d3f878cb4c9bd8f8f9b"
|
472 |
+
uuid = "0f8b85d8-7281-11e9-16c2-39a750bddbf1"
|
473 |
+
version = "1.14.1"
|
474 |
+
|
475 |
+
[deps.JSON3.extensions]
|
476 |
+
JSON3ArrowExt = ["ArrowTypes"]
|
477 |
+
|
478 |
+
[deps.JSON3.weakdeps]
|
479 |
+
ArrowTypes = "31f734f8-188a-4ce0-8406-c8a06bd891cd"
|
480 |
+
|
481 |
+
[[deps.JpegTurbo_jll]]
|
482 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl"]
|
483 |
+
git-tree-sha1 = "eac1206917768cb54957c65a615460d87b455fc1"
|
484 |
+
uuid = "aacddb02-875f-59d6-b918-886e6ef4fbf8"
|
485 |
+
version = "3.1.1+0"
|
486 |
+
|
487 |
+
[[deps.JuliaFormatter]]
|
488 |
+
deps = ["CSTParser", "CommonMark", "DataStructures", "Glob", "PrecompileTools", "TOML", "Tokenize"]
|
489 |
+
git-tree-sha1 = "59cf7ad64f1b0708a4fa4369879d33bad3239b56"
|
490 |
+
uuid = "98e50ef6-434e-11e9-1051-2b60c6c9e899"
|
491 |
+
version = "1.0.62"
|
492 |
+
|
493 |
+
[[deps.JuliaInterpreter]]
|
494 |
+
deps = ["CodeTracking", "InteractiveUtils", "Random", "UUIDs"]
|
495 |
+
git-tree-sha1 = "a434e811d10e7cbf4f0674285542e697dca605d0"
|
496 |
+
uuid = "aa1ae85d-cabe-5617-a682-6adf51b2e16a"
|
497 |
+
version = "0.9.42"
|
498 |
+
|
499 |
+
[[deps.LAME_jll]]
|
500 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl"]
|
501 |
+
git-tree-sha1 = "170b660facf5df5de098d866564877e119141cbd"
|
502 |
+
uuid = "c1c5ebd0-6772-5130-a774-d5fcae4a789d"
|
503 |
+
version = "3.100.2+0"
|
504 |
+
|
505 |
+
[[deps.LERC_jll]]
|
506 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl"]
|
507 |
+
git-tree-sha1 = "aaafe88dccbd957a8d82f7d05be9b69172e0cee3"
|
508 |
+
uuid = "88015f11-f218-50d7-93a8-a6af411a945d"
|
509 |
+
version = "4.0.1+0"
|
510 |
+
|
511 |
+
[[deps.LLVMOpenMP_jll]]
|
512 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl"]
|
513 |
+
git-tree-sha1 = "78211fb6cbc872f77cad3fc0b6cf647d923f4929"
|
514 |
+
uuid = "1d63c593-3942-5779-bab2-d838dc0a180e"
|
515 |
+
version = "18.1.7+0"
|
516 |
+
|
517 |
+
[[deps.LZO_jll]]
|
518 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl"]
|
519 |
+
git-tree-sha1 = "1c602b1127f4751facb671441ca72715cc95938a"
|
520 |
+
uuid = "dd4b983a-f0e5-5f8d-a1b7-129d4a5fb1ac"
|
521 |
+
version = "2.10.3+0"
|
522 |
+
|
523 |
+
[[deps.LaTeXStrings]]
|
524 |
+
git-tree-sha1 = "dda21b8cbd6a6c40d9d02a73230f9d70fed6918c"
|
525 |
+
uuid = "b964fa9f-0449-5b57-a5c2-d3ea65f4040f"
|
526 |
+
version = "1.4.0"
|
527 |
+
|
528 |
+
[[deps.Latexify]]
|
529 |
+
deps = ["Format", "InteractiveUtils", "LaTeXStrings", "MacroTools", "Markdown", "OrderedCollections", "Requires"]
|
530 |
+
git-tree-sha1 = "cd714447457c660382fe634710fb56eb255ee42e"
|
531 |
+
uuid = "23fbe1c1-3f47-55db-b15f-69d7ec21a316"
|
532 |
+
version = "0.16.6"
|
533 |
+
|
534 |
+
[deps.Latexify.extensions]
|
535 |
+
DataFramesExt = "DataFrames"
|
536 |
+
SparseArraysExt = "SparseArrays"
|
537 |
+
SymEngineExt = "SymEngine"
|
538 |
+
|
539 |
+
[deps.Latexify.weakdeps]
|
540 |
+
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
|
541 |
+
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
|
542 |
+
SymEngine = "123dc426-2d89-5057-bbad-38513e3affd8"
|
543 |
+
|
544 |
+
[[deps.LibCURL]]
|
545 |
+
deps = ["LibCURL_jll", "MozillaCACerts_jll"]
|
546 |
+
uuid = "b27032c2-a3e7-50c8-80cd-2d36dbcbfd21"
|
547 |
+
version = "0.6.4"
|
548 |
+
|
549 |
+
[[deps.LibCURL_jll]]
|
550 |
+
deps = ["Artifacts", "LibSSH2_jll", "Libdl", "MbedTLS_jll", "Zlib_jll", "nghttp2_jll"]
|
551 |
+
uuid = "deac9b47-8bc7-5906-a0fe-35ac56dc84c0"
|
552 |
+
version = "8.4.0+0"
|
553 |
+
|
554 |
+
[[deps.LibGit2]]
|
555 |
+
deps = ["Base64", "LibGit2_jll", "NetworkOptions", "Printf", "SHA"]
|
556 |
+
uuid = "76f85450-5226-5b5a-8eaa-529ad045b433"
|
557 |
+
|
558 |
+
[[deps.LibGit2_jll]]
|
559 |
+
deps = ["Artifacts", "LibSSH2_jll", "Libdl", "MbedTLS_jll"]
|
560 |
+
uuid = "e37daf67-58a4-590a-8e99-b0245dd2ffc5"
|
561 |
+
version = "1.6.4+0"
|
562 |
+
|
563 |
+
[[deps.LibSSH2_jll]]
|
564 |
+
deps = ["Artifacts", "Libdl", "MbedTLS_jll"]
|
565 |
+
uuid = "29816b5a-b9ab-546f-933c-edad1886dfa8"
|
566 |
+
version = "1.11.0+1"
|
567 |
+
|
568 |
+
[[deps.Libdl]]
|
569 |
+
uuid = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
|
570 |
+
|
571 |
+
[[deps.Libffi_jll]]
|
572 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"]
|
573 |
+
git-tree-sha1 = "27ecae93dd25ee0909666e6835051dd684cc035e"
|
574 |
+
uuid = "e9f186c6-92d2-5b65-8a66-fee21dc1b490"
|
575 |
+
version = "3.2.2+2"
|
576 |
+
|
577 |
+
[[deps.Libgcrypt_jll]]
|
578 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Libgpg_error_jll"]
|
579 |
+
git-tree-sha1 = "8be878062e0ffa2c3f67bb58a595375eda5de80b"
|
580 |
+
uuid = "d4300ac3-e22c-5743-9152-c294e39db1e4"
|
581 |
+
version = "1.11.0+0"
|
582 |
+
|
583 |
+
[[deps.Libglvnd_jll]]
|
584 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Xorg_libX11_jll", "Xorg_libXext_jll"]
|
585 |
+
git-tree-sha1 = "ff3b4b9d35de638936a525ecd36e86a8bb919d11"
|
586 |
+
uuid = "7e76a0d4-f3c7-5321-8279-8d96eeed0f29"
|
587 |
+
version = "1.7.0+0"
|
588 |
+
|
589 |
+
[[deps.Libgpg_error_jll]]
|
590 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl"]
|
591 |
+
git-tree-sha1 = "df37206100d39f79b3376afb6b9cee4970041c61"
|
592 |
+
uuid = "7add5ba3-2f88-524e-9cd5-f83b8a55f7b8"
|
593 |
+
version = "1.51.1+0"
|
594 |
+
|
595 |
+
[[deps.Libiconv_jll]]
|
596 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl"]
|
597 |
+
git-tree-sha1 = "be484f5c92fad0bd8acfef35fe017900b0b73809"
|
598 |
+
uuid = "94ce4f54-9a6c-5748-9c1c-f9c7231a4531"
|
599 |
+
version = "1.18.0+0"
|
600 |
+
|
601 |
+
[[deps.Libmount_jll]]
|
602 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl"]
|
603 |
+
git-tree-sha1 = "89211ea35d9df5831fca5d33552c02bd33878419"
|
604 |
+
uuid = "4b2f31a3-9ecc-558c-b454-b3730dcb73e9"
|
605 |
+
version = "2.40.3+0"
|
606 |
+
|
607 |
+
[[deps.Libtiff_jll]]
|
608 |
+
deps = ["Artifacts", "JLLWrappers", "JpegTurbo_jll", "LERC_jll", "Libdl", "XZ_jll", "Zlib_jll", "Zstd_jll"]
|
609 |
+
git-tree-sha1 = "4ab7581296671007fc33f07a721631b8855f4b1d"
|
610 |
+
uuid = "89763e89-9b03-5906-acba-b20f662cd828"
|
611 |
+
version = "4.7.1+0"
|
612 |
+
|
613 |
+
[[deps.Libuuid_jll]]
|
614 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl"]
|
615 |
+
git-tree-sha1 = "e888ad02ce716b319e6bdb985d2ef300e7089889"
|
616 |
+
uuid = "38a345b3-de98-5d2b-a5d3-14cd9215e700"
|
617 |
+
version = "2.40.3+0"
|
618 |
+
|
619 |
+
[[deps.LinearAlgebra]]
|
620 |
+
deps = ["Libdl", "OpenBLAS_jll", "libblastrampoline_jll"]
|
621 |
+
uuid = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
|
622 |
+
|
623 |
+
[[deps.LogExpFunctions]]
|
624 |
+
deps = ["DocStringExtensions", "IrrationalConstants", "LinearAlgebra"]
|
625 |
+
git-tree-sha1 = "13ca9e2586b89836fd20cccf56e57e2b9ae7f38f"
|
626 |
+
uuid = "2ab3a3ac-af41-5b50-aa03-7779005ae688"
|
627 |
+
version = "0.3.29"
|
628 |
+
|
629 |
+
[deps.LogExpFunctions.extensions]
|
630 |
+
LogExpFunctionsChainRulesCoreExt = "ChainRulesCore"
|
631 |
+
LogExpFunctionsChangesOfVariablesExt = "ChangesOfVariables"
|
632 |
+
LogExpFunctionsInverseFunctionsExt = "InverseFunctions"
|
633 |
+
|
634 |
+
[deps.LogExpFunctions.weakdeps]
|
635 |
+
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
|
636 |
+
ChangesOfVariables = "9e997f8a-9a97-42d5-a9f1-ce6bfc15e2c0"
|
637 |
+
InverseFunctions = "3587e190-3f89-42d0-90ee-14403ec27112"
|
638 |
+
|
639 |
+
[[deps.Logging]]
|
640 |
+
uuid = "56ddb016-857b-54e1-b83d-db4d58db5568"
|
641 |
+
|
642 |
+
[[deps.LoggingExtras]]
|
643 |
+
deps = ["Dates", "Logging"]
|
644 |
+
git-tree-sha1 = "f02b56007b064fbfddb4c9cd60161b6dd0f40df3"
|
645 |
+
uuid = "e6f89c97-d47a-5376-807f-9c37f3926c36"
|
646 |
+
version = "1.1.0"
|
647 |
+
|
648 |
+
[[deps.LoweredCodeUtils]]
|
649 |
+
deps = ["JuliaInterpreter"]
|
650 |
+
git-tree-sha1 = "688d6d9e098109051ae33d126fcfc88c4ce4a021"
|
651 |
+
uuid = "6f1432cf-f94c-5a45-995e-cdbf5db27b0b"
|
652 |
+
version = "3.1.0"
|
653 |
+
|
654 |
+
[[deps.MIMEs]]
|
655 |
+
git-tree-sha1 = "1833212fd6f580c20d4291da9c1b4e8a655b128e"
|
656 |
+
uuid = "6c6e2e6c-3030-632d-7369-2d6c69616d65"
|
657 |
+
version = "1.0.0"
|
658 |
+
|
659 |
+
[[deps.MacroTools]]
|
660 |
+
git-tree-sha1 = "72aebe0b5051e5143a079a4685a46da330a40472"
|
661 |
+
uuid = "1914dd2f-81c6-5fcd-8719-6d5c9610ff09"
|
662 |
+
version = "0.5.15"
|
663 |
+
|
664 |
+
[[deps.Markdown]]
|
665 |
+
deps = ["Base64"]
|
666 |
+
uuid = "d6f4376e-aef5-505a-96c1-9c027394607a"
|
667 |
+
|
668 |
+
[[deps.MbedTLS]]
|
669 |
+
deps = ["Dates", "MbedTLS_jll", "MozillaCACerts_jll", "NetworkOptions", "Random", "Sockets"]
|
670 |
+
git-tree-sha1 = "c067a280ddc25f196b5e7df3877c6b226d390aaf"
|
671 |
+
uuid = "739be429-bea8-5141-9913-cc70e7f3736d"
|
672 |
+
version = "1.1.9"
|
673 |
+
|
674 |
+
[[deps.MbedTLS_jll]]
|
675 |
+
deps = ["Artifacts", "Libdl"]
|
676 |
+
uuid = "c8ffd9c3-330d-5841-b78e-0817d7145fa1"
|
677 |
+
version = "2.28.2+1"
|
678 |
+
|
679 |
+
[[deps.Measures]]
|
680 |
+
git-tree-sha1 = "c13304c81eec1ed3af7fc20e75fb6b26092a1102"
|
681 |
+
uuid = "442fdcdd-2543-5da2-b0f3-8c86c306513e"
|
682 |
+
version = "0.3.2"
|
683 |
+
|
684 |
+
[[deps.Millboard]]
|
685 |
+
git-tree-sha1 = "ea6a5b7e56e76d8051023faaa11d91d1d881dac3"
|
686 |
+
uuid = "39ec1447-df44-5f4c-beaa-866f30b4d3b2"
|
687 |
+
version = "0.2.5"
|
688 |
+
|
689 |
+
[[deps.Missings]]
|
690 |
+
deps = ["DataAPI"]
|
691 |
+
git-tree-sha1 = "ec4f7fbeab05d7747bdf98eb74d130a2a2ed298d"
|
692 |
+
uuid = "e1d29d7a-bbdc-5cf2-9ac0-f12de2c33e28"
|
693 |
+
version = "1.2.0"
|
694 |
+
|
695 |
+
[[deps.Mixers]]
|
696 |
+
deps = ["MacroTools"]
|
697 |
+
git-tree-sha1 = "58ec7ac60dad6e8ca4553225251dfd380e3930dd"
|
698 |
+
uuid = "2a8e4939-dab8-5edc-8f64-72a8776f13de"
|
699 |
+
version = "0.1.2"
|
700 |
+
|
701 |
+
[[deps.Mmap]]
|
702 |
+
uuid = "a63ad114-7e13-5084-954f-fe012c677804"
|
703 |
+
|
704 |
+
[[deps.MozillaCACerts_jll]]
|
705 |
+
uuid = "14a3606d-f60d-562e-9121-12d972cd8159"
|
706 |
+
version = "2023.1.10"
|
707 |
+
|
708 |
+
[[deps.NaNMath]]
|
709 |
+
deps = ["OpenLibm_jll"]
|
710 |
+
git-tree-sha1 = "cc0a5deefdb12ab3a096f00a6d42133af4560d71"
|
711 |
+
uuid = "77ba4419-2d1f-58cd-9bb1-8ffee604a2e3"
|
712 |
+
version = "1.1.2"
|
713 |
+
|
714 |
+
[[deps.Nettle]]
|
715 |
+
deps = ["Libdl", "Nettle_jll"]
|
716 |
+
git-tree-sha1 = "6fa48cbae828267848ee32c1bb31d1652e210d7d"
|
717 |
+
uuid = "49dea1ee-f6fa-5aa6-9a11-8816cee7d4b9"
|
718 |
+
version = "1.0.0"
|
719 |
+
|
720 |
+
[[deps.Nettle_jll]]
|
721 |
+
deps = ["Artifacts", "GMP_jll", "JLLWrappers", "Libdl"]
|
722 |
+
git-tree-sha1 = "fd4678a4bd1f7156c98691200fab47c76b376360"
|
723 |
+
uuid = "4c82536e-c426-54e4-b420-14f461c4ed8b"
|
724 |
+
version = "3.10.1+0"
|
725 |
+
|
726 |
+
[[deps.NetworkOptions]]
|
727 |
+
uuid = "ca575930-c2e3-43a9-ace4-1e988b2c1908"
|
728 |
+
version = "1.2.0"
|
729 |
+
|
730 |
+
[[deps.Nullables]]
|
731 |
+
git-tree-sha1 = "8f87854cc8f3685a60689d8edecaa29d2251979b"
|
732 |
+
uuid = "4d1e1d77-625e-5b40-9113-a560ec7a8ecd"
|
733 |
+
version = "1.0.0"
|
734 |
+
|
735 |
+
[[deps.Observables]]
|
736 |
+
git-tree-sha1 = "7438a59546cf62428fc9d1bc94729146d37a7225"
|
737 |
+
uuid = "510215fc-4207-5dde-b226-833fc4488ee2"
|
738 |
+
version = "0.5.5"
|
739 |
+
|
740 |
+
[[deps.Ogg_jll]]
|
741 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"]
|
742 |
+
git-tree-sha1 = "887579a3eb005446d514ab7aeac5d1d027658b8f"
|
743 |
+
uuid = "e7412a2a-1a6e-54c0-be00-318e2571c051"
|
744 |
+
version = "1.3.5+1"
|
745 |
+
|
746 |
+
[[deps.OpenBLAS_jll]]
|
747 |
+
deps = ["Artifacts", "CompilerSupportLibraries_jll", "Libdl"]
|
748 |
+
uuid = "4536629a-c528-5b80-bd46-f80d51c5b363"
|
749 |
+
version = "0.3.23+4"
|
750 |
+
|
751 |
+
[[deps.OpenLibm_jll]]
|
752 |
+
deps = ["Artifacts", "Libdl"]
|
753 |
+
uuid = "05823500-19ac-5b8b-9628-191a04bc5112"
|
754 |
+
version = "0.8.1+2"
|
755 |
+
|
756 |
+
[[deps.OpenSSH_jll]]
|
757 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "OpenSSL_jll", "Zlib_jll"]
|
758 |
+
git-tree-sha1 = "cf28501224f22b2b4d237d3cc7215c7c0cb52f6a"
|
759 |
+
uuid = "9bd350c2-7e96-507f-8002-3f2e150b4e1b"
|
760 |
+
version = "9.9.2+0"
|
761 |
+
|
762 |
+
[[deps.OpenSSL]]
|
763 |
+
deps = ["BitFlags", "Dates", "MozillaCACerts_jll", "OpenSSL_jll", "Sockets"]
|
764 |
+
git-tree-sha1 = "38cb508d080d21dc1128f7fb04f20387ed4c0af4"
|
765 |
+
uuid = "4d8831e6-92b7-49fb-bdf8-b643e874388c"
|
766 |
+
version = "1.4.3"
|
767 |
+
|
768 |
+
[[deps.OpenSSL_jll]]
|
769 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl"]
|
770 |
+
git-tree-sha1 = "a9697f1d06cc3eb3fb3ad49cc67f2cfabaac31ea"
|
771 |
+
uuid = "458c3c95-2e84-50aa-8efc-19380b2a3a95"
|
772 |
+
version = "3.0.16+0"
|
773 |
+
|
774 |
+
[[deps.Opus_jll]]
|
775 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl"]
|
776 |
+
git-tree-sha1 = "6703a85cb3781bd5909d48730a67205f3f31a575"
|
777 |
+
uuid = "91d4177d-7536-5919-b921-800302f37372"
|
778 |
+
version = "1.3.3+0"
|
779 |
+
|
780 |
+
[[deps.OrderedCollections]]
|
781 |
+
git-tree-sha1 = "cc4054e898b852042d7b503313f7ad03de99c3dd"
|
782 |
+
uuid = "bac558e1-5e72-5ebc-8fee-abe8a469f55d"
|
783 |
+
version = "1.8.0"
|
784 |
+
|
785 |
+
[[deps.PCRE2_jll]]
|
786 |
+
deps = ["Artifacts", "Libdl"]
|
787 |
+
uuid = "efcefdf7-47ab-520b-bdef-62a2eaa19f15"
|
788 |
+
version = "10.42.0+1"
|
789 |
+
|
790 |
+
[[deps.Pango_jll]]
|
791 |
+
deps = ["Artifacts", "Cairo_jll", "Fontconfig_jll", "FreeType2_jll", "FriBidi_jll", "Glib_jll", "HarfBuzz_jll", "JLLWrappers", "Libdl"]
|
792 |
+
git-tree-sha1 = "3b31172c032a1def20c98dae3f2cdc9d10e3b561"
|
793 |
+
uuid = "36c8627f-9965-5494-a995-c6b170f724f3"
|
794 |
+
version = "1.56.1+0"
|
795 |
+
|
796 |
+
[[deps.Parameters]]
|
797 |
+
deps = ["OrderedCollections", "UnPack"]
|
798 |
+
git-tree-sha1 = "34c0e9ad262e5f7fc75b10a9952ca7692cfc5fbe"
|
799 |
+
uuid = "d96e819e-fc66-5662-9728-84c9c7592b0a"
|
800 |
+
version = "0.12.3"
|
801 |
+
|
802 |
+
[[deps.Parsers]]
|
803 |
+
deps = ["Dates", "PrecompileTools", "UUIDs"]
|
804 |
+
git-tree-sha1 = "8489905bcdbcfac64d1daa51ca07c0d8f0283821"
|
805 |
+
uuid = "69de0a69-1ddd-5017-9359-2bf0b02dc9f0"
|
806 |
+
version = "2.8.1"
|
807 |
+
|
808 |
+
[[deps.Pipe]]
|
809 |
+
git-tree-sha1 = "6842804e7867b115ca9de748a0cf6b364523c16d"
|
810 |
+
uuid = "b98c9c47-44ae-5843-9183-064241ee97a0"
|
811 |
+
version = "1.3.0"
|
812 |
+
|
813 |
+
[[deps.Pixman_jll]]
|
814 |
+
deps = ["Artifacts", "CompilerSupportLibraries_jll", "JLLWrappers", "LLVMOpenMP_jll", "Libdl"]
|
815 |
+
git-tree-sha1 = "35621f10a7531bc8fa58f74610b1bfb70a3cfc6b"
|
816 |
+
uuid = "30392449-352a-5448-841d-b1acce4e97dc"
|
817 |
+
version = "0.43.4+0"
|
818 |
+
|
819 |
+
[[deps.Pkg]]
|
820 |
+
deps = ["Artifacts", "Dates", "Downloads", "FileWatching", "LibGit2", "Libdl", "Logging", "Markdown", "Printf", "REPL", "Random", "SHA", "Serialization", "TOML", "Tar", "UUIDs", "p7zip_jll"]
|
821 |
+
uuid = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
|
822 |
+
version = "1.10.0"
|
823 |
+
|
824 |
+
[[deps.PlotThemes]]
|
825 |
+
deps = ["PlotUtils", "Statistics"]
|
826 |
+
git-tree-sha1 = "41031ef3a1be6f5bbbf3e8073f210556daeae5ca"
|
827 |
+
uuid = "ccf2f8ad-2431-5c83-bf29-c5338b663b6a"
|
828 |
+
version = "3.3.0"
|
829 |
+
|
830 |
+
[[deps.PlotUtils]]
|
831 |
+
deps = ["ColorSchemes", "Colors", "Dates", "PrecompileTools", "Printf", "Random", "Reexport", "StableRNGs", "Statistics"]
|
832 |
+
git-tree-sha1 = "3ca9a356cd2e113c420f2c13bea19f8d3fb1cb18"
|
833 |
+
uuid = "995b91a9-d308-5afd-9ec6-746e21dbc043"
|
834 |
+
version = "1.4.3"
|
835 |
+
|
836 |
+
[[deps.PlotlyBase]]
|
837 |
+
deps = ["ColorSchemes", "Colors", "Dates", "DelimitedFiles", "DocStringExtensions", "JSON", "LaTeXStrings", "Logging", "Parameters", "Pkg", "REPL", "Requires", "Statistics", "UUIDs"]
|
838 |
+
git-tree-sha1 = "90af5c9238c1b3b25421f1fdfffd1e8fca7a7133"
|
839 |
+
uuid = "a03496cd-edff-5a9b-9e67-9cda94a718b5"
|
840 |
+
version = "0.8.20"
|
841 |
+
|
842 |
+
[deps.PlotlyBase.extensions]
|
843 |
+
DataFramesExt = "DataFrames"
|
844 |
+
DistributionsExt = "Distributions"
|
845 |
+
IJuliaExt = "IJulia"
|
846 |
+
JSON3Ext = "JSON3"
|
847 |
+
|
848 |
+
[deps.PlotlyBase.weakdeps]
|
849 |
+
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
|
850 |
+
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
|
851 |
+
IJulia = "7073ff75-c697-5162-941a-fcdaad2a7d2a"
|
852 |
+
JSON3 = "0f8b85d8-7281-11e9-16c2-39a750bddbf1"
|
853 |
+
|
854 |
+
[[deps.Plots]]
|
855 |
+
deps = ["Base64", "Contour", "Dates", "Downloads", "FFMPEG", "FixedPointNumbers", "GR", "JLFzf", "JSON", "LaTeXStrings", "Latexify", "LinearAlgebra", "Measures", "NaNMath", "Pkg", "PlotThemes", "PlotUtils", "PrecompileTools", "Printf", "REPL", "Random", "RecipesBase", "RecipesPipeline", "Reexport", "RelocatableFolders", "Requires", "Scratch", "Showoff", "SparseArrays", "Statistics", "StatsBase", "TOML", "UUIDs", "UnicodeFun", "UnitfulLatexify", "Unzip"]
|
856 |
+
git-tree-sha1 = "564b477ae5fbfb3e23e63fc337d5f4e65e039ca4"
|
857 |
+
uuid = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
|
858 |
+
version = "1.40.10"
|
859 |
+
|
860 |
+
[deps.Plots.extensions]
|
861 |
+
FileIOExt = "FileIO"
|
862 |
+
GeometryBasicsExt = "GeometryBasics"
|
863 |
+
IJuliaExt = "IJulia"
|
864 |
+
ImageInTerminalExt = "ImageInTerminal"
|
865 |
+
UnitfulExt = "Unitful"
|
866 |
+
|
867 |
+
[deps.Plots.weakdeps]
|
868 |
+
FileIO = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549"
|
869 |
+
GeometryBasics = "5c1252a2-5f33-56bf-86c9-59e7332b4326"
|
870 |
+
IJulia = "7073ff75-c697-5162-941a-fcdaad2a7d2a"
|
871 |
+
ImageInTerminal = "d8c32880-2388-543b-8c61-d9f865259254"
|
872 |
+
Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d"
|
873 |
+
|
874 |
+
[[deps.PooledArrays]]
|
875 |
+
deps = ["DataAPI", "Future"]
|
876 |
+
git-tree-sha1 = "36d8b4b899628fb92c2749eb488d884a926614d3"
|
877 |
+
uuid = "2dfb63ee-cc39-5dd5-95bd-886bf059d720"
|
878 |
+
version = "1.4.3"
|
879 |
+
|
880 |
+
[[deps.PrecompileTools]]
|
881 |
+
deps = ["Preferences"]
|
882 |
+
git-tree-sha1 = "5aa36f7049a63a1528fe8f7c3f2113413ffd4e1f"
|
883 |
+
uuid = "aea7be01-6a6a-4083-8856-8a6e6704d82a"
|
884 |
+
version = "1.2.1"
|
885 |
+
|
886 |
+
[[deps.Preferences]]
|
887 |
+
deps = ["TOML"]
|
888 |
+
git-tree-sha1 = "9306f6085165d270f7e3db02af26a400d580f5c6"
|
889 |
+
uuid = "21216c6a-2e73-6563-6e65-726566657250"
|
890 |
+
version = "1.4.3"
|
891 |
+
|
892 |
+
[[deps.PrettyTables]]
|
893 |
+
deps = ["Crayons", "LaTeXStrings", "Markdown", "PrecompileTools", "Printf", "Reexport", "StringManipulation", "Tables"]
|
894 |
+
git-tree-sha1 = "1101cd475833706e4d0e7b122218257178f48f34"
|
895 |
+
uuid = "08abe8d2-0d0c-5749-adfa-8a2ac140af0d"
|
896 |
+
version = "2.4.0"
|
897 |
+
|
898 |
+
[[deps.Printf]]
|
899 |
+
deps = ["Unicode"]
|
900 |
+
uuid = "de0858da-6303-5e67-8744-51eddeeeb8d7"
|
901 |
+
|
902 |
+
[[deps.PtrArrays]]
|
903 |
+
git-tree-sha1 = "1d36ef11a9aaf1e8b74dacc6a731dd1de8fd493d"
|
904 |
+
uuid = "43287f4e-b6f4-7ad1-bb20-aadabca52c3d"
|
905 |
+
version = "1.3.0"
|
906 |
+
|
907 |
+
[[deps.PyCall]]
|
908 |
+
deps = ["Conda", "Dates", "Libdl", "LinearAlgebra", "MacroTools", "Serialization", "VersionParsing"]
|
909 |
+
git-tree-sha1 = "9816a3826b0ebf49ab4926e2b18842ad8b5c8f04"
|
910 |
+
uuid = "438e738f-606a-5dbb-bf0a-cddfbfd45ab0"
|
911 |
+
version = "1.96.4"
|
912 |
+
|
913 |
+
[[deps.Qt6Base_jll]]
|
914 |
+
deps = ["Artifacts", "CompilerSupportLibraries_jll", "Fontconfig_jll", "Glib_jll", "JLLWrappers", "Libdl", "Libglvnd_jll", "OpenSSL_jll", "Vulkan_Loader_jll", "Xorg_libSM_jll", "Xorg_libXext_jll", "Xorg_libXrender_jll", "Xorg_libxcb_jll", "Xorg_xcb_util_cursor_jll", "Xorg_xcb_util_image_jll", "Xorg_xcb_util_keysyms_jll", "Xorg_xcb_util_renderutil_jll", "Xorg_xcb_util_wm_jll", "Zlib_jll", "libinput_jll", "xkbcommon_jll"]
|
915 |
+
git-tree-sha1 = "492601870742dcd38f233b23c3ec629628c1d724"
|
916 |
+
uuid = "c0090381-4147-56d7-9ebc-da0b1113ec56"
|
917 |
+
version = "6.7.1+1"
|
918 |
+
|
919 |
+
[[deps.Qt6Declarative_jll]]
|
920 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Qt6Base_jll", "Qt6ShaderTools_jll"]
|
921 |
+
git-tree-sha1 = "e5dd466bf2569fe08c91a2cc29c1003f4797ac3b"
|
922 |
+
uuid = "629bc702-f1f5-5709-abd5-49b8460ea067"
|
923 |
+
version = "6.7.1+2"
|
924 |
+
|
925 |
+
[[deps.Qt6ShaderTools_jll]]
|
926 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Qt6Base_jll"]
|
927 |
+
git-tree-sha1 = "1a180aeced866700d4bebc3120ea1451201f16bc"
|
928 |
+
uuid = "ce943373-25bb-56aa-8eca-768745ed7b5a"
|
929 |
+
version = "6.7.1+1"
|
930 |
+
|
931 |
+
[[deps.Qt6Wayland_jll]]
|
932 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Qt6Base_jll", "Qt6Declarative_jll"]
|
933 |
+
git-tree-sha1 = "729927532d48cf79f49070341e1d918a65aba6b0"
|
934 |
+
uuid = "e99dba38-086e-5de3-a5b1-6e4c66e897c3"
|
935 |
+
version = "6.7.1+1"
|
936 |
+
|
937 |
+
[[deps.REPL]]
|
938 |
+
deps = ["InteractiveUtils", "Markdown", "Sockets", "Unicode"]
|
939 |
+
uuid = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
|
940 |
+
|
941 |
+
[[deps.Random]]
|
942 |
+
deps = ["SHA"]
|
943 |
+
uuid = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
|
944 |
+
|
945 |
+
[[deps.RecipesBase]]
|
946 |
+
deps = ["PrecompileTools"]
|
947 |
+
git-tree-sha1 = "5c3d09cc4f31f5fc6af001c250bf1278733100ff"
|
948 |
+
uuid = "3cdcf5f2-1ef4-517c-9805-6587b60abb01"
|
949 |
+
version = "1.3.4"
|
950 |
+
|
951 |
+
[[deps.RecipesPipeline]]
|
952 |
+
deps = ["Dates", "NaNMath", "PlotUtils", "PrecompileTools", "RecipesBase"]
|
953 |
+
git-tree-sha1 = "45cf9fd0ca5839d06ef333c8201714e888486342"
|
954 |
+
uuid = "01d81517-befc-4cb6-b9ec-a95719d0359c"
|
955 |
+
version = "0.6.12"
|
956 |
+
|
957 |
+
[[deps.Reexport]]
|
958 |
+
git-tree-sha1 = "45e428421666073eab6f2da5c9d310d99bb12f9b"
|
959 |
+
uuid = "189a3867-3050-52da-a836-e630ba90ab69"
|
960 |
+
version = "1.2.2"
|
961 |
+
|
962 |
+
[[deps.RelocatableFolders]]
|
963 |
+
deps = ["SHA", "Scratch"]
|
964 |
+
git-tree-sha1 = "ffdaf70d81cf6ff22c2b6e733c900c3321cab864"
|
965 |
+
uuid = "05181044-ff0b-4ac5-8273-598c1e38db00"
|
966 |
+
version = "1.0.1"
|
967 |
+
|
968 |
+
[[deps.RemoteREPL]]
|
969 |
+
deps = ["Logging", "OpenSSH_jll", "REPL", "ReplMaker", "Serialization", "Sockets", "UUIDs"]
|
970 |
+
git-tree-sha1 = "1d75634838e7a07872c3339aed8b86bfce9afafc"
|
971 |
+
uuid = "1bd9f7bb-701c-4338-bec7-ac987af7c555"
|
972 |
+
version = "0.3.0"
|
973 |
+
|
974 |
+
[[deps.ReplMaker]]
|
975 |
+
deps = ["REPL", "Unicode"]
|
976 |
+
git-tree-sha1 = "f8bb680b97ee232c4c6591e213adc9c1e4ba0349"
|
977 |
+
uuid = "b873ce64-0db9-51f5-a568-4457d8e49576"
|
978 |
+
version = "0.2.7"
|
979 |
+
|
980 |
+
[[deps.Requires]]
|
981 |
+
deps = ["UUIDs"]
|
982 |
+
git-tree-sha1 = "62389eeff14780bfe55195b7204c0d8738436d64"
|
983 |
+
uuid = "ae029012-a4dd-5104-9daa-d747884805df"
|
984 |
+
version = "1.3.1"
|
985 |
+
|
986 |
+
[[deps.Revise]]
|
987 |
+
deps = ["CodeTracking", "FileWatching", "JuliaInterpreter", "LibGit2", "LoweredCodeUtils", "OrderedCollections", "REPL", "Requires", "UUIDs", "Unicode"]
|
988 |
+
git-tree-sha1 = "9bb80533cb9769933954ea4ffbecb3025a783198"
|
989 |
+
uuid = "295af30f-e4ad-537b-8983-00126c2a3abe"
|
990 |
+
version = "3.7.2"
|
991 |
+
weakdeps = ["Distributed"]
|
992 |
+
|
993 |
+
[deps.Revise.extensions]
|
994 |
+
DistributedExt = "Distributed"
|
995 |
+
|
996 |
+
[[deps.SHA]]
|
997 |
+
uuid = "ea8e919c-243c-51af-8825-aaa63cd721ce"
|
998 |
+
version = "0.7.0"
|
999 |
+
|
1000 |
+
[[deps.Scratch]]
|
1001 |
+
deps = ["Dates"]
|
1002 |
+
git-tree-sha1 = "3bac05bc7e74a75fd9cba4295cde4045d9fe2386"
|
1003 |
+
uuid = "6c6a2e73-6563-6170-7368-637461726353"
|
1004 |
+
version = "1.2.1"
|
1005 |
+
|
1006 |
+
[[deps.SentinelArrays]]
|
1007 |
+
deps = ["Dates", "Random"]
|
1008 |
+
git-tree-sha1 = "712fb0231ee6f9120e005ccd56297abbc053e7e0"
|
1009 |
+
uuid = "91c51154-3ec4-41a3-a24f-3f23e20d615c"
|
1010 |
+
version = "1.4.8"
|
1011 |
+
|
1012 |
+
[[deps.Serialization]]
|
1013 |
+
uuid = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
|
1014 |
+
|
1015 |
+
[[deps.Showoff]]
|
1016 |
+
deps = ["Dates", "Grisu"]
|
1017 |
+
git-tree-sha1 = "91eddf657aca81df9ae6ceb20b959ae5653ad1de"
|
1018 |
+
uuid = "992d4aef-0814-514b-bc4d-f2e9a6c4116f"
|
1019 |
+
version = "1.0.3"
|
1020 |
+
|
1021 |
+
[[deps.SimpleBufferStream]]
|
1022 |
+
git-tree-sha1 = "f305871d2f381d21527c770d4788c06c097c9bc1"
|
1023 |
+
uuid = "777ac1f9-54b0-4bf8-805c-2214025038e7"
|
1024 |
+
version = "1.2.0"
|
1025 |
+
|
1026 |
+
[[deps.Sockets]]
|
1027 |
+
uuid = "6462fe0b-24de-5631-8697-dd941f90decc"
|
1028 |
+
|
1029 |
+
[[deps.SortingAlgorithms]]
|
1030 |
+
deps = ["DataStructures"]
|
1031 |
+
git-tree-sha1 = "66e0a8e672a0bdfca2c3f5937efb8538b9ddc085"
|
1032 |
+
uuid = "a2af1166-a08f-5f64-846c-94a0d3cef48c"
|
1033 |
+
version = "1.2.1"
|
1034 |
+
|
1035 |
+
[[deps.SparseArrays]]
|
1036 |
+
deps = ["Libdl", "LinearAlgebra", "Random", "Serialization", "SuiteSparse_jll"]
|
1037 |
+
uuid = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
|
1038 |
+
version = "1.10.0"
|
1039 |
+
|
1040 |
+
[[deps.StableRNGs]]
|
1041 |
+
deps = ["Random"]
|
1042 |
+
git-tree-sha1 = "83e6cce8324d49dfaf9ef059227f91ed4441a8e5"
|
1043 |
+
uuid = "860ef19b-820b-49d6-a774-d7a799459cd3"
|
1044 |
+
version = "1.0.2"
|
1045 |
+
|
1046 |
+
[[deps.Statistics]]
|
1047 |
+
deps = ["LinearAlgebra", "SparseArrays"]
|
1048 |
+
uuid = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
|
1049 |
+
version = "1.10.0"
|
1050 |
+
|
1051 |
+
[[deps.StatsAPI]]
|
1052 |
+
deps = ["LinearAlgebra"]
|
1053 |
+
git-tree-sha1 = "1ff449ad350c9c4cbc756624d6f8a8c3ef56d3ed"
|
1054 |
+
uuid = "82ae8749-77ed-4fe6-ae5f-f523153014b0"
|
1055 |
+
version = "1.7.0"
|
1056 |
+
|
1057 |
+
[[deps.StatsBase]]
|
1058 |
+
deps = ["AliasTables", "DataAPI", "DataStructures", "LinearAlgebra", "LogExpFunctions", "Missings", "Printf", "Random", "SortingAlgorithms", "SparseArrays", "Statistics", "StatsAPI"]
|
1059 |
+
git-tree-sha1 = "29321314c920c26684834965ec2ce0dacc9cf8e5"
|
1060 |
+
uuid = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
|
1061 |
+
version = "0.34.4"
|
1062 |
+
|
1063 |
+
[[deps.Stipple]]
|
1064 |
+
deps = ["Dates", "FilePathsBase", "Genie", "GenieSession", "GenieSessionFileSession", "JSON3", "Logging", "MacroTools", "Mixers", "Observables", "OrderedCollections", "Parameters", "Pkg", "PrecompileTools", "Random", "Reexport", "Requires", "StructTypes", "Tables"]
|
1065 |
+
git-tree-sha1 = "507fd9e45fc60b9231b370a680caafff0b9c9322"
|
1066 |
+
uuid = "4acbeb90-81a0-11ea-1966-bdaff8155998"
|
1067 |
+
version = "0.31.14"
|
1068 |
+
|
1069 |
+
[deps.Stipple.extensions]
|
1070 |
+
StippleDataFramesExt = "DataFrames"
|
1071 |
+
StippleJSONExt = "JSON"
|
1072 |
+
StippleOffsetArraysExt = "OffsetArrays"
|
1073 |
+
|
1074 |
+
[deps.Stipple.weakdeps]
|
1075 |
+
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
|
1076 |
+
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
|
1077 |
+
OffsetArrays = "6fe1bfb0-de20-5000-8ca7-80f57d26f881"
|
1078 |
+
|
1079 |
+
[[deps.StipplePivotTable]]
|
1080 |
+
deps = ["Stipple", "StippleUI", "Tables"]
|
1081 |
+
git-tree-sha1 = "375bcda3d1b9430e9879ae63c471d9241ba65328"
|
1082 |
+
uuid = "adab0226-ee3c-44de-8f2f-393b1bf1e936"
|
1083 |
+
version = "0.4.2"
|
1084 |
+
|
1085 |
+
[[deps.StipplePlotly]]
|
1086 |
+
deps = ["DataFrames", "Genie", "Requires", "Stipple"]
|
1087 |
+
git-tree-sha1 = "46f981094358ef5d54a3dc92856ebc929e417f6d"
|
1088 |
+
uuid = "ec984513-233d-481d-95b0-a3b58b97af2b"
|
1089 |
+
version = "0.14.6"
|
1090 |
+
weakdeps = ["PlotlyBase", "Plots"]
|
1091 |
+
|
1092 |
+
[deps.StipplePlotly.extensions]
|
1093 |
+
StipplePlotlyPlotlyBaseExt = "PlotlyBase"
|
1094 |
+
StipplePlotlyPlotsExt = ["Plots", "PlotlyBase"]
|
1095 |
+
|
1096 |
+
[[deps.StippleTable]]
|
1097 |
+
deps = ["Stipple", "StippleUI"]
|
1098 |
+
git-tree-sha1 = "f4a36ed4b56181d459b47bd16429308a03e05c1c"
|
1099 |
+
uuid = "5bb4b094-0818-496d-ae94-fd777e10e8ba"
|
1100 |
+
version = "1.0.3"
|
1101 |
+
|
1102 |
+
[[deps.StippleTabs]]
|
1103 |
+
deps = ["Stipple", "StippleUI"]
|
1104 |
+
git-tree-sha1 = "c2e4b3eb33ba5af21705fa8037ff2dcaebc4c4fa"
|
1105 |
+
uuid = "29f11006-3202-4091-a17b-0a26282d76dd"
|
1106 |
+
version = "1.0.3"
|
1107 |
+
|
1108 |
+
[[deps.StippleUI]]
|
1109 |
+
deps = ["Colors", "Dates", "Genie", "OrderedCollections", "PrecompileTools", "Stipple", "Tables"]
|
1110 |
+
git-tree-sha1 = "416b32075b2542ff6ebf720bfc13027f072ff0b3"
|
1111 |
+
uuid = "a3c5d34a-b254-4859-a8fa-b86abb7e84a3"
|
1112 |
+
version = "0.24.5"
|
1113 |
+
weakdeps = ["DataFrames"]
|
1114 |
+
|
1115 |
+
[deps.StippleUI.extensions]
|
1116 |
+
StippleUIDataFramesExt = "DataFrames"
|
1117 |
+
|
1118 |
+
[[deps.StringEncodings]]
|
1119 |
+
deps = ["Libiconv_jll"]
|
1120 |
+
git-tree-sha1 = "b765e46ba27ecf6b44faf70df40c57aa3a547dcb"
|
1121 |
+
uuid = "69024149-9ee7-55f6-a4c4-859efe599b68"
|
1122 |
+
version = "0.3.7"
|
1123 |
+
|
1124 |
+
[[deps.StringManipulation]]
|
1125 |
+
deps = ["PrecompileTools"]
|
1126 |
+
git-tree-sha1 = "725421ae8e530ec29bcbdddbe91ff8053421d023"
|
1127 |
+
uuid = "892a3eda-7b42-436c-8928-eab12a02cf0e"
|
1128 |
+
version = "0.4.1"
|
1129 |
+
|
1130 |
+
[[deps.StructTypes]]
|
1131 |
+
deps = ["Dates", "UUIDs"]
|
1132 |
+
git-tree-sha1 = "159331b30e94d7b11379037feeb9b690950cace8"
|
1133 |
+
uuid = "856f2bd8-1eba-4b0a-8007-ebc267875bd4"
|
1134 |
+
version = "1.11.0"
|
1135 |
+
|
1136 |
+
[[deps.SuiteSparse_jll]]
|
1137 |
+
deps = ["Artifacts", "Libdl", "libblastrampoline_jll"]
|
1138 |
+
uuid = "bea87d4a-7f5b-5778-9afe-8cc45184846c"
|
1139 |
+
version = "7.2.1+1"
|
1140 |
+
|
1141 |
+
[[deps.TOML]]
|
1142 |
+
deps = ["Dates"]
|
1143 |
+
uuid = "fa267f1f-6049-4f14-aa54-33bafae1ed76"
|
1144 |
+
version = "1.0.3"
|
1145 |
+
|
1146 |
+
[[deps.TableTraits]]
|
1147 |
+
deps = ["IteratorInterfaceExtensions"]
|
1148 |
+
git-tree-sha1 = "c06b2f539df1c6efa794486abfb6ed2022561a39"
|
1149 |
+
uuid = "3783bdb8-4a98-5b6b-af9a-565f29a5fe9c"
|
1150 |
+
version = "1.0.1"
|
1151 |
+
|
1152 |
+
[[deps.Tables]]
|
1153 |
+
deps = ["DataAPI", "DataValueInterfaces", "IteratorInterfaceExtensions", "OrderedCollections", "TableTraits"]
|
1154 |
+
git-tree-sha1 = "598cd7c1f68d1e205689b1c2fe65a9f85846f297"
|
1155 |
+
uuid = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
|
1156 |
+
version = "1.12.0"
|
1157 |
+
|
1158 |
+
[[deps.Tar]]
|
1159 |
+
deps = ["ArgTools", "SHA"]
|
1160 |
+
uuid = "a4e569a6-e804-4fa4-b0f3-eef7a1d5b13e"
|
1161 |
+
version = "1.10.0"
|
1162 |
+
|
1163 |
+
[[deps.TensorCore]]
|
1164 |
+
deps = ["LinearAlgebra"]
|
1165 |
+
git-tree-sha1 = "1feb45f88d133a655e001435632f019a9a1bcdb6"
|
1166 |
+
uuid = "62fd8b95-f654-4bbd-a8a5-9c27f68ccd50"
|
1167 |
+
version = "0.1.1"
|
1168 |
+
|
1169 |
+
[[deps.Test]]
|
1170 |
+
deps = ["InteractiveUtils", "Logging", "Random", "Serialization"]
|
1171 |
+
uuid = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
|
1172 |
+
|
1173 |
+
[[deps.TextWrap]]
|
1174 |
+
git-tree-sha1 = "43044b737fa70bc12f6105061d3da38f881a3e3c"
|
1175 |
+
uuid = "b718987f-49a8-5099-9789-dcd902bef87d"
|
1176 |
+
version = "1.0.2"
|
1177 |
+
|
1178 |
+
[[deps.Tokenize]]
|
1179 |
+
git-tree-sha1 = "468b4685af4abe0e9fd4d7bf495a6554a6276e75"
|
1180 |
+
uuid = "0796e94c-ce3b-5d07-9a54-7f471281c624"
|
1181 |
+
version = "0.5.29"
|
1182 |
+
|
1183 |
+
[[deps.TranscodingStreams]]
|
1184 |
+
git-tree-sha1 = "0c45878dcfdcfa8480052b6ab162cdd138781742"
|
1185 |
+
uuid = "3bb67fe8-82b1-5028-8e26-92a6c54297fa"
|
1186 |
+
version = "0.11.3"
|
1187 |
+
|
1188 |
+
[[deps.URIParser]]
|
1189 |
+
deps = ["Unicode"]
|
1190 |
+
git-tree-sha1 = "53a9f49546b8d2dd2e688d216421d050c9a31d0d"
|
1191 |
+
uuid = "30578b45-9adc-5946-b283-645ec420af67"
|
1192 |
+
version = "0.4.1"
|
1193 |
+
|
1194 |
+
[[deps.URIs]]
|
1195 |
+
git-tree-sha1 = "67db6cc7b3821e19ebe75791a9dd19c9b1188f2b"
|
1196 |
+
uuid = "5c2747f8-b7ea-4ff2-ba2e-563bfd36b1d4"
|
1197 |
+
version = "1.5.1"
|
1198 |
+
|
1199 |
+
[[deps.UUIDs]]
|
1200 |
+
deps = ["Random", "SHA"]
|
1201 |
+
uuid = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"
|
1202 |
+
|
1203 |
+
[[deps.UnPack]]
|
1204 |
+
git-tree-sha1 = "387c1f73762231e86e0c9c5443ce3b4a0a9a0c2b"
|
1205 |
+
uuid = "3a884ed6-31ef-47d7-9d2a-63182c4928ed"
|
1206 |
+
version = "1.0.2"
|
1207 |
+
|
1208 |
+
[[deps.Unicode]]
|
1209 |
+
uuid = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"
|
1210 |
+
|
1211 |
+
[[deps.UnicodeFun]]
|
1212 |
+
deps = ["REPL"]
|
1213 |
+
git-tree-sha1 = "53915e50200959667e78a92a418594b428dffddf"
|
1214 |
+
uuid = "1cfade01-22cf-5700-b092-accc4b62d6e1"
|
1215 |
+
version = "0.4.1"
|
1216 |
+
|
1217 |
+
[[deps.Unitful]]
|
1218 |
+
deps = ["Dates", "LinearAlgebra", "Random"]
|
1219 |
+
git-tree-sha1 = "c0667a8e676c53d390a09dc6870b3d8d6650e2bf"
|
1220 |
+
uuid = "1986cc42-f94f-5a68-af5c-568840ba703d"
|
1221 |
+
version = "1.22.0"
|
1222 |
+
|
1223 |
+
[deps.Unitful.extensions]
|
1224 |
+
ConstructionBaseUnitfulExt = "ConstructionBase"
|
1225 |
+
InverseFunctionsUnitfulExt = "InverseFunctions"
|
1226 |
+
|
1227 |
+
[deps.Unitful.weakdeps]
|
1228 |
+
ConstructionBase = "187b0558-2788-49d3-abe0-74a17ed4e7c9"
|
1229 |
+
InverseFunctions = "3587e190-3f89-42d0-90ee-14403ec27112"
|
1230 |
+
|
1231 |
+
[[deps.UnitfulLatexify]]
|
1232 |
+
deps = ["LaTeXStrings", "Latexify", "Unitful"]
|
1233 |
+
git-tree-sha1 = "975c354fcd5f7e1ddcc1f1a23e6e091d99e99bc8"
|
1234 |
+
uuid = "45397f5d-5981-4c77-b2b3-fc36d6e9b728"
|
1235 |
+
version = "1.6.4"
|
1236 |
+
|
1237 |
+
[[deps.Unzip]]
|
1238 |
+
git-tree-sha1 = "ca0969166a028236229f63514992fc073799bb78"
|
1239 |
+
uuid = "41fe7b60-77ed-43a1-b4f0-825fd5a5650d"
|
1240 |
+
version = "0.2.0"
|
1241 |
+
|
1242 |
+
[[deps.VersionParsing]]
|
1243 |
+
git-tree-sha1 = "58d6e80b4ee071f5efd07fda82cb9fbe17200868"
|
1244 |
+
uuid = "81def892-9a0e-5fdd-b105-ffc91e053289"
|
1245 |
+
version = "1.3.0"
|
1246 |
+
|
1247 |
+
[[deps.Vulkan_Loader_jll]]
|
1248 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Wayland_jll", "Xorg_libX11_jll", "Xorg_libXrandr_jll", "xkbcommon_jll"]
|
1249 |
+
git-tree-sha1 = "2f0486047a07670caad3a81a075d2e518acc5c59"
|
1250 |
+
uuid = "a44049a8-05dd-5a78-86c9-5fde0876e88c"
|
1251 |
+
version = "1.3.243+0"
|
1252 |
+
|
1253 |
+
[[deps.Wayland_jll]]
|
1254 |
+
deps = ["Artifacts", "EpollShim_jll", "Expat_jll", "JLLWrappers", "Libdl", "Libffi_jll", "Pkg", "XML2_jll"]
|
1255 |
+
git-tree-sha1 = "85c7811eddec9e7f22615371c3cc81a504c508ee"
|
1256 |
+
uuid = "a2964d1f-97da-50d4-b82a-358c7fce9d89"
|
1257 |
+
version = "1.21.0+2"
|
1258 |
+
|
1259 |
+
[[deps.Wayland_protocols_jll]]
|
1260 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"]
|
1261 |
+
git-tree-sha1 = "5db3e9d307d32baba7067b13fc7b5aa6edd4a19a"
|
1262 |
+
uuid = "2381bf8a-dfd0-557d-9999-79630e7b1b91"
|
1263 |
+
version = "1.36.0+0"
|
1264 |
+
|
1265 |
+
[[deps.XML2_jll]]
|
1266 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Libiconv_jll", "Zlib_jll"]
|
1267 |
+
git-tree-sha1 = "b8b243e47228b4a3877f1dd6aee0c5d56db7fcf4"
|
1268 |
+
uuid = "02c8fc9c-b97f-50b9-bbe4-9be30ff0a78a"
|
1269 |
+
version = "2.13.6+1"
|
1270 |
+
|
1271 |
+
[[deps.XSLT_jll]]
|
1272 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Libgcrypt_jll", "Libgpg_error_jll", "Libiconv_jll", "XML2_jll", "Zlib_jll"]
|
1273 |
+
git-tree-sha1 = "7d1671acbe47ac88e981868a078bd6b4e27c5191"
|
1274 |
+
uuid = "aed1982a-8fda-507f-9586-7b0439959a61"
|
1275 |
+
version = "1.1.42+0"
|
1276 |
+
|
1277 |
+
[[deps.XZ_jll]]
|
1278 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl"]
|
1279 |
+
git-tree-sha1 = "56c6604ec8b2d82cc4cfe01aa03b00426aac7e1f"
|
1280 |
+
uuid = "ffd25f8a-64ca-5728-b0f7-c24cf3aae800"
|
1281 |
+
version = "5.6.4+1"
|
1282 |
+
|
1283 |
+
[[deps.Xorg_libICE_jll]]
|
1284 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl"]
|
1285 |
+
git-tree-sha1 = "326b4fea307b0b39892b3e85fa451692eda8d46c"
|
1286 |
+
uuid = "f67eecfb-183a-506d-b269-f58e52b52d7c"
|
1287 |
+
version = "1.1.1+0"
|
1288 |
+
|
1289 |
+
[[deps.Xorg_libSM_jll]]
|
1290 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Xorg_libICE_jll"]
|
1291 |
+
git-tree-sha1 = "3796722887072218eabafb494a13c963209754ce"
|
1292 |
+
uuid = "c834827a-8449-5923-a945-d239c165b7dd"
|
1293 |
+
version = "1.2.4+0"
|
1294 |
+
|
1295 |
+
[[deps.Xorg_libX11_jll]]
|
1296 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Xorg_libxcb_jll", "Xorg_xtrans_jll"]
|
1297 |
+
git-tree-sha1 = "9dafcee1d24c4f024e7edc92603cedba72118283"
|
1298 |
+
uuid = "4f6342f7-b3d2-589e-9d20-edeb45f2b2bc"
|
1299 |
+
version = "1.8.6+3"
|
1300 |
+
|
1301 |
+
[[deps.Xorg_libXau_jll]]
|
1302 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl"]
|
1303 |
+
git-tree-sha1 = "e9216fdcd8514b7072b43653874fd688e4c6c003"
|
1304 |
+
uuid = "0c0b7dd1-d40b-584c-a123-a41640f87eec"
|
1305 |
+
version = "1.0.12+0"
|
1306 |
+
|
1307 |
+
[[deps.Xorg_libXcursor_jll]]
|
1308 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Xorg_libXfixes_jll", "Xorg_libXrender_jll"]
|
1309 |
+
git-tree-sha1 = "807c226eaf3651e7b2c468f687ac788291f9a89b"
|
1310 |
+
uuid = "935fb764-8cf2-53bf-bb30-45bb1f8bf724"
|
1311 |
+
version = "1.2.3+0"
|
1312 |
+
|
1313 |
+
[[deps.Xorg_libXdmcp_jll]]
|
1314 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl"]
|
1315 |
+
git-tree-sha1 = "89799ae67c17caa5b3b5a19b8469eeee474377db"
|
1316 |
+
uuid = "a3789734-cfe1-5b06-b2d0-1dd0d9d62d05"
|
1317 |
+
version = "1.1.5+0"
|
1318 |
+
|
1319 |
+
[[deps.Xorg_libXext_jll]]
|
1320 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Xorg_libX11_jll"]
|
1321 |
+
git-tree-sha1 = "d7155fea91a4123ef59f42c4afb5ab3b4ca95058"
|
1322 |
+
uuid = "1082639a-0dae-5f34-9b06-72781eeb8cb3"
|
1323 |
+
version = "1.3.6+3"
|
1324 |
+
|
1325 |
+
[[deps.Xorg_libXfixes_jll]]
|
1326 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Xorg_libX11_jll"]
|
1327 |
+
git-tree-sha1 = "6fcc21d5aea1a0b7cce6cab3e62246abd1949b86"
|
1328 |
+
uuid = "d091e8ba-531a-589c-9de9-94069b037ed8"
|
1329 |
+
version = "6.0.0+0"
|
1330 |
+
|
1331 |
+
[[deps.Xorg_libXi_jll]]
|
1332 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Xorg_libXext_jll", "Xorg_libXfixes_jll"]
|
1333 |
+
git-tree-sha1 = "984b313b049c89739075b8e2a94407076de17449"
|
1334 |
+
uuid = "a51aa0fd-4e3c-5386-b890-e753decda492"
|
1335 |
+
version = "1.8.2+0"
|
1336 |
+
|
1337 |
+
[[deps.Xorg_libXinerama_jll]]
|
1338 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Xorg_libXext_jll"]
|
1339 |
+
git-tree-sha1 = "a1a7eaf6c3b5b05cb903e35e8372049b107ac729"
|
1340 |
+
uuid = "d1454406-59df-5ea1-beac-c340f2130bc3"
|
1341 |
+
version = "1.1.5+0"
|
1342 |
+
|
1343 |
+
[[deps.Xorg_libXrandr_jll]]
|
1344 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Xorg_libXext_jll", "Xorg_libXrender_jll"]
|
1345 |
+
git-tree-sha1 = "b6f664b7b2f6a39689d822a6300b14df4668f0f4"
|
1346 |
+
uuid = "ec84b674-ba8e-5d96-8ba1-2a689ba10484"
|
1347 |
+
version = "1.5.4+0"
|
1348 |
+
|
1349 |
+
[[deps.Xorg_libXrender_jll]]
|
1350 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Xorg_libX11_jll"]
|
1351 |
+
git-tree-sha1 = "a490c6212a0e90d2d55111ac956f7c4fa9c277a6"
|
1352 |
+
uuid = "ea2f1a96-1ddc-540d-b46f-429655e07cfa"
|
1353 |
+
version = "0.9.11+1"
|
1354 |
+
|
1355 |
+
[[deps.Xorg_libpthread_stubs_jll]]
|
1356 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl"]
|
1357 |
+
git-tree-sha1 = "c57201109a9e4c0585b208bb408bc41d205ac4e9"
|
1358 |
+
uuid = "14d82f49-176c-5ed1-bb49-ad3f5cbd8c74"
|
1359 |
+
version = "0.1.2+0"
|
1360 |
+
|
1361 |
+
[[deps.Xorg_libxcb_jll]]
|
1362 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "XSLT_jll", "Xorg_libXau_jll", "Xorg_libXdmcp_jll", "Xorg_libpthread_stubs_jll"]
|
1363 |
+
git-tree-sha1 = "1a74296303b6524a0472a8cb12d3d87a78eb3612"
|
1364 |
+
uuid = "c7cfdc94-dc32-55de-ac96-5a1b8d977c5b"
|
1365 |
+
version = "1.17.0+3"
|
1366 |
+
|
1367 |
+
[[deps.Xorg_libxkbfile_jll]]
|
1368 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Xorg_libX11_jll"]
|
1369 |
+
git-tree-sha1 = "dbc53e4cf7701c6c7047c51e17d6e64df55dca94"
|
1370 |
+
uuid = "cc61e674-0454-545c-8b26-ed2c68acab7a"
|
1371 |
+
version = "1.1.2+1"
|
1372 |
+
|
1373 |
+
[[deps.Xorg_xcb_util_cursor_jll]]
|
1374 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Xorg_xcb_util_image_jll", "Xorg_xcb_util_jll", "Xorg_xcb_util_renderutil_jll"]
|
1375 |
+
git-tree-sha1 = "04341cb870f29dcd5e39055f895c39d016e18ccd"
|
1376 |
+
uuid = "e920d4aa-a673-5f3a-b3d7-f755a4d47c43"
|
1377 |
+
version = "0.1.4+0"
|
1378 |
+
|
1379 |
+
[[deps.Xorg_xcb_util_image_jll]]
|
1380 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_xcb_util_jll"]
|
1381 |
+
git-tree-sha1 = "0fab0a40349ba1cba2c1da699243396ff8e94b97"
|
1382 |
+
uuid = "12413925-8142-5f55-bb0e-6d7ca50bb09b"
|
1383 |
+
version = "0.4.0+1"
|
1384 |
+
|
1385 |
+
[[deps.Xorg_xcb_util_jll]]
|
1386 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_libxcb_jll"]
|
1387 |
+
git-tree-sha1 = "e7fd7b2881fa2eaa72717420894d3938177862d1"
|
1388 |
+
uuid = "2def613f-5ad1-5310-b15b-b15d46f528f5"
|
1389 |
+
version = "0.4.0+1"
|
1390 |
+
|
1391 |
+
[[deps.Xorg_xcb_util_keysyms_jll]]
|
1392 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_xcb_util_jll"]
|
1393 |
+
git-tree-sha1 = "d1151e2c45a544f32441a567d1690e701ec89b00"
|
1394 |
+
uuid = "975044d2-76e6-5fbe-bf08-97ce7c6574c7"
|
1395 |
+
version = "0.4.0+1"
|
1396 |
+
|
1397 |
+
[[deps.Xorg_xcb_util_renderutil_jll]]
|
1398 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_xcb_util_jll"]
|
1399 |
+
git-tree-sha1 = "dfd7a8f38d4613b6a575253b3174dd991ca6183e"
|
1400 |
+
uuid = "0d47668e-0667-5a69-a72c-f761630bfb7e"
|
1401 |
+
version = "0.3.9+1"
|
1402 |
+
|
1403 |
+
[[deps.Xorg_xcb_util_wm_jll]]
|
1404 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_xcb_util_jll"]
|
1405 |
+
git-tree-sha1 = "e78d10aab01a4a154142c5006ed44fd9e8e31b67"
|
1406 |
+
uuid = "c22f9ab0-d5fe-5066-847c-f4bb1cd4e361"
|
1407 |
+
version = "0.4.1+1"
|
1408 |
+
|
1409 |
+
[[deps.Xorg_xkbcomp_jll]]
|
1410 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Xorg_libxkbfile_jll"]
|
1411 |
+
git-tree-sha1 = "ab2221d309eda71020cdda67a973aa582aa85d69"
|
1412 |
+
uuid = "35661453-b289-5fab-8a00-3d9160c6a3a4"
|
1413 |
+
version = "1.4.6+1"
|
1414 |
+
|
1415 |
+
[[deps.Xorg_xkeyboard_config_jll]]
|
1416 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Xorg_xkbcomp_jll"]
|
1417 |
+
git-tree-sha1 = "691634e5453ad362044e2ad653e79f3ee3bb98c3"
|
1418 |
+
uuid = "33bec58e-1273-512f-9401-5d533626f822"
|
1419 |
+
version = "2.39.0+0"
|
1420 |
+
|
1421 |
+
[[deps.Xorg_xtrans_jll]]
|
1422 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl"]
|
1423 |
+
git-tree-sha1 = "6dba04dbfb72ae3ebe5418ba33d087ba8aa8cb00"
|
1424 |
+
uuid = "c5fb5394-a638-5e4d-96e5-b29de1b5cf10"
|
1425 |
+
version = "1.5.1+0"
|
1426 |
+
|
1427 |
+
[[deps.YAML]]
|
1428 |
+
deps = ["Base64", "Dates", "Printf", "StringEncodings"]
|
1429 |
+
git-tree-sha1 = "b46894beba6c05cd185d174654479aaec09ea6b1"
|
1430 |
+
uuid = "ddb6d928-2868-570f-bddf-ab3f9cf99eb6"
|
1431 |
+
version = "0.4.13"
|
1432 |
+
|
1433 |
+
[[deps.Zlib_jll]]
|
1434 |
+
deps = ["Libdl"]
|
1435 |
+
uuid = "83775a58-1f1d-513f-b197-d71354ab007a"
|
1436 |
+
version = "1.2.13+1"
|
1437 |
+
|
1438 |
+
[[deps.Zstd_jll]]
|
1439 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl"]
|
1440 |
+
git-tree-sha1 = "446b23e73536f84e8037f5dce465e92275f6a308"
|
1441 |
+
uuid = "3161d3a3-bdf6-5164-811a-617609db77b4"
|
1442 |
+
version = "1.5.7+1"
|
1443 |
+
|
1444 |
+
[[deps.eudev_jll]]
|
1445 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "gperf_jll"]
|
1446 |
+
git-tree-sha1 = "431b678a28ebb559d224c0b6b6d01afce87c51ba"
|
1447 |
+
uuid = "35ca27e7-8b34-5b7f-bca9-bdc33f59eb06"
|
1448 |
+
version = "3.2.9+0"
|
1449 |
+
|
1450 |
+
[[deps.fzf_jll]]
|
1451 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl"]
|
1452 |
+
git-tree-sha1 = "6e50f145003024df4f5cb96c7fce79466741d601"
|
1453 |
+
uuid = "214eeab7-80f7-51ab-84ad-2988db7cef09"
|
1454 |
+
version = "0.56.3+0"
|
1455 |
+
|
1456 |
+
[[deps.gperf_jll]]
|
1457 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"]
|
1458 |
+
git-tree-sha1 = "0ba42241cb6809f1a278d0bcb976e0483c3f1f2d"
|
1459 |
+
uuid = "1a1c6b14-54f6-533d-8383-74cd7377aa70"
|
1460 |
+
version = "3.1.1+1"
|
1461 |
+
|
1462 |
+
[[deps.libaom_jll]]
|
1463 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl"]
|
1464 |
+
git-tree-sha1 = "522c1df09d05a71785765d19c9524661234738e9"
|
1465 |
+
uuid = "a4ae2306-e953-59d6-aa16-d00cac43593b"
|
1466 |
+
version = "3.11.0+0"
|
1467 |
+
|
1468 |
+
[[deps.libass_jll]]
|
1469 |
+
deps = ["Artifacts", "Bzip2_jll", "FreeType2_jll", "FriBidi_jll", "HarfBuzz_jll", "JLLWrappers", "Libdl", "Zlib_jll"]
|
1470 |
+
git-tree-sha1 = "e17c115d55c5fbb7e52ebedb427a0dca79d4484e"
|
1471 |
+
uuid = "0ac62f75-1d6f-5e53-bd7c-93b484bb37c0"
|
1472 |
+
version = "0.15.2+0"
|
1473 |
+
|
1474 |
+
[[deps.libblastrampoline_jll]]
|
1475 |
+
deps = ["Artifacts", "Libdl"]
|
1476 |
+
uuid = "8e850b90-86db-534c-a0d3-1478176c7d93"
|
1477 |
+
version = "5.8.0+1"
|
1478 |
+
|
1479 |
+
[[deps.libdecor_jll]]
|
1480 |
+
deps = ["Artifacts", "Dbus_jll", "JLLWrappers", "Libdl", "Libglvnd_jll", "Pango_jll", "Wayland_jll", "xkbcommon_jll"]
|
1481 |
+
git-tree-sha1 = "9bf7903af251d2050b467f76bdbe57ce541f7f4f"
|
1482 |
+
uuid = "1183f4f0-6f2a-5f1a-908b-139f9cdfea6f"
|
1483 |
+
version = "0.2.2+0"
|
1484 |
+
|
1485 |
+
[[deps.libevdev_jll]]
|
1486 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"]
|
1487 |
+
git-tree-sha1 = "141fe65dc3efabb0b1d5ba74e91f6ad26f84cc22"
|
1488 |
+
uuid = "2db6ffa8-e38f-5e21-84af-90c45d0032cc"
|
1489 |
+
version = "1.11.0+0"
|
1490 |
+
|
1491 |
+
[[deps.libfdk_aac_jll]]
|
1492 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl"]
|
1493 |
+
git-tree-sha1 = "8a22cf860a7d27e4f3498a0fe0811a7957badb38"
|
1494 |
+
uuid = "f638f0a6-7fb0-5443-88ba-1cc74229b280"
|
1495 |
+
version = "2.0.3+0"
|
1496 |
+
|
1497 |
+
[[deps.libinput_jll]]
|
1498 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "eudev_jll", "libevdev_jll", "mtdev_jll"]
|
1499 |
+
git-tree-sha1 = "ad50e5b90f222cfe78aa3d5183a20a12de1322ce"
|
1500 |
+
uuid = "36db933b-70db-51c0-b978-0f229ee0e533"
|
1501 |
+
version = "1.18.0+0"
|
1502 |
+
|
1503 |
+
[[deps.libpng_jll]]
|
1504 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Zlib_jll"]
|
1505 |
+
git-tree-sha1 = "068dfe202b0a05b8332f1e8e6b4080684b9c7700"
|
1506 |
+
uuid = "b53b4c65-9356-5827-b1ea-8c7a1a84506f"
|
1507 |
+
version = "1.6.47+0"
|
1508 |
+
|
1509 |
+
[[deps.libvorbis_jll]]
|
1510 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Ogg_jll", "Pkg"]
|
1511 |
+
git-tree-sha1 = "490376214c4721cdaca654041f635213c6165cb3"
|
1512 |
+
uuid = "f27f6e37-5d2b-51aa-960f-b287f2bc3b7a"
|
1513 |
+
version = "1.3.7+2"
|
1514 |
+
|
1515 |
+
[[deps.mtdev_jll]]
|
1516 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"]
|
1517 |
+
git-tree-sha1 = "814e154bdb7be91d78b6802843f76b6ece642f11"
|
1518 |
+
uuid = "009596ad-96f7-51b1-9f1b-5ce2d5e8a71e"
|
1519 |
+
version = "1.1.6+0"
|
1520 |
+
|
1521 |
+
[[deps.nghttp2_jll]]
|
1522 |
+
deps = ["Artifacts", "Libdl"]
|
1523 |
+
uuid = "8e850ede-7688-5339-a07c-302acd2aaf8d"
|
1524 |
+
version = "1.52.0+1"
|
1525 |
+
|
1526 |
+
[[deps.p7zip_jll]]
|
1527 |
+
deps = ["Artifacts", "Libdl"]
|
1528 |
+
uuid = "3f19e933-33d8-53b3-aaab-bd5110c3b7a0"
|
1529 |
+
version = "17.4.0+2"
|
1530 |
+
|
1531 |
+
[[deps.x264_jll]]
|
1532 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"]
|
1533 |
+
git-tree-sha1 = "4fea590b89e6ec504593146bf8b988b2c00922b2"
|
1534 |
+
uuid = "1270edf5-f2f9-52d2-97e9-ab00b5d0237a"
|
1535 |
+
version = "2021.5.5+0"
|
1536 |
+
|
1537 |
+
[[deps.x265_jll]]
|
1538 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"]
|
1539 |
+
git-tree-sha1 = "ee567a171cce03570d77ad3a43e90218e38937a9"
|
1540 |
+
uuid = "dfaa095f-4041-5dcd-9319-2fabd8486b76"
|
1541 |
+
version = "3.5.0+0"
|
1542 |
+
|
1543 |
+
[[deps.xkbcommon_jll]]
|
1544 |
+
deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Wayland_jll", "Wayland_protocols_jll", "Xorg_libxcb_jll", "Xorg_xkeyboard_config_jll"]
|
1545 |
+
git-tree-sha1 = "63406453ed9b33a0df95d570816d5366c92b7809"
|
1546 |
+
uuid = "d8fb68d0-12a3-5cfd-a85a-d49703b185fd"
|
1547 |
+
version = "1.4.1+2"
|
Project.toml
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[deps]
|
2 |
+
Colors = "5ae59095-9a9b-59fe-a467-6f913c188581"
|
3 |
+
Genie = "c43c736e-a2d1-11e8-161f-af95117fbd1e"
|
4 |
+
GenieFramework = "a59fdf5c-6bf0-4f5d-949c-a137c9e2f353"
|
5 |
+
HTTP = "cd3eb016-35fb-5094-929b-558a96fad6f3"
|
6 |
+
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
|
7 |
+
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d"
|
8 |
+
PlotlyBase = "a03496cd-edff-5a9b-9e67-9cda94a718b5"
|
9 |
+
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
|
10 |
+
PyCall = "438e738f-606a-5dbb-bf0a-cddfbfd45ab0"
|
README.md
CHANGED
@@ -1,10 +1,31 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
emoji:
|
4 |
-
colorFrom:
|
5 |
-
colorTo:
|
6 |
sdk: docker
|
|
|
7 |
pinned: false
|
|
|
|
|
|
|
|
|
|
|
8 |
---
|
9 |
|
10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
title: Live Fact Checking App
|
3 |
+
emoji: π
|
4 |
+
colorFrom: green
|
5 |
+
colorTo: indigo
|
6 |
sdk: docker
|
7 |
+
app_port: 8000
|
8 |
pinned: false
|
9 |
+
license: apache-2.0
|
10 |
+
tags:
|
11 |
+
- julia
|
12 |
+
- Genie.jl
|
13 |
+
- Stipple
|
14 |
---
|
15 |
|
16 |
+
|
17 |
+
## TODO LIST:
|
18 |
+
- [x] Create a Genie.jl app
|
19 |
+
- [x] Title Page and Logo
|
20 |
+
- [x] Add an input for a youtube link (take from existing Genie.jl app)
|
21 |
+
- [x] Add a button to submit the link
|
22 |
+
- [x] Add a loading spinner
|
23 |
+
- [x] Modify the HTML template on the backend
|
24 |
+
- [x] Generate Python code to access the transcripts
|
25 |
+
- [x] Script to send transcript to existing hf fact-check API
|
26 |
+
- [x] Processs scores and assign colors
|
27 |
+
- [x] Display the results w/ links to fact-checks
|
28 |
+
- [x] Display numbered list of fact-checks w/ links
|
29 |
+
- [x] Create a Dockerfile
|
30 |
+
- [x] Create a Docker Space
|
31 |
+
- [x] Deploy the app on HuggingFace Spaces
|
app.jl
ADDED
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
#using GenieFramework; Genie.loadapp(); up()
|
3 |
+
|
4 |
+
module App
|
5 |
+
using Main.MyController
|
6 |
+
include("lib/Transcriber.jl")
|
7 |
+
using .Transcriber
|
8 |
+
using GenieFramework, PlotlyBase
|
9 |
+
using Genie.Renderer.Html
|
10 |
+
|
11 |
+
### Initial example as Proof of Concept
|
12 |
+
function generate_color_html_text(video_id::String = "WVOvmHUu8Vw")
|
13 |
+
transcript = Transcriber.get_transcript_text(video_id)
|
14 |
+
transcript = Transcriber.chunk_text(transcript, 200)
|
15 |
+
factchecks = MyController.generate_factchecks(transcript)
|
16 |
+
return MyController.gradient_text(factchecks, 0.5)
|
17 |
+
end
|
18 |
+
|
19 |
+
@genietools
|
20 |
+
|
21 |
+
@app begin
|
22 |
+
@in process = false
|
23 |
+
@in url = "https://www.youtube.com/watch?v=qFEaTk--tZo"
|
24 |
+
@out transcription = ""
|
25 |
+
@in transcribe = false
|
26 |
+
#@in download = false
|
27 |
+
@out transcribing = false
|
28 |
+
#@out downloading = false
|
29 |
+
@onchange transcribe begin
|
30 |
+
@info "Transcribing $url"
|
31 |
+
transcribing = true
|
32 |
+
video_id = MyController.youtubeUrlToId(url)
|
33 |
+
transcription = generate_color_html_text(video_id)
|
34 |
+
transcribing = false
|
35 |
+
end
|
36 |
+
#@onchange download begin
|
37 |
+
# @info "Downloading $url"
|
38 |
+
# downloading = true
|
39 |
+
## TODO: download the transcription
|
40 |
+
# downloading = false
|
41 |
+
#end
|
42 |
+
end
|
43 |
+
|
44 |
+
function ui()
|
45 |
+
[
|
46 |
+
h2("Youtube video Fact-Checker")
|
47 |
+
input("url", :url, style="width:500px")
|
48 |
+
# button("Transcribe", @click("process = !process"))
|
49 |
+
button("Transcribe", @click("transcribing = true"), loading=:transcribing)
|
50 |
+
button("Download", @click("download = !download; downloading=true"), loading=:downloading)
|
51 |
+
h4("Transcription:")
|
52 |
+
p("{{transcription}}")
|
53 |
+
]
|
54 |
+
end
|
55 |
+
|
56 |
+
@page("/", "app.jl.html")
|
57 |
+
|
58 |
+
# Example route that uses gradient text
|
59 |
+
route("/gradient") do
|
60 |
+
message = "this is a message"
|
61 |
+
gradient_message = MyController.generate_example(message)
|
62 |
+
end
|
63 |
+
|
64 |
+
end
|
app.jl.html
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<h2 style="text-align:center;">YouTube Video Fact-Checker</h2>
|
2 |
+
<div style="display:flex; justify-content:center;">
|
3 |
+
<q-card style="width:500px;">
|
4 |
+
<q-input style="padding-left:20px;padding-right:20px; width:500px; text-align:center;" v-model="url"></q-input>
|
5 |
+
<div style="display:flex; justify-content:center; padding-top:10px; padding-bottom:10px;">
|
6 |
+
<q-btn color="secondary" label="Transcribe" :loading="transcribing" v-on:click="transcribe = !transcribe"></q-btn>
|
7 |
+
<!-- <q-btn style="margin-left:10px" color="secondary" label="Download" :loading="downloading" v-on:click="download = !download"></q-btn> -->
|
8 |
+
</div>
|
9 |
+
</q-card>
|
10 |
+
</div>
|
11 |
+
<div style="display:flex; justify-content:center; margin-top:20px;">
|
12 |
+
<q-card style="width:1000px; padding:20px; background-color:white;">
|
13 |
+
<h4>Fact-Checked Transcription:</h4>
|
14 |
+
<p v-html="transcription">{{transcription}}</p>
|
15 |
+
</q-card>
|
16 |
+
</div>
|
lib/MyController.jl
ADDED
@@ -0,0 +1,109 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
module MyController
|
2 |
+
using Genie
|
3 |
+
using Genie.Renderer.Html
|
4 |
+
using Colors
|
5 |
+
using OrderedCollections
|
6 |
+
using HTTP, JSON, Statistics
|
7 |
+
|
8 |
+
## HOW THIS WORKS:
|
9 |
+
## 1. Call the API to get the fact-checks for each chunk of text
|
10 |
+
## 2. Generate a gradient text based on the scores from the API
|
11 |
+
## 3. Return the gradient text
|
12 |
+
|
13 |
+
## Call API to process chunks of text
|
14 |
+
"""
|
15 |
+
## Function to call this endpoint: https://stefanjwojcik-misinfo-detection-app.hf.space/fastfactsearch?claim=climate%20change%20is%20a%20hoax&model=factchecks&top_k=5
|
16 |
+
Example:
|
17 |
+
oc_api_call("climate change is a hoax")
|
18 |
+
"""
|
19 |
+
function oc_api_call(text::String)
|
20 |
+
text = HTTP.escapeuri(text)
|
21 |
+
url = "https://stefanjwojcik-misinfo-detection-app.hf.space/fastfactsearch?claim=$(text)&model=factchecks&top_k=5"
|
22 |
+
response = HTTP.get(url)
|
23 |
+
return JSON.parse(String(response.body))
|
24 |
+
end
|
25 |
+
|
26 |
+
# This function will call the API, and generate scores for each chunk in the transcript
|
27 |
+
## Inaug link: WVOvmHUu8Vw
|
28 |
+
function generate_factchecks(transcript::Vector{String})
|
29 |
+
# Create a dictionary with the text and fact-check URLs
|
30 |
+
factchecks = Dict[]
|
31 |
+
for line in transcript
|
32 |
+
api_output = oc_api_call(line)
|
33 |
+
newdict = Dict("text" => line, "score" => api_output[1]["score"], "claimUrl" => api_output[1]["claimUrl"])
|
34 |
+
push!(factchecks, newdict)
|
35 |
+
end
|
36 |
+
return factchecks
|
37 |
+
end
|
38 |
+
|
39 |
+
function generate_url_list(factchecks::Vector{Dict}, threshold=0.5)
|
40 |
+
urls = [factcheck["claimUrl"] for factcheck in factchecks if factcheck["score"] > threshold]
|
41 |
+
url_list = "<ol>"
|
42 |
+
for (i, url) in enumerate(urls)
|
43 |
+
url_list *= "<li><a href=\"$(url)\" target=\"_blank\">$(url)</a></li>"
|
44 |
+
end
|
45 |
+
url_list *= "</ol>"
|
46 |
+
return url_list
|
47 |
+
end
|
48 |
+
|
49 |
+
function scores_to_colors(scores::Vector{T}, midpoint_threshold=.5) where T <: Real
|
50 |
+
# Create a color gradient from red to blue
|
51 |
+
c1 = colorant"blue" #true color
|
52 |
+
c2 = colorant"red" #false color
|
53 |
+
midpoint = mean(extrema(scores))
|
54 |
+
if midpoint < midpoint_threshold # rough heuristic of true/false distro
|
55 |
+
padded_colors = hex.(range(c1, stop=c2, length=length(scores)*2)) # expands the range
|
56 |
+
colors = padded_colors[1:length(scores)] #take only the first half of the range
|
57 |
+
else
|
58 |
+
colors = hex.(range(c1, stop=c2, length=length(unique(scores))))
|
59 |
+
end
|
60 |
+
|
61 |
+
colors = ["#" * color for color in colors]
|
62 |
+
# Map scores to colors
|
63 |
+
return Dict(zip(unique(sort(scores)), colors))
|
64 |
+
end
|
65 |
+
|
66 |
+
function gradient_text(factchecks::Vector{Dict}, threshold::Float64=0.6)
|
67 |
+
# Create colordict from scores
|
68 |
+
allscores = [factcheck["score"] for factcheck in factchecks]
|
69 |
+
colordict = scores_to_colors(allscores)
|
70 |
+
|
71 |
+
# Create span elements for each character with gradient colors
|
72 |
+
spans = []
|
73 |
+
n_refs = 0
|
74 |
+
|
75 |
+
for factcheck in factchecks
|
76 |
+
# Get the score for the current character
|
77 |
+
score = factcheck["score"]
|
78 |
+
color = colordict[score]
|
79 |
+
textval = factcheck["text"]
|
80 |
+
if score > threshold
|
81 |
+
n_refs += 1
|
82 |
+
textval = textval * " ($n_refs)"
|
83 |
+
end
|
84 |
+
# Create span with specific color
|
85 |
+
push!(spans, "<span style=\"color: $(color);\">$(textval)</span>")
|
86 |
+
end
|
87 |
+
|
88 |
+
# Join all spans
|
89 |
+
gradient_text = join(spans, " ")
|
90 |
+
|
91 |
+
# Generate URL list
|
92 |
+
url_list = generate_url_list(factchecks, threshold)
|
93 |
+
|
94 |
+
# Append URL list to gradient text
|
95 |
+
return gradient_text * "<br><br>" * url_list
|
96 |
+
end
|
97 |
+
|
98 |
+
function youtubeUrlToId(url::String)
|
99 |
+
if occursin("youtube.com", url)
|
100 |
+
video_id = match(r"(?<=v=)[\w-]+", url).match
|
101 |
+
elseif occursin("youtu.be", url)
|
102 |
+
video_id = match(r"(?<=be/)[\w-]+", url).match
|
103 |
+
else
|
104 |
+
video_id = url
|
105 |
+
end
|
106 |
+
return string(video_id)
|
107 |
+
end
|
108 |
+
|
109 |
+
end # end module
|
lib/Transcriber.jl
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
## Julia py_init file
|
2 |
+
module Transcriber
|
3 |
+
|
4 |
+
using PyCall
|
5 |
+
|
6 |
+
function __init__()
|
7 |
+
|
8 |
+
py"""
|
9 |
+
from youtube_transcript_api import YouTubeTranscriptApi
|
10 |
+
|
11 |
+
def get_transcript(video_id):
|
12 |
+
return YouTubeTranscriptApi.get_transcript(video_id)
|
13 |
+
"""
|
14 |
+
end
|
15 |
+
|
16 |
+
# test id: "SW14tOda_kI"
|
17 |
+
# get_transcript("SW14tOda_kI")
|
18 |
+
function get_transcript(video_id::String; textonly::Bool=true)
|
19 |
+
transcript = py"get_transcript"(video_id)
|
20 |
+
##
|
21 |
+
if textonly
|
22 |
+
transcript = [line["text"] for line in transcript]
|
23 |
+
end
|
24 |
+
return transcript
|
25 |
+
end
|
26 |
+
|
27 |
+
function get_transcript_text(video_id::String)
|
28 |
+
transcript = py"get_transcript"(video_id)
|
29 |
+
text = ""
|
30 |
+
for line in transcript
|
31 |
+
text *= line["text"] * " "
|
32 |
+
end
|
33 |
+
return text
|
34 |
+
end
|
35 |
+
|
36 |
+
function chunk_text(text::String, chunk_size::Int=280)
|
37 |
+
chunks = []
|
38 |
+
for i in 1:chunk_size:length(text)
|
39 |
+
newchunk = text[i:min(i+chunk_size-1, length(text))]
|
40 |
+
push!(chunks, newchunk)
|
41 |
+
end
|
42 |
+
return string.(chunks)
|
43 |
+
end
|
44 |
+
|
45 |
+
end
|
lib/__pycache__/youtube_transcripts.cpython-310.pyc
ADDED
Binary file (361 Bytes). View file
|
|
log/dev-2025-03-14.log
ADDED
@@ -0,0 +1,980 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
β Info: 2025-03-14 20:15:26 Watching ["/home/swojcik/github/GenieOnHuggingFaceSpaces"]
|
2 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
3 |
+
β Info: 2025-03-14 20:15:28 Autoreloading
|
4 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
5 |
+
β Info: 2025-03-14 20:15:29
|
6 |
+
β Web Server starting at http://127.0.0.1:8000
|
7 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
8 |
+
β Info: 2025-03-14 20:17:37 Autoreloading
|
9 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
10 |
+
β Info: 2025-03-14 20:18:50
|
11 |
+
β Web Server starting at http://127.0.0.1:8000
|
12 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
13 |
+
β Info: 2025-03-14 20:20:02 Autoreloading
|
14 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
15 |
+
β Info: 2025-03-14 20:20:38 Autoreloading
|
16 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
17 |
+
β Info: 2025-03-14 20:22:06 Watching ["/home/swojcik/github/GenieOnHuggingFaceSpaces"]
|
18 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
19 |
+
β Info: 2025-03-14 20:22:07 Autoreloading
|
20 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
21 |
+
β Info: 2025-03-14 20:22:08
|
22 |
+
β Web Server starting at http://127.0.0.1:8000
|
23 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
24 |
+
β Info: 2025-03-14 20:22:08 Listening on: 127.0.0.1:8000, thread id: 1
|
25 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
26 |
+
β Info: 2025-03-14 20:22:43 Calling finalizers
|
27 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
28 |
+
β Info: 2025-03-14 20:22:53 Calling finalizers
|
29 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
30 |
+
β Info: 2025-03-14 20:23:23 Autoreloading
|
31 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
32 |
+
β Info: 2025-03-14 20:24:30 Autoreloading
|
33 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
34 |
+
β Info: 2025-03-14 20:24:49 Calling finalizers
|
35 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
36 |
+
β Info: 2025-03-14 20:24:51 Calling finalizers
|
37 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
38 |
+
β Info: 2025-03-14 20:25:01 Calling finalizers
|
39 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
40 |
+
β Info: 2025-03-14 20:25:02 Calling finalizers
|
41 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
42 |
+
β Info: 2025-03-14 20:25:06 Server on 127.0.0.1:8000 closing
|
43 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:409
|
44 |
+
β Info: 2025-03-14 20:25:10
|
45 |
+
β Web Server starting at http://127.0.0.1:8000
|
46 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
47 |
+
β Info: 2025-03-14 20:25:10 Listening on: 127.0.0.1:8000, thread id: 1
|
48 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
49 |
+
β Info: 2025-03-14 20:25:14 Calling finalizers
|
50 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
51 |
+
β Info: 2025-03-14 20:25:15 Calling finalizers
|
52 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
53 |
+
β Info: 2025-03-14 20:25:19 Calling finalizers
|
54 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
55 |
+
β Info: 2025-03-14 20:25:42 Watching ["/home/swojcik/github/GenieOnHuggingFaceSpaces"]
|
56 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
57 |
+
β Info: 2025-03-14 20:25:44 Autoreloading
|
58 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
59 |
+
β Info: 2025-03-14 20:25:45
|
60 |
+
β Web Server starting at http://127.0.0.1:8000
|
61 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
62 |
+
β Info: 2025-03-14 20:25:45 Listening on: 127.0.0.1:8000, thread id: 1
|
63 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
64 |
+
β Info: 2025-03-14 20:30:54 Watching ["/home/swojcik/github/GenieOnHuggingFaceSpaces"]
|
65 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
66 |
+
β Info: 2025-03-14 20:30:55 Autoreloading
|
67 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
68 |
+
β Info: 2025-03-14 20:30:56
|
69 |
+
β Web Server starting at http://127.0.0.1:8000
|
70 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
71 |
+
β Info: 2025-03-14 20:30:56 Listening on: 127.0.0.1:8000, thread id: 1
|
72 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
73 |
+
β Info: 2025-03-14 20:31:12 Calling finalizers
|
74 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
75 |
+
β Error: 2025-03-14 20:31:13 UndefVarError: `blend` not defined
|
76 |
+
β Stacktrace:
|
77 |
+
β [1] generate_gradient(start_color::ColorTypes.RGB{FixedPointNumbers.N0f8}, end_color::ColorTypes.RGB{FixedPointNumbers.N0f8}, num_steps::Int64)
|
78 |
+
β @ Main.MyController ~/github/GenieOnHuggingFaceSpaces/lib/MyController.jl:25
|
79 |
+
β [2] index()
|
80 |
+
β @ Main.MyController ~/github/GenieOnHuggingFaceSpaces/lib/MyController.jl:37
|
81 |
+
β [3] run_route(r::Genie.Router.Route)
|
82 |
+
β @ Genie.Router ~/.julia/packages/Genie/VEhXJ/src/Router.jl:547
|
83 |
+
β [4] route_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
84 |
+
β @ Genie.Router ~/.julia/packages/Genie/VEhXJ/src/Router.jl:172
|
85 |
+
β [5] route_request
|
86 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Router.jl:147 [inlined]
|
87 |
+
β [6] handle_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
88 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:300
|
89 |
+
β [7] handle_request
|
90 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Server.jl:292 [inlined]
|
91 |
+
β [8] (::Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response})()
|
92 |
+
β @ Genie.Server ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/macros.jl:123
|
93 |
+
β [9] #invokelatest#2
|
94 |
+
β @ ./essentials.jl:892 [inlined]
|
95 |
+
β [10] invokelatest
|
96 |
+
β @ ./essentials.jl:889 [inlined]
|
97 |
+
β [11] #153
|
98 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:425 [inlined]
|
99 |
+
β [12] run_work_thunk(thunk::Distributed.var"#153#154"{Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response}, Tuple{}, @Kwargs{}}, print_error::Bool)
|
100 |
+
β @ Distributed ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/process_messages.jl:70
|
101 |
+
β [13] #remotecall_fetch#158
|
102 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:450 [inlined]
|
103 |
+
β [14] remotecall_fetch
|
104 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:449 [inlined]
|
105 |
+
β [15] remotecall_fetch
|
106 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:492 [inlined]
|
107 |
+
β [16] setup_http_listener(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
108 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:344
|
109 |
+
β [17] setup_http_listener (repeats 2 times)
|
110 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Server.jl:342 [inlined]
|
111 |
+
β [18] (::Genie.Server.var"#24#25"{typeof(Genie.Server.setup_http_listener)})(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
112 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:313
|
113 |
+
β [19] setup_http_streamer(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
114 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:333
|
115 |
+
β [20] (::Genie.Server.var"#6#12")(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
116 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:124
|
117 |
+
β [21] #invokelatest#2
|
118 |
+
β @ ./essentials.jl:892 [inlined]
|
119 |
+
β [22] invokelatest
|
120 |
+
β @ ./essentials.jl:889 [inlined]
|
121 |
+
β [23] handle_connection(f::Function, c::HTTP.Connections.Connection{Sockets.TCPSocket}, listener::HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, readtimeout::Int64, access_log::Nothing, verbose::Bool)
|
122 |
+
β @ HTTP.Servers ~/.julia/packages/HTTP/4AUPl/src/Servers.jl:469
|
123 |
+
β [24] (::HTTP.Servers.var"#16#17"{Genie.Server.var"#6#12", HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, Set{HTTP.Connections.Connection}, Int64, Nothing, ReentrantLock, Bool, Base.Semaphore, HTTP.Connections.Connection{Sockets.TCPSocket}})()
|
124 |
+
β @ HTTP.Servers ~/.julia/packages/HTTP/4AUPl/src/Servers.jl:401
|
125 |
+
β
|
126 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:356
|
127 |
+
β Info: 2025-03-14 20:32:14 Autoreloading
|
128 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
129 |
+
β Info: 2025-03-14 20:32:19 Server on 127.0.0.1:8000 closing
|
130 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:409
|
131 |
+
β Info: 2025-03-14 20:32:22
|
132 |
+
β Web Server starting at http://127.0.0.1:8000
|
133 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
134 |
+
β Info: 2025-03-14 20:32:22 Listening on: 127.0.0.1:8000, thread id: 1
|
135 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
136 |
+
β Error: 2025-03-14 20:32:27 UndefVarError: `interpolate` not defined
|
137 |
+
β Stacktrace:
|
138 |
+
β [1] generate_gradient(start_color::ColorTypes.RGB{FixedPointNumbers.N0f8}, end_color::ColorTypes.RGB{FixedPointNumbers.N0f8}, num_steps::Int64)
|
139 |
+
β @ Main.MyController ~/github/GenieOnHuggingFaceSpaces/lib/MyController.jl:24
|
140 |
+
β [2] index()
|
141 |
+
β @ Main.MyController ~/github/GenieOnHuggingFaceSpaces/lib/MyController.jl:39
|
142 |
+
β [3] run_route(r::Genie.Router.Route)
|
143 |
+
β @ Genie.Router ~/.julia/packages/Genie/VEhXJ/src/Router.jl:547
|
144 |
+
β [4] route_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
145 |
+
β @ Genie.Router ~/.julia/packages/Genie/VEhXJ/src/Router.jl:172
|
146 |
+
β [5] route_request
|
147 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Router.jl:147 [inlined]
|
148 |
+
β [6] handle_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
149 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:300
|
150 |
+
β [7] handle_request
|
151 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Server.jl:292 [inlined]
|
152 |
+
β [8] (::Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response})()
|
153 |
+
β @ Genie.Server ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/macros.jl:123
|
154 |
+
β [9] #invokelatest#2
|
155 |
+
β @ ./essentials.jl:892 [inlined]
|
156 |
+
β [10] invokelatest
|
157 |
+
β @ ./essentials.jl:889 [inlined]
|
158 |
+
β [11] #153
|
159 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:425 [inlined]
|
160 |
+
β [12] run_work_thunk(thunk::Distributed.var"#153#154"{Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response}, Tuple{}, @Kwargs{}}, print_error::Bool)
|
161 |
+
β @ Distributed ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/process_messages.jl:70
|
162 |
+
β [13] #remotecall_fetch#158
|
163 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:450 [inlined]
|
164 |
+
β [14] remotecall_fetch
|
165 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:449 [inlined]
|
166 |
+
β [15] remotecall_fetch
|
167 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:492 [inlined]
|
168 |
+
β [16] setup_http_listener(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
169 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:344
|
170 |
+
β [17] setup_http_listener (repeats 2 times)
|
171 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Server.jl:342 [inlined]
|
172 |
+
β [18] (::Genie.Server.var"#24#25"{typeof(Genie.Server.setup_http_listener)})(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
173 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:313
|
174 |
+
β [19] setup_http_streamer(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
175 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:333
|
176 |
+
β [20] (::Genie.Server.var"#6#12")(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
177 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:124
|
178 |
+
β [21] #invokelatest#2
|
179 |
+
β @ ./essentials.jl:892 [inlined]
|
180 |
+
β [22] invokelatest
|
181 |
+
β @ ./essentials.jl:889 [inlined]
|
182 |
+
β [23] handle_connection(f::Function, c::HTTP.Connections.Connection{Sockets.TCPSocket}, listener::HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, readtimeout::Int64, access_log::Nothing, verbose::Bool)
|
183 |
+
β @ HTTP.Servers ~/.julia/packages/HTTP/4AUPl/src/Servers.jl:469
|
184 |
+
β [24] (::HTTP.Servers.var"#16#17"{Genie.Server.var"#6#12", HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, Set{HTTP.Connections.Connection}, Int64, Nothing, ReentrantLock, Bool, Base.Semaphore, HTTP.Connections.Connection{Sockets.TCPSocket}})()
|
185 |
+
β @ HTTP.Servers ~/.julia/packages/HTTP/4AUPl/src/Servers.jl:401
|
186 |
+
β
|
187 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:356
|
188 |
+
β Error: 2025-03-14 20:32:29 UndefVarError: `interpolate` not defined
|
189 |
+
β Stacktrace:
|
190 |
+
β [1] generate_gradient(start_color::ColorTypes.RGB{FixedPointNumbers.N0f8}, end_color::ColorTypes.RGB{FixedPointNumbers.N0f8}, num_steps::Int64)
|
191 |
+
β @ Main.MyController ~/github/GenieOnHuggingFaceSpaces/lib/MyController.jl:24
|
192 |
+
β [2] index()
|
193 |
+
β @ Main.MyController ~/github/GenieOnHuggingFaceSpaces/lib/MyController.jl:39
|
194 |
+
β [3] run_route(r::Genie.Router.Route)
|
195 |
+
β @ Genie.Router ~/.julia/packages/Genie/VEhXJ/src/Router.jl:547
|
196 |
+
β [4] route_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
197 |
+
β @ Genie.Router ~/.julia/packages/Genie/VEhXJ/src/Router.jl:172
|
198 |
+
β [5] route_request
|
199 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Router.jl:147 [inlined]
|
200 |
+
β [6] handle_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
201 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:300
|
202 |
+
β [7] handle_request
|
203 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Server.jl:292 [inlined]
|
204 |
+
β [8] (::Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response})()
|
205 |
+
β @ Genie.Server ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/macros.jl:123
|
206 |
+
β [9] #invokelatest#2
|
207 |
+
β @ ./essentials.jl:892 [inlined]
|
208 |
+
β [10] invokelatest
|
209 |
+
β @ ./essentials.jl:889 [inlined]
|
210 |
+
β [11] #153
|
211 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:425 [inlined]
|
212 |
+
β [12] run_work_thunk(thunk::Distributed.var"#153#154"{Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response}, Tuple{}, @Kwargs{}}, print_error::Bool)
|
213 |
+
β @ Distributed ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/process_messages.jl:70
|
214 |
+
β [13] #remotecall_fetch#158
|
215 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:450 [inlined]
|
216 |
+
β [14] remotecall_fetch
|
217 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:449 [inlined]
|
218 |
+
β [15] remotecall_fetch
|
219 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:492 [inlined]
|
220 |
+
β [16] setup_http_listener(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
221 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:344
|
222 |
+
β [17] setup_http_listener (repeats 2 times)
|
223 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Server.jl:342 [inlined]
|
224 |
+
β [18] (::Genie.Server.var"#24#25"{typeof(Genie.Server.setup_http_listener)})(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
225 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:313
|
226 |
+
β [19] setup_http_streamer(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
227 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:333
|
228 |
+
β [20] (::Genie.Server.var"#6#12")(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
229 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:124
|
230 |
+
β [21] #invokelatest#2
|
231 |
+
β @ ./essentials.jl:892 [inlined]
|
232 |
+
β [22] invokelatest
|
233 |
+
β @ ./essentials.jl:889 [inlined]
|
234 |
+
β [23] handle_connection(f::Function, c::HTTP.Connections.Connection{Sockets.TCPSocket}, listener::HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, readtimeout::Int64, access_log::Nothing, verbose::Bool)
|
235 |
+
β @ HTTP.Servers ~/.julia/packages/HTTP/4AUPl/src/Servers.jl:469
|
236 |
+
β [24] (::HTTP.Servers.var"#16#17"{Genie.Server.var"#6#12", HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, Set{HTTP.Connections.Connection}, Int64, Nothing, ReentrantLock, Bool, Base.Semaphore, HTTP.Connections.Connection{Sockets.TCPSocket}})()
|
237 |
+
β @ HTTP.Servers ~/.julia/packages/HTTP/4AUPl/src/Servers.jl:401
|
238 |
+
β
|
239 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:356
|
240 |
+
β Info: 2025-03-14 20:35:12 Autoreloading
|
241 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
242 |
+
β Info: 2025-03-14 20:35:41 Server on 127.0.0.1:8000 closing
|
243 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:409
|
244 |
+
β Info: 2025-03-14 20:35:45
|
245 |
+
β Web Server starting at http://127.0.0.1:8000
|
246 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
247 |
+
β Info: 2025-03-14 20:35:45 Listening on: 127.0.0.1:8000, thread id: 1
|
248 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
249 |
+
β Info: 2025-03-14 20:35:58 Calling finalizers
|
250 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
251 |
+
β Error: 2025-03-14 20:35:59 MethodError: no method matching color_text(::Vector{SubString{String}}, ::Vector{ColorTypes.RGB{FixedPointNumbers.N0f8}})
|
252 |
+
β Stacktrace:
|
253 |
+
β [1] index()
|
254 |
+
β @ Main.MyController ~/github/GenieOnHuggingFaceSpaces/lib/MyController.jl:34
|
255 |
+
β [2] run_route(r::Genie.Router.Route)
|
256 |
+
β @ Genie.Router ~/.julia/packages/Genie/VEhXJ/src/Router.jl:547
|
257 |
+
β [3] route_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
258 |
+
β @ Genie.Router ~/.julia/packages/Genie/VEhXJ/src/Router.jl:172
|
259 |
+
β [4] route_request
|
260 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Router.jl:147 [inlined]
|
261 |
+
β [5] handle_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
262 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:300
|
263 |
+
β [6] handle_request
|
264 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Server.jl:292 [inlined]
|
265 |
+
β [7] (::Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response})()
|
266 |
+
β @ Genie.Server ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/macros.jl:123
|
267 |
+
β [8] #invokelatest#2
|
268 |
+
β @ ./essentials.jl:892 [inlined]
|
269 |
+
β [9] invokelatest
|
270 |
+
β @ ./essentials.jl:889 [inlined]
|
271 |
+
β [10] #153
|
272 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:425 [inlined]
|
273 |
+
β [11] run_work_thunk(thunk::Distributed.var"#153#154"{Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response}, Tuple{}, @Kwargs{}}, print_error::Bool)
|
274 |
+
β @ Distributed ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/process_messages.jl:70
|
275 |
+
β [12] #remotecall_fetch#158
|
276 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:450 [inlined]
|
277 |
+
β [13] remotecall_fetch
|
278 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:449 [inlined]
|
279 |
+
β [14] remotecall_fetch
|
280 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:492 [inlined]
|
281 |
+
β [15] setup_http_listener(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
282 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:344
|
283 |
+
β [16] setup_http_listener (repeats 2 times)
|
284 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Server.jl:342 [inlined]
|
285 |
+
β [17] (::Genie.Server.var"#24#25"{typeof(Genie.Server.setup_http_listener)})(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
286 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:313
|
287 |
+
β [18] setup_http_streamer(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
288 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:333
|
289 |
+
β [19] (::Genie.Server.var"#6#12")(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
290 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:124
|
291 |
+
β [20] #invokelatest#2
|
292 |
+
β @ ./essentials.jl:892 [inlined]
|
293 |
+
β [21] invokelatest
|
294 |
+
β @ ./essentials.jl:889 [inlined]
|
295 |
+
β [22] handle_connection(f::Function, c::HTTP.Connections.Connection{Sockets.TCPSocket}, listener::HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, readtimeout::Int64, access_log::Nothing, verbose::Bool)
|
296 |
+
β @ HTTP.Servers ~/.julia/packages/HTTP/4AUPl/src/Servers.jl:469
|
297 |
+
β [23] (::HTTP.Servers.var"#16#17"{Genie.Server.var"#6#12", HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, Set{HTTP.Connections.Connection}, Int64, Nothing, ReentrantLock, Bool, Base.Semaphore, HTTP.Connections.Connection{Sockets.TCPSocket}})()
|
298 |
+
β @ HTTP.Servers ~/.julia/packages/HTTP/4AUPl/src/Servers.jl:401
|
299 |
+
β
|
300 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:356
|
301 |
+
β Info: 2025-03-14 20:37:21 Autoreloading
|
302 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
303 |
+
β Info: 2025-03-14 20:37:31 Server on 127.0.0.1:8000 closing
|
304 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:409
|
305 |
+
β Info: 2025-03-14 20:37:43
|
306 |
+
β Web Server starting at http://127.0.0.1:8000
|
307 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
308 |
+
β Info: 2025-03-14 20:37:43 Listening on: 127.0.0.1:8000, thread id: 1
|
309 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
310 |
+
β Error: 2025-03-14 20:37:49 MethodError: no method matching color_text(::Vector{String}, ::Vector{ColorTypes.RGB{FixedPointNumbers.N0f8}})
|
311 |
+
β
|
312 |
+
β Closest candidates are:
|
313 |
+
β color_text(::Vector{String}, !Matched::Vector{ColorTypes.RGB})
|
314 |
+
β @ Main.MyController ~/github/GenieOnHuggingFaceSpaces/lib/MyController.jl:6
|
315 |
+
β
|
316 |
+
β Stacktrace:
|
317 |
+
β [1] index()
|
318 |
+
β @ Main.MyController ~/github/GenieOnHuggingFaceSpaces/lib/MyController.jl:34
|
319 |
+
β [2] run_route(r::Genie.Router.Route)
|
320 |
+
β @ Genie.Router ~/.julia/packages/Genie/VEhXJ/src/Router.jl:547
|
321 |
+
β [3] route_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
322 |
+
β @ Genie.Router ~/.julia/packages/Genie/VEhXJ/src/Router.jl:172
|
323 |
+
β [4] route_request
|
324 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Router.jl:147 [inlined]
|
325 |
+
β [5] handle_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
326 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:300
|
327 |
+
β [6] handle_request
|
328 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Server.jl:292 [inlined]
|
329 |
+
β [7] (::Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response})()
|
330 |
+
β @ Genie.Server ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/macros.jl:123
|
331 |
+
β [8] #invokelatest#2
|
332 |
+
β @ ./essentials.jl:892 [inlined]
|
333 |
+
β [9] invokelatest
|
334 |
+
β @ ./essentials.jl:889 [inlined]
|
335 |
+
β [10] #153
|
336 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:425 [inlined]
|
337 |
+
β [11] run_work_thunk(thunk::Distributed.var"#153#154"{Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response}, Tuple{}, @Kwargs{}}, print_error::Bool)
|
338 |
+
β @ Distributed ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/process_messages.jl:70
|
339 |
+
β [12] #remotecall_fetch#158
|
340 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:450 [inlined]
|
341 |
+
β [13] remotecall_fetch
|
342 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:449 [inlined]
|
343 |
+
β [14] remotecall_fetch
|
344 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:492 [inlined]
|
345 |
+
β [15] setup_http_listener(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
346 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:344
|
347 |
+
β [16] setup_http_listener (repeats 2 times)
|
348 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Server.jl:342 [inlined]
|
349 |
+
β [17] (::Genie.Server.var"#24#25"{typeof(Genie.Server.setup_http_listener)})(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
350 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:313
|
351 |
+
β [18] setup_http_streamer(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
352 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:333
|
353 |
+
β [19] (::Genie.Server.var"#6#12")(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
354 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:124
|
355 |
+
β [20] #invokelatest#2
|
356 |
+
β @ ./essentials.jl:892 [inlined]
|
357 |
+
β [21] invokelatest
|
358 |
+
β @ ./essentials.jl:889 [inlined]
|
359 |
+
β [22] handle_connection(f::Function, c::HTTP.Connections.Connection{Sockets.TCPSocket}, listener::HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, readtimeout::Int64, access_log::Nothing, verbose::Bool)
|
360 |
+
β @ HTTP.Servers ~/.julia/packages/HTTP/4AUPl/src/Servers.jl:469
|
361 |
+
β [23] (::HTTP.Servers.var"#16#17"{Genie.Server.var"#6#12", HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, Set{HTTP.Connections.Connection}, Int64, Nothing, ReentrantLock, Bool, Base.Semaphore, HTTP.Connections.Connection{Sockets.TCPSocket}})()
|
362 |
+
β @ HTTP.Servers ~/.julia/packages/HTTP/4AUPl/src/Servers.jl:401
|
363 |
+
β
|
364 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:356
|
365 |
+
β Info: 2025-03-14 20:37:59 Server on 127.0.0.1:8000 closing
|
366 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:409
|
367 |
+
β Error: 2025-03-14 20:40:43 Failed to revise /home/swojcik/github/GenieOnHuggingFaceSpaces/lib/MyController.jl
|
368 |
+
β exception = Revise.ReviseEvalException("/home/swojcik/github/GenieOnHuggingFaceSpaces/lib/MyController.jl:6", UndefVarError(:FixedPointNumbers), Any[(top-level scope at MyController.jl:6, 1)])
|
369 |
+
β @ Revise /home/swojcik/.julia/packages/Revise/tTIBp/src/packagedef.jl:776
|
370 |
+
β Warning: 2025-03-14 20:40:43 The running code does not match the saved version for the following files:
|
371 |
+
β
|
372 |
+
β /home/swojcik/github/GenieOnHuggingFaceSpaces/lib/MyController.jl
|
373 |
+
β
|
374 |
+
β If the error was due to evaluation order, it can sometimes be resolved by calling `Revise.retry()`.
|
375 |
+
β Use Revise.errors() to report errors again. Only the first error in each file is shown.
|
376 |
+
β Your prompt color may be yellow until the errors are resolved.
|
377 |
+
β @ Revise /home/swojcik/.julia/packages/Revise/tTIBp/src/packagedef.jl:893
|
378 |
+
β Info: 2025-03-14 20:50:59
|
379 |
+
β Web Server starting at http://127.0.0.1:8000
|
380 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
381 |
+
β Info: 2025-03-14 20:50:59 Listening on: 127.0.0.1:8000, thread id: 1
|
382 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
383 |
+
β Error: 2025-03-14 20:51:05 MethodError: no method matching index()
|
384 |
+
β Stacktrace:
|
385 |
+
β [1] #invokelatest#2
|
386 |
+
β @ ./essentials.jl:892 [inlined]
|
387 |
+
β [2] invokelatest
|
388 |
+
β @ ./essentials.jl:889 [inlined]
|
389 |
+
β [3] run_route(r::Genie.Router.Route)
|
390 |
+
β @ Genie.Router ~/.julia/packages/Genie/VEhXJ/src/Router.jl:550
|
391 |
+
β [4] route_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
392 |
+
β @ Genie.Router ~/.julia/packages/Genie/VEhXJ/src/Router.jl:172
|
393 |
+
β [5] route_request
|
394 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Router.jl:147 [inlined]
|
395 |
+
β [6] handle_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
396 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:300
|
397 |
+
β [7] handle_request
|
398 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Server.jl:292 [inlined]
|
399 |
+
β [8] (::Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response})()
|
400 |
+
β @ Genie.Server ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/macros.jl:123
|
401 |
+
β [9] #invokelatest#2
|
402 |
+
β @ ./essentials.jl:892 [inlined]
|
403 |
+
β [10] invokelatest
|
404 |
+
β @ ./essentials.jl:889 [inlined]
|
405 |
+
β [11] #153
|
406 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:425 [inlined]
|
407 |
+
β [12] run_work_thunk(thunk::Distributed.var"#153#154"{Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response}, Tuple{}, @Kwargs{}}, print_error::Bool)
|
408 |
+
β @ Distributed ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/process_messages.jl:70
|
409 |
+
β [13] #remotecall_fetch#158
|
410 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:450 [inlined]
|
411 |
+
β [14] remotecall_fetch
|
412 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:449 [inlined]
|
413 |
+
β [15] remotecall_fetch
|
414 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:492 [inlined]
|
415 |
+
β [16] setup_http_listener(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
416 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:344
|
417 |
+
β [17] setup_http_listener (repeats 2 times)
|
418 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Server.jl:342 [inlined]
|
419 |
+
β [18] (::Genie.Server.var"#24#25"{typeof(Genie.Server.setup_http_listener)})(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
420 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:313
|
421 |
+
β [19] setup_http_streamer(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
422 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:333
|
423 |
+
β [20] (::Genie.Server.var"#6#12")(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
424 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:124
|
425 |
+
β [21] #invokelatest#2
|
426 |
+
β @ ./essentials.jl:892 [inlined]
|
427 |
+
β [22] invokelatest
|
428 |
+
β @ ./essentials.jl:889 [inlined]
|
429 |
+
β [23] handle_connection(f::Function, c::HTTP.Connections.Connection{Sockets.TCPSocket}, listener::HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, readtimeout::Int64, access_log::Nothing, verbose::Bool)
|
430 |
+
β @ HTTP.Servers ~/.julia/packages/HTTP/4AUPl/src/Servers.jl:469
|
431 |
+
β [24] (::HTTP.Servers.var"#16#17"{Genie.Server.var"#6#12", HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, Set{HTTP.Connections.Connection}, Int64, Nothing, ReentrantLock, Bool, Base.Semaphore, HTTP.Connections.Connection{Sockets.TCPSocket}})()
|
432 |
+
β @ HTTP.Servers ~/.julia/packages/HTTP/4AUPl/src/Servers.jl:401
|
433 |
+
β
|
434 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:356
|
435 |
+
β Info: 2025-03-14 20:51:30 Server on 127.0.0.1:8000 closing
|
436 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:409
|
437 |
+
β Info: 2025-03-14 20:53:27 Watching ["/home/swojcik/github/GenieOnHuggingFaceSpaces"]
|
438 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
439 |
+
β Info: 2025-03-14 20:53:27 Autoreloading
|
440 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
441 |
+
β Info: 2025-03-14 20:53:28
|
442 |
+
β Web Server starting at http://127.0.0.1:8000
|
443 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
444 |
+
β Info: 2025-03-14 20:53:28 Listening on: 127.0.0.1:8000, thread id: 1
|
445 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
446 |
+
β Info: 2025-03-14 20:53:43 Calling finalizers
|
447 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
448 |
+
β Error: 2025-03-14 20:53:44 UndefVarError: `gradient_text` not defined
|
449 |
+
β Stacktrace:
|
450 |
+
β [1] (::Main.App.var"#11#12")()
|
451 |
+
β @ Main.App ~/github/GenieOnHuggingFaceSpaces/app.jl:25
|
452 |
+
β [2] run_route(r::Genie.Router.Route)
|
453 |
+
β @ Genie.Router ~/.julia/packages/Genie/VEhXJ/src/Router.jl:547
|
454 |
+
β [3] route_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
455 |
+
β @ Genie.Router ~/.julia/packages/Genie/VEhXJ/src/Router.jl:172
|
456 |
+
β [4] route_request
|
457 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Router.jl:147 [inlined]
|
458 |
+
β [5] handle_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
459 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:300
|
460 |
+
β [6] handle_request
|
461 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Server.jl:292 [inlined]
|
462 |
+
β [7] (::Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response})()
|
463 |
+
β @ Genie.Server ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/macros.jl:123
|
464 |
+
β [8] #invokelatest#2
|
465 |
+
β @ ./essentials.jl:892 [inlined]
|
466 |
+
β [9] invokelatest
|
467 |
+
β @ ./essentials.jl:889 [inlined]
|
468 |
+
β [10] #153
|
469 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:425 [inlined]
|
470 |
+
β [11] run_work_thunk(thunk::Distributed.var"#153#154"{Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response}, Tuple{}, @Kwargs{}}, print_error::Bool)
|
471 |
+
β @ Distributed ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/process_messages.jl:70
|
472 |
+
β [12] #remotecall_fetch#158
|
473 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:450 [inlined]
|
474 |
+
β [13] remotecall_fetch
|
475 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:449 [inlined]
|
476 |
+
β [14] remotecall_fetch
|
477 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:492 [inlined]
|
478 |
+
β [15] setup_http_listener(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
479 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:344
|
480 |
+
β [16] setup_http_listener (repeats 2 times)
|
481 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Server.jl:342 [inlined]
|
482 |
+
β [17] (::Genie.Server.var"#24#25"{typeof(Genie.Server.setup_http_listener)})(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
483 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:313
|
484 |
+
β [18] setup_http_streamer(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
485 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:333
|
486 |
+
β [19] (::Genie.Server.var"#6#12")(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
487 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:124
|
488 |
+
β [20] #invokelatest#2
|
489 |
+
β @ ./essentials.jl:892 [inlined]
|
490 |
+
β [21] invokelatest
|
491 |
+
β @ ./essentials.jl:889 [inlined]
|
492 |
+
β [22] handle_connection(f::Function, c::HTTP.Connections.Connection{Sockets.TCPSocket}, listener::HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, readtimeout::Int64, access_log::Nothing, verbose::Bool)
|
493 |
+
β @ HTTP.Servers ~/.julia/packages/HTTP/4AUPl/src/Servers.jl:469
|
494 |
+
β [23] (::HTTP.Servers.var"#16#17"{Genie.Server.var"#6#12", HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, Set{HTTP.Connections.Connection}, Int64, Nothing, ReentrantLock, Bool, Base.Semaphore, HTTP.Connections.Connection{Sockets.TCPSocket}})()
|
495 |
+
β @ HTTP.Servers ~/.julia/packages/HTTP/4AUPl/src/Servers.jl:401
|
496 |
+
β
|
497 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:356
|
498 |
+
β Info: 2025-03-14 20:54:06 Autoreloading
|
499 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
500 |
+
β Error: 2025-03-14 20:54:11 UndefVarError: `gradient_text` not defined
|
501 |
+
β Stacktrace:
|
502 |
+
β [1] (::Main.App.var"#11#12")()
|
503 |
+
β @ Main.App ~/github/GenieOnHuggingFaceSpaces/app.jl:25
|
504 |
+
β [2] run_route(r::Genie.Router.Route)
|
505 |
+
β @ Genie.Router ~/.julia/packages/Genie/VEhXJ/src/Router.jl:547
|
506 |
+
β [3] route_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
507 |
+
β @ Genie.Router ~/.julia/packages/Genie/VEhXJ/src/Router.jl:172
|
508 |
+
β [4] route_request
|
509 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Router.jl:147 [inlined]
|
510 |
+
β [5] handle_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
511 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:300
|
512 |
+
β [6] handle_request
|
513 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Server.jl:292 [inlined]
|
514 |
+
β [7] (::Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response})()
|
515 |
+
β @ Genie.Server ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/macros.jl:123
|
516 |
+
β [8] #invokelatest#2
|
517 |
+
β @ ./essentials.jl:892 [inlined]
|
518 |
+
β [9] invokelatest
|
519 |
+
β @ ./essentials.jl:889 [inlined]
|
520 |
+
β [10] #153
|
521 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:425 [inlined]
|
522 |
+
β [11] run_work_thunk(thunk::Distributed.var"#153#154"{Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response}, Tuple{}, @Kwargs{}}, print_error::Bool)
|
523 |
+
β @ Distributed ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/process_messages.jl:70
|
524 |
+
β [12] #remotecall_fetch#158
|
525 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:450 [inlined]
|
526 |
+
β [13] remotecall_fetch
|
527 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:449 [inlined]
|
528 |
+
β [14] remotecall_fetch
|
529 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:492 [inlined]
|
530 |
+
β [15] setup_http_listener(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
531 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:344
|
532 |
+
β [16] setup_http_listener (repeats 2 times)
|
533 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Server.jl:342 [inlined]
|
534 |
+
β [17] (::Genie.Server.var"#24#25"{typeof(Genie.Server.setup_http_listener)})(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
535 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:313
|
536 |
+
β [18] setup_http_streamer(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
537 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:333
|
538 |
+
β [19] (::Genie.Server.var"#6#12")(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
539 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:124
|
540 |
+
β [20] #invokelatest#2
|
541 |
+
β @ ./essentials.jl:892 [inlined]
|
542 |
+
β [21] invokelatest
|
543 |
+
β @ ./essentials.jl:889 [inlined]
|
544 |
+
β [22] handle_connection(f::Function, c::HTTP.Connections.Connection{Sockets.TCPSocket}, listener::HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, readtimeout::Int64, access_log::Nothing, verbose::Bool)
|
545 |
+
β @ HTTP.Servers ~/.julia/packages/HTTP/4AUPl/src/Servers.jl:469
|
546 |
+
β [23] (::HTTP.Servers.var"#16#17"{Genie.Server.var"#6#12", HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, Set{HTTP.Connections.Connection}, Int64, Nothing, ReentrantLock, Bool, Base.Semaphore, HTTP.Connections.Connection{Sockets.TCPSocket}})()
|
547 |
+
β @ HTTP.Servers ~/.julia/packages/HTTP/4AUPl/src/Servers.jl:401
|
548 |
+
β
|
549 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:356
|
550 |
+
β Error: 2025-03-14 20:54:12 UndefVarError: `gradient_text` not defined
|
551 |
+
β Stacktrace:
|
552 |
+
β [1] (::Main.App.var"#11#12")()
|
553 |
+
β @ Main.App ~/github/GenieOnHuggingFaceSpaces/app.jl:25
|
554 |
+
β [2] run_route(r::Genie.Router.Route)
|
555 |
+
β @ Genie.Router ~/.julia/packages/Genie/VEhXJ/src/Router.jl:547
|
556 |
+
β [3] route_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
557 |
+
β @ Genie.Router ~/.julia/packages/Genie/VEhXJ/src/Router.jl:172
|
558 |
+
β [4] route_request
|
559 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Router.jl:147 [inlined]
|
560 |
+
β [5] handle_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
561 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:300
|
562 |
+
β [6] handle_request
|
563 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Server.jl:292 [inlined]
|
564 |
+
β [7] (::Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response})()
|
565 |
+
β @ Genie.Server ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/macros.jl:123
|
566 |
+
β [8] #invokelatest#2
|
567 |
+
β @ ./essentials.jl:892 [inlined]
|
568 |
+
β [9] invokelatest
|
569 |
+
β @ ./essentials.jl:889 [inlined]
|
570 |
+
β [10] #153
|
571 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:425 [inlined]
|
572 |
+
β [11] run_work_thunk(thunk::Distributed.var"#153#154"{Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response}, Tuple{}, @Kwargs{}}, print_error::Bool)
|
573 |
+
β @ Distributed ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/process_messages.jl:70
|
574 |
+
β [12] #remotecall_fetch#158
|
575 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:450 [inlined]
|
576 |
+
β [13] remotecall_fetch
|
577 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:449 [inlined]
|
578 |
+
β [14] remotecall_fetch
|
579 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:492 [inlined]
|
580 |
+
β [15] setup_http_listener(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
581 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:344
|
582 |
+
β [16] setup_http_listener (repeats 2 times)
|
583 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Server.jl:342 [inlined]
|
584 |
+
β [17] (::Genie.Server.var"#24#25"{typeof(Genie.Server.setup_http_listener)})(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
585 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:313
|
586 |
+
β [18] setup_http_streamer(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
587 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:333
|
588 |
+
β [19] (::Genie.Server.var"#6#12")(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
589 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:124
|
590 |
+
β [20] #invokelatest#2
|
591 |
+
β @ ./essentials.jl:892 [inlined]
|
592 |
+
β [21] invokelatest
|
593 |
+
β @ ./essentials.jl:889 [inlined]
|
594 |
+
β [22] handle_connection(f::Function, c::HTTP.Connections.Connection{Sockets.TCPSocket}, listener::HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, readtimeout::Int64, access_log::Nothing, verbose::Bool)
|
595 |
+
β @ HTTP.Servers ~/.julia/packages/HTTP/4AUPl/src/Servers.jl:469
|
596 |
+
β [23] (::HTTP.Servers.var"#16#17"{Genie.Server.var"#6#12", HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, Set{HTTP.Connections.Connection}, Int64, Nothing, ReentrantLock, Bool, Base.Semaphore, HTTP.Connections.Connection{Sockets.TCPSocket}})()
|
597 |
+
β @ HTTP.Servers ~/.julia/packages/HTTP/4AUPl/src/Servers.jl:401
|
598 |
+
β
|
599 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:356
|
600 |
+
β Error: 2025-03-14 20:54:15 UndefVarError: `gradient_text` not defined
|
601 |
+
β Stacktrace:
|
602 |
+
β [1] (::Main.App.var"#11#12")()
|
603 |
+
β @ Main.App ~/github/GenieOnHuggingFaceSpaces/app.jl:25
|
604 |
+
β [2] run_route(r::Genie.Router.Route)
|
605 |
+
β @ Genie.Router ~/.julia/packages/Genie/VEhXJ/src/Router.jl:547
|
606 |
+
β [3] route_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
607 |
+
β @ Genie.Router ~/.julia/packages/Genie/VEhXJ/src/Router.jl:172
|
608 |
+
β [4] route_request
|
609 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Router.jl:147 [inlined]
|
610 |
+
β [5] handle_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
611 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:300
|
612 |
+
β [6] handle_request
|
613 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Server.jl:292 [inlined]
|
614 |
+
β [7] (::Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response})()
|
615 |
+
β @ Genie.Server ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/macros.jl:123
|
616 |
+
β [8] #invokelatest#2
|
617 |
+
β @ ./essentials.jl:892 [inlined]
|
618 |
+
β [9] invokelatest
|
619 |
+
β @ ./essentials.jl:889 [inlined]
|
620 |
+
β [10] #153
|
621 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:425 [inlined]
|
622 |
+
β [11] run_work_thunk(thunk::Distributed.var"#153#154"{Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response}, Tuple{}, @Kwargs{}}, print_error::Bool)
|
623 |
+
β @ Distributed ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/process_messages.jl:70
|
624 |
+
β [12] #remotecall_fetch#158
|
625 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:450 [inlined]
|
626 |
+
β [13] remotecall_fetch
|
627 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:449 [inlined]
|
628 |
+
β [14] remotecall_fetch
|
629 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:492 [inlined]
|
630 |
+
β [15] setup_http_listener(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
631 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:344
|
632 |
+
β [16] setup_http_listener (repeats 2 times)
|
633 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Server.jl:342 [inlined]
|
634 |
+
β [17] (::Genie.Server.var"#24#25"{typeof(Genie.Server.setup_http_listener)})(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
635 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:313
|
636 |
+
β [18] setup_http_streamer(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
637 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:333
|
638 |
+
β [19] (::Genie.Server.var"#6#12")(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
639 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:124
|
640 |
+
β [20] #invokelatest#2
|
641 |
+
β @ ./essentials.jl:892 [inlined]
|
642 |
+
β [21] invokelatest
|
643 |
+
β @ ./essentials.jl:889 [inlined]
|
644 |
+
β [22] handle_connection(f::Function, c::HTTP.Connections.Connection{Sockets.TCPSocket}, listener::HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, readtimeout::Int64, access_log::Nothing, verbose::Bool)
|
645 |
+
β @ HTTP.Servers ~/.julia/packages/HTTP/4AUPl/src/Servers.jl:469
|
646 |
+
β [23] (::HTTP.Servers.var"#16#17"{Genie.Server.var"#6#12", HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, Set{HTTP.Connections.Connection}, Int64, Nothing, ReentrantLock, Bool, Base.Semaphore, HTTP.Connections.Connection{Sockets.TCPSocket}})()
|
647 |
+
β @ HTTP.Servers ~/.julia/packages/HTTP/4AUPl/src/Servers.jl:401
|
648 |
+
β
|
649 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:356
|
650 |
+
β Info: 2025-03-14 20:54:20 Server on 127.0.0.1:8000 closing
|
651 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:409
|
652 |
+
β Info: 2025-03-14 20:54:23
|
653 |
+
β Web Server starting at http://127.0.0.1:8000
|
654 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
655 |
+
β Info: 2025-03-14 20:54:23 Listening on: 127.0.0.1:8000, thread id: 1
|
656 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
657 |
+
β Error: 2025-03-14 20:54:26 UndefVarError: `gradient_text` not defined
|
658 |
+
β Stacktrace:
|
659 |
+
β [1] (::Main.App.var"#11#12")()
|
660 |
+
β @ Main.App ~/github/GenieOnHuggingFaceSpaces/app.jl:25
|
661 |
+
β [2] run_route(r::Genie.Router.Route)
|
662 |
+
β @ Genie.Router ~/.julia/packages/Genie/VEhXJ/src/Router.jl:547
|
663 |
+
β [3] route_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
664 |
+
β @ Genie.Router ~/.julia/packages/Genie/VEhXJ/src/Router.jl:172
|
665 |
+
β [4] route_request
|
666 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Router.jl:147 [inlined]
|
667 |
+
β [5] handle_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
668 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:300
|
669 |
+
β [6] handle_request
|
670 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Server.jl:292 [inlined]
|
671 |
+
β [7] (::Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response})()
|
672 |
+
β @ Genie.Server ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/macros.jl:123
|
673 |
+
β [8] #invokelatest#2
|
674 |
+
β @ ./essentials.jl:892 [inlined]
|
675 |
+
β [9] invokelatest
|
676 |
+
β @ ./essentials.jl:889 [inlined]
|
677 |
+
β [10] #153
|
678 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:425 [inlined]
|
679 |
+
β [11] run_work_thunk(thunk::Distributed.var"#153#154"{Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response}, Tuple{}, @Kwargs{}}, print_error::Bool)
|
680 |
+
β @ Distributed ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/process_messages.jl:70
|
681 |
+
β [12] #remotecall_fetch#158
|
682 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:450 [inlined]
|
683 |
+
β [13] remotecall_fetch
|
684 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:449 [inlined]
|
685 |
+
β [14] remotecall_fetch
|
686 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:492 [inlined]
|
687 |
+
β [15] setup_http_listener(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
688 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:344
|
689 |
+
β [16] setup_http_listener (repeats 2 times)
|
690 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Server.jl:342 [inlined]
|
691 |
+
β [17] (::Genie.Server.var"#24#25"{typeof(Genie.Server.setup_http_listener)})(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
692 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:313
|
693 |
+
β [18] setup_http_streamer(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
694 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:333
|
695 |
+
β [19] (::Genie.Server.var"#6#12")(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
696 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:124
|
697 |
+
β [20] #invokelatest#2
|
698 |
+
β @ ./essentials.jl:892 [inlined]
|
699 |
+
β [21] invokelatest
|
700 |
+
β @ ./essentials.jl:889 [inlined]
|
701 |
+
β [22] handle_connection(f::Function, c::HTTP.Connections.Connection{Sockets.TCPSocket}, listener::HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, readtimeout::Int64, access_log::Nothing, verbose::Bool)
|
702 |
+
β @ HTTP.Servers ~/.julia/packages/HTTP/4AUPl/src/Servers.jl:469
|
703 |
+
β [23] (::HTTP.Servers.var"#16#17"{Genie.Server.var"#6#12", HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, Set{HTTP.Connections.Connection}, Int64, Nothing, ReentrantLock, Bool, Base.Semaphore, HTTP.Connections.Connection{Sockets.TCPSocket}})()
|
704 |
+
β @ HTTP.Servers ~/.julia/packages/HTTP/4AUPl/src/Servers.jl:401
|
705 |
+
β
|
706 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:356
|
707 |
+
β Error: 2025-03-14 20:54:28 UndefVarError: `gradient_text` not defined
|
708 |
+
β Stacktrace:
|
709 |
+
β [1] (::Main.App.var"#11#12")()
|
710 |
+
β @ Main.App ~/github/GenieOnHuggingFaceSpaces/app.jl:25
|
711 |
+
β [2] run_route(r::Genie.Router.Route)
|
712 |
+
β @ Genie.Router ~/.julia/packages/Genie/VEhXJ/src/Router.jl:547
|
713 |
+
β [3] route_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
714 |
+
β @ Genie.Router ~/.julia/packages/Genie/VEhXJ/src/Router.jl:172
|
715 |
+
β [4] route_request
|
716 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Router.jl:147 [inlined]
|
717 |
+
β [5] handle_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
718 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:300
|
719 |
+
β [6] handle_request
|
720 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Server.jl:292 [inlined]
|
721 |
+
β [7] (::Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response})()
|
722 |
+
β @ Genie.Server ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/macros.jl:123
|
723 |
+
β [8] #invokelatest#2
|
724 |
+
β @ ./essentials.jl:892 [inlined]
|
725 |
+
β [9] invokelatest
|
726 |
+
β @ ./essentials.jl:889 [inlined]
|
727 |
+
β [10] #153
|
728 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:425 [inlined]
|
729 |
+
β [11] run_work_thunk(thunk::Distributed.var"#153#154"{Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response}, Tuple{}, @Kwargs{}}, print_error::Bool)
|
730 |
+
β @ Distributed ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/process_messages.jl:70
|
731 |
+
β [12] #remotecall_fetch#158
|
732 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:450 [inlined]
|
733 |
+
β [13] remotecall_fetch
|
734 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:449 [inlined]
|
735 |
+
β [14] remotecall_fetch
|
736 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:492 [inlined]
|
737 |
+
β [15] setup_http_listener(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
738 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:344
|
739 |
+
β [16] setup_http_listener (repeats 2 times)
|
740 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Server.jl:342 [inlined]
|
741 |
+
β [17] (::Genie.Server.var"#24#25"{typeof(Genie.Server.setup_http_listener)})(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
742 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:313
|
743 |
+
β [18] setup_http_streamer(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
744 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:333
|
745 |
+
β [19] (::Genie.Server.var"#6#12")(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
746 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:124
|
747 |
+
β [20] #invokelatest#2
|
748 |
+
β @ ./essentials.jl:892 [inlined]
|
749 |
+
β [21] invokelatest
|
750 |
+
β @ ./essentials.jl:889 [inlined]
|
751 |
+
β [22] handle_connection(f::Function, c::HTTP.Connections.Connection{Sockets.TCPSocket}, listener::HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, readtimeout::Int64, access_log::Nothing, verbose::Bool)
|
752 |
+
β @ HTTP.Servers ~/.julia/packages/HTTP/4AUPl/src/Servers.jl:469
|
753 |
+
β [23] (::HTTP.Servers.var"#16#17"{Genie.Server.var"#6#12", HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, Set{HTTP.Connections.Connection}, Int64, Nothing, ReentrantLock, Bool, Base.Semaphore, HTTP.Connections.Connection{Sockets.TCPSocket}})()
|
754 |
+
β @ HTTP.Servers ~/.julia/packages/HTTP/4AUPl/src/Servers.jl:401
|
755 |
+
β
|
756 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:356
|
757 |
+
β Error: 2025-03-14 20:54:29 UndefVarError: `gradient_text` not defined
|
758 |
+
β Stacktrace:
|
759 |
+
β [1] (::Main.App.var"#11#12")()
|
760 |
+
β @ Main.App ~/github/GenieOnHuggingFaceSpaces/app.jl:25
|
761 |
+
β [2] run_route(r::Genie.Router.Route)
|
762 |
+
β @ Genie.Router ~/.julia/packages/Genie/VEhXJ/src/Router.jl:547
|
763 |
+
β [3] route_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
764 |
+
β @ Genie.Router ~/.julia/packages/Genie/VEhXJ/src/Router.jl:172
|
765 |
+
β [4] route_request
|
766 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Router.jl:147 [inlined]
|
767 |
+
β [5] handle_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
768 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:300
|
769 |
+
β [6] handle_request
|
770 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Server.jl:292 [inlined]
|
771 |
+
β [7] (::Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response})()
|
772 |
+
β @ Genie.Server ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/macros.jl:123
|
773 |
+
β [8] #invokelatest#2
|
774 |
+
β @ ./essentials.jl:892 [inlined]
|
775 |
+
β [9] invokelatest
|
776 |
+
β @ ./essentials.jl:889 [inlined]
|
777 |
+
β [10] #153
|
778 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:425 [inlined]
|
779 |
+
β [11] run_work_thunk(thunk::Distributed.var"#153#154"{Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response}, Tuple{}, @Kwargs{}}, print_error::Bool)
|
780 |
+
β @ Distributed ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/process_messages.jl:70
|
781 |
+
β [12] #remotecall_fetch#158
|
782 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:450 [inlined]
|
783 |
+
β [13] remotecall_fetch
|
784 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:449 [inlined]
|
785 |
+
β [14] remotecall_fetch
|
786 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:492 [inlined]
|
787 |
+
β [15] setup_http_listener(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
788 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:344
|
789 |
+
β [16] setup_http_listener (repeats 2 times)
|
790 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Server.jl:342 [inlined]
|
791 |
+
β [17] (::Genie.Server.var"#24#25"{typeof(Genie.Server.setup_http_listener)})(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
792 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:313
|
793 |
+
β [18] setup_http_streamer(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
794 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:333
|
795 |
+
β [19] (::Genie.Server.var"#6#12")(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
796 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:124
|
797 |
+
β [20] #invokelatest#2
|
798 |
+
β @ ./essentials.jl:892 [inlined]
|
799 |
+
β [21] invokelatest
|
800 |
+
β @ ./essentials.jl:889 [inlined]
|
801 |
+
β [22] handle_connection(f::Function, c::HTTP.Connections.Connection{Sockets.TCPSocket}, listener::HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, readtimeout::Int64, access_log::Nothing, verbose::Bool)
|
802 |
+
β @ HTTP.Servers ~/.julia/packages/HTTP/4AUPl/src/Servers.jl:469
|
803 |
+
β [23] (::HTTP.Servers.var"#16#17"{Genie.Server.var"#6#12", HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, Set{HTTP.Connections.Connection}, Int64, Nothing, ReentrantLock, Bool, Base.Semaphore, HTTP.Connections.Connection{Sockets.TCPSocket}})()
|
804 |
+
β @ HTTP.Servers ~/.julia/packages/HTTP/4AUPl/src/Servers.jl:401
|
805 |
+
β
|
806 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:356
|
807 |
+
β Info: 2025-03-14 20:55:04 Server on 127.0.0.1:8000 closing
|
808 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:409
|
809 |
+
β Info: 2025-03-14 20:55:21 Watching ["/home/swojcik/github/GenieOnHuggingFaceSpaces"]
|
810 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
811 |
+
β Info: 2025-03-14 20:55:22 Autoreloading
|
812 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
813 |
+
β Info: 2025-03-14 20:55:23
|
814 |
+
β Web Server starting at http://127.0.0.1:8000
|
815 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
816 |
+
β Info: 2025-03-14 20:55:23 Listening on: 127.0.0.1:8000, thread id: 1
|
817 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
818 |
+
β Error: 2025-03-14 20:55:39 UndefVarError: `raw` not defined
|
819 |
+
β Stacktrace:
|
820 |
+
β [1] gradient_text(text::String, colors::Vector{String})
|
821 |
+
β @ Main.MyController ~/github/GenieOnHuggingFaceSpaces/lib/MyController.jl:24
|
822 |
+
β [2] (::Main.App.var"#11#12")()
|
823 |
+
β @ Main.App ~/github/GenieOnHuggingFaceSpaces/app.jl:25
|
824 |
+
β [3] run_route(r::Genie.Router.Route)
|
825 |
+
β @ Genie.Router ~/.julia/packages/Genie/VEhXJ/src/Router.jl:547
|
826 |
+
β [4] route_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
827 |
+
β @ Genie.Router ~/.julia/packages/Genie/VEhXJ/src/Router.jl:172
|
828 |
+
β [5] route_request
|
829 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Router.jl:147 [inlined]
|
830 |
+
β [6] handle_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
831 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:300
|
832 |
+
β [7] handle_request
|
833 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Server.jl:292 [inlined]
|
834 |
+
β [8] (::Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response})()
|
835 |
+
β @ Genie.Server ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/macros.jl:123
|
836 |
+
β [9] #invokelatest#2
|
837 |
+
β @ ./essentials.jl:892 [inlined]
|
838 |
+
β [10] invokelatest
|
839 |
+
β @ ./essentials.jl:889 [inlined]
|
840 |
+
β [11] #153
|
841 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:425 [inlined]
|
842 |
+
β [12] run_work_thunk(thunk::Distributed.var"#153#154"{Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response}, Tuple{}, @Kwargs{}}, print_error::Bool)
|
843 |
+
β @ Distributed ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/process_messages.jl:70
|
844 |
+
β [13] #remotecall_fetch#158
|
845 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:450 [inlined]
|
846 |
+
β [14] remotecall_fetch
|
847 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:449 [inlined]
|
848 |
+
β [15] remotecall_fetch
|
849 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:492 [inlined]
|
850 |
+
β [16] setup_http_listener(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
851 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:344
|
852 |
+
β [17] setup_http_listener (repeats 2 times)
|
853 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Server.jl:342 [inlined]
|
854 |
+
β [18] (::Genie.Server.var"#24#25"{typeof(Genie.Server.setup_http_listener)})(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
855 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:313
|
856 |
+
β [19] setup_http_streamer(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
857 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:333
|
858 |
+
β [20] (::Genie.Server.var"#6#12")(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
859 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:124
|
860 |
+
β [21] #invokelatest#2
|
861 |
+
β @ ./essentials.jl:892 [inlined]
|
862 |
+
β [22] invokelatest
|
863 |
+
β @ ./essentials.jl:889 [inlined]
|
864 |
+
β [23] handle_connection(f::Function, c::HTTP.Connections.Connection{Sockets.TCPSocket}, listener::HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, readtimeout::Int64, access_log::Nothing, verbose::Bool)
|
865 |
+
β @ HTTP.Servers ~/.julia/packages/HTTP/4AUPl/src/Servers.jl:469
|
866 |
+
β [24] (::HTTP.Servers.var"#16#17"{Genie.Server.var"#6#12", HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, Set{HTTP.Connections.Connection}, Int64, Nothing, ReentrantLock, Bool, Base.Semaphore, HTTP.Connections.Connection{Sockets.TCPSocket}})()
|
867 |
+
β @ HTTP.Servers ~/.julia/packages/HTTP/4AUPl/src/Servers.jl:401
|
868 |
+
β
|
869 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:356
|
870 |
+
β Info: 2025-03-14 20:55:42 Calling finalizers
|
871 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
872 |
+
β Error: 2025-03-14 20:57:05 Failed to revise /home/swojcik/github/GenieOnHuggingFaceSpaces/lib/MyController.jl
|
873 |
+
β exception = Revise.ReviseEvalException("/home/swojcik/github/GenieOnHuggingFaceSpaces/lib/MyController.jl:4", UndefVarError(:raw), Any[(top-level scope at MyController.jl:4, 1)])
|
874 |
+
β @ Revise /home/swojcik/.julia/packages/Revise/tTIBp/src/packagedef.jl:776
|
875 |
+
β Warning: 2025-03-14 20:57:06 The running code does not match the saved version for the following files:
|
876 |
+
β
|
877 |
+
β /home/swojcik/github/GenieOnHuggingFaceSpaces/lib/MyController.jl
|
878 |
+
β
|
879 |
+
β If the error was due to evaluation order, it can sometimes be resolved by calling `Revise.retry()`.
|
880 |
+
β Use Revise.errors() to report errors again. Only the first error in each file is shown.
|
881 |
+
β Your prompt color may be yellow until the errors are resolved.
|
882 |
+
β @ Revise /home/swojcik/.julia/packages/Revise/tTIBp/src/packagedef.jl:893
|
883 |
+
β Info: 2025-03-14 21:00:06 Watching ["/home/swojcik/github/GenieOnHuggingFaceSpaces"]
|
884 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
885 |
+
β Info: 2025-03-14 21:00:07 Autoreloading
|
886 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
887 |
+
β Info: 2025-03-14 21:00:09
|
888 |
+
β Web Server starting at http://127.0.0.1:8000
|
889 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
890 |
+
β Info: 2025-03-14 21:00:09 Listening on: 127.0.0.1:8000, thread id: 1
|
891 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
892 |
+
β Info: 2025-03-14 21:00:26 Watching ["/home/swojcik/github/GenieOnHuggingFaceSpaces"]
|
893 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
894 |
+
β Info: 2025-03-14 21:00:28 Autoreloading
|
895 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
896 |
+
β Info: 2025-03-14 21:00:29
|
897 |
+
β Web Server starting at http://127.0.0.1:8000
|
898 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
899 |
+
β Info: 2025-03-14 21:00:29 Listening on: 127.0.0.1:8000, thread id: 1
|
900 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
901 |
+
β Info: 2025-03-14 21:00:44 Watching ["/home/swojcik/github/GenieOnHuggingFaceSpaces"]
|
902 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
903 |
+
β Info: 2025-03-14 21:00:46 Autoreloading
|
904 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
905 |
+
β Info: 2025-03-14 21:00:47
|
906 |
+
β Web Server starting at http://127.0.0.1:8000
|
907 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
908 |
+
β Info: 2025-03-14 21:00:47 Listening on: 127.0.0.1:8000, thread id: 1
|
909 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
910 |
+
β Info: 2025-03-14 21:01:01 Calling finalizers
|
911 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
912 |
+
β Info: 2025-03-14 21:08:24 Watching ["/home/swojcik/github/GenieOnHuggingFaceSpaces"]
|
913 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
914 |
+
β Info: 2025-03-14 21:08:26 Autoreloading
|
915 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
916 |
+
β Info: 2025-03-14 21:08:28
|
917 |
+
β Web Server starting at http://127.0.0.1:8000
|
918 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
919 |
+
β Info: 2025-03-14 21:08:28 Listening on: 127.0.0.1:8000, thread id: 1
|
920 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
921 |
+
β Warning: 2025-03-14 21:08:33 UndefVarError(:html_content)
|
922 |
+
β @ Genie.Renderer.Html /home/swojcik/.julia/packages/Genie/VEhXJ/src/renderers/Html.jl:154
|
923 |
+
β Info: 2025-03-14 21:08:54 Autoreloading
|
924 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
925 |
+
β Error: 2025-03-14 21:08:59 UndefVarError: `html_content` not defined
|
926 |
+
β Stacktrace:
|
927 |
+
β [1] gradient_text(text::String, colors::Vector{String})
|
928 |
+
β @ Main.MyController ~/github/GenieOnHuggingFaceSpaces/lib/MyController.jl:24
|
929 |
+
β [2] (::Main.App.var"#11#12")()
|
930 |
+
β @ Main.App ~/github/GenieOnHuggingFaceSpaces/app.jl:25
|
931 |
+
β [3] run_route(r::Genie.Router.Route)
|
932 |
+
β @ Genie.Router ~/.julia/packages/Genie/VEhXJ/src/Router.jl:547
|
933 |
+
β [4] route_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
934 |
+
β @ Genie.Router ~/.julia/packages/Genie/VEhXJ/src/Router.jl:172
|
935 |
+
β [5] route_request
|
936 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Router.jl:147 [inlined]
|
937 |
+
β [6] handle_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
938 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:300
|
939 |
+
β [7] handle_request
|
940 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Server.jl:292 [inlined]
|
941 |
+
β [8] (::Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response})()
|
942 |
+
β @ Genie.Server ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/macros.jl:123
|
943 |
+
β [9] #invokelatest#2
|
944 |
+
β @ ./essentials.jl:892 [inlined]
|
945 |
+
β [10] invokelatest
|
946 |
+
β @ ./essentials.jl:889 [inlined]
|
947 |
+
β [11] #153
|
948 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:425 [inlined]
|
949 |
+
β [12] run_work_thunk(thunk::Distributed.var"#153#154"{Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response}, Tuple{}, @Kwargs{}}, print_error::Bool)
|
950 |
+
β @ Distributed ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/process_messages.jl:70
|
951 |
+
β [13] #remotecall_fetch#158
|
952 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:450 [inlined]
|
953 |
+
β [14] remotecall_fetch
|
954 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:449 [inlined]
|
955 |
+
β [15] remotecall_fetch
|
956 |
+
β @ ~/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:492 [inlined]
|
957 |
+
β [16] setup_http_listener(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
958 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:344
|
959 |
+
β [17] setup_http_listener (repeats 2 times)
|
960 |
+
β @ ~/.julia/packages/Genie/VEhXJ/src/Server.jl:342 [inlined]
|
961 |
+
β [18] (::Genie.Server.var"#24#25"{typeof(Genie.Server.setup_http_listener)})(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
962 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:313
|
963 |
+
β [19] setup_http_streamer(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
964 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:333
|
965 |
+
β [20] (::Genie.Server.var"#6#12")(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
966 |
+
β @ Genie.Server ~/.julia/packages/Genie/VEhXJ/src/Server.jl:124
|
967 |
+
β [21] #invokelatest#2
|
968 |
+
β @ ./essentials.jl:892 [inlined]
|
969 |
+
β [22] invokelatest
|
970 |
+
β @ ./essentials.jl:889 [inlined]
|
971 |
+
β [23] handle_connection(f::Function, c::HTTP.Connections.Connection{Sockets.TCPSocket}, listener::HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, readtimeout::Int64, access_log::Nothing, verbose::Bool)
|
972 |
+
β @ HTTP.Servers ~/.julia/packages/HTTP/4AUPl/src/Servers.jl:469
|
973 |
+
β [24] (::HTTP.Servers.var"#16#17"{Genie.Server.var"#6#12", HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, Set{HTTP.Connections.Connection}, Int64, Nothing, ReentrantLock, Bool, Base.Semaphore, HTTP.Connections.Connection{Sockets.TCPSocket}})()
|
974 |
+
β @ HTTP.Servers ~/.julia/packages/HTTP/4AUPl/src/Servers.jl:401
|
975 |
+
β
|
976 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:356
|
977 |
+
β Info: 2025-03-14 21:10:54 Autoreloading
|
978 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
979 |
+
β Info: 2025-03-14 21:11:40 Autoreloading
|
980 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
log/dev-2025-03-15.log
ADDED
@@ -0,0 +1,1182 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
β Info: 2025-03-15 08:13:59 Watching ["/home/swojcik/github/GenieOnHuggingFaceSpaces"]
|
2 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
3 |
+
β Info: 2025-03-15 08:14:01 Autoreloading
|
4 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
5 |
+
β Info: 2025-03-15 08:14:02
|
6 |
+
β Web Server starting at http://127.0.0.1:8000
|
7 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
8 |
+
β Info: 2025-03-15 08:14:02 Listening on: 127.0.0.1:8000, thread id: 1
|
9 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
10 |
+
β Info: 2025-03-15 08:14:19 Calling finalizers
|
11 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
12 |
+
β Info: 2025-03-15 08:16:14 Autoreloading
|
13 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
14 |
+
β Info: 2025-03-15 08:16:42 Autoreloading
|
15 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
16 |
+
β Info: 2025-03-15 08:17:08 Server on 127.0.0.1:8000 closing
|
17 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:409
|
18 |
+
β Info: 2025-03-15 08:17:12
|
19 |
+
β Web Server starting at http://127.0.0.1:8000
|
20 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
21 |
+
β Info: 2025-03-15 08:17:12 Listening on: 127.0.0.1:8000, thread id: 1
|
22 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
23 |
+
β Info: 2025-03-15 08:25:45 Autoreloading
|
24 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
25 |
+
β Info: 2025-03-15 08:27:34 Autoreloading
|
26 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
27 |
+
β Info: 2025-03-15 08:30:01 Autoreloading
|
28 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
29 |
+
β Info: 2025-03-15 08:58:36 Autoreloading
|
30 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
31 |
+
β Info: 2025-03-15 08:59:42 Server on 127.0.0.1:8000 closing
|
32 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:409
|
33 |
+
β Info: 2025-03-15 08:59:56
|
34 |
+
β Web Server starting at http://127.0.0.1:8000
|
35 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
36 |
+
β Info: 2025-03-15 08:59:56 Listening on: 127.0.0.1:8000, thread id: 1
|
37 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
38 |
+
β Info: 2025-03-15 09:00:38 Watching ["/home/swojcik/github/GenieOnHuggingFaceSpaces"]
|
39 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
40 |
+
β Info: 2025-03-15 09:00:39 Autoreloading
|
41 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
42 |
+
β Info: 2025-03-15 09:00:40
|
43 |
+
β Web Server starting at http://127.0.0.1:8000
|
44 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
45 |
+
β Info: 2025-03-15 09:00:40 Listening on: 127.0.0.1:8000, thread id: 1
|
46 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
47 |
+
β Info: 2025-03-15 09:06:19 Watching ["/home/swojcik/github/GenieOnHuggingFaceSpaces"]
|
48 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
49 |
+
β Info: 2025-03-15 09:06:20 Autoreloading
|
50 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
51 |
+
β Info: 2025-03-15 09:06:22
|
52 |
+
β Web Server starting at http://127.0.0.1:8000
|
53 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
54 |
+
β Info: 2025-03-15 09:06:22 Listening on: 127.0.0.1:8000, thread id: 1
|
55 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
56 |
+
β Info: 2025-03-15 09:11:06 Autoreloading
|
57 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
58 |
+
β Info: 2025-03-15 09:11:41 Server on 127.0.0.1:8000 closing
|
59 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:409
|
60 |
+
β Info: 2025-03-15 09:11:49
|
61 |
+
β Web Server starting at http://127.0.0.1:8000
|
62 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
63 |
+
β Info: 2025-03-15 09:11:49 Listening on: 127.0.0.1:8000, thread id: 1
|
64 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
65 |
+
β Info: 2025-03-15 09:12:08 Watching ["/home/swojcik/github/GenieOnHuggingFaceSpaces"]
|
66 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
67 |
+
β Info: 2025-03-15 09:12:10 Autoreloading
|
68 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
69 |
+
β Info: 2025-03-15 09:12:11
|
70 |
+
β Web Server starting at http://127.0.0.1:8000
|
71 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
72 |
+
β Info: 2025-03-15 09:12:11 Listening on: 127.0.0.1:8000, thread id: 1
|
73 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
74 |
+
β Info: 2025-03-15 09:30:07 Autoreloading
|
75 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
76 |
+
β Error: 2025-03-15 09:32:10 Failed to revise /home/swojcik/github/GenieOnHuggingFaceSpaces/lib/MyController.jl
|
77 |
+
β exception = Revise.ReviseEvalException("/home/swojcik/github/GenieOnHuggingFaceSpaces/lib/MyController.jl:33", UndefVarError(:OrderedDict), Any[(top-level scope at MyController.jl:33, 1)])
|
78 |
+
β @ Revise /home/swojcik/.julia/packages/Revise/tTIBp/src/packagedef.jl:776
|
79 |
+
β Warning: 2025-03-15 09:32:11 The running code does not match the saved version for the following files:
|
80 |
+
β
|
81 |
+
β /home/swojcik/github/GenieOnHuggingFaceSpaces/lib/MyController.jl
|
82 |
+
β
|
83 |
+
β If the error was due to evaluation order, it can sometimes be resolved by calling `Revise.retry()`.
|
84 |
+
β Use Revise.errors() to report errors again. Only the first error in each file is shown.
|
85 |
+
β Your prompt color may be yellow until the errors are resolved.
|
86 |
+
β @ Revise /home/swojcik/.julia/packages/Revise/tTIBp/src/packagedef.jl:893
|
87 |
+
β Info: 2025-03-15 09:32:11 Server on 127.0.0.1:8000 closing
|
88 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:409
|
89 |
+
β Info: 2025-03-15 09:32:33 Watching ["/home/swojcik/github/GenieOnHuggingFaceSpaces"]
|
90 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
91 |
+
β Info: 2025-03-15 09:32:35 Autoreloading
|
92 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
93 |
+
β Info: 2025-03-15 09:32:36
|
94 |
+
β Web Server starting at http://127.0.0.1:8000
|
95 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
96 |
+
β Info: 2025-03-15 09:32:36 Listening on: 127.0.0.1:8000, thread id: 1
|
97 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
98 |
+
β Info: 2025-03-15 09:34:18 Autoreloading
|
99 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
100 |
+
β Info: 2025-03-15 09:35:26 Autoreloading
|
101 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
102 |
+
β Info: 2025-03-15 09:38:14 Watching ["/home/swojcik/github/GenieOnHuggingFaceSpaces"]
|
103 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
104 |
+
β Info: 2025-03-15 09:38:15 Autoreloading
|
105 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
106 |
+
β Info: 2025-03-15 09:38:16
|
107 |
+
β Web Server starting at http://127.0.0.1:8000
|
108 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
109 |
+
β Info: 2025-03-15 09:38:16 Listening on: 127.0.0.1:8000, thread id: 1
|
110 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
111 |
+
β Error: 2025-03-15 09:45:37 Failed to revise /home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl
|
112 |
+
β exception = (Base.Meta.ParseError("ParseError:\n# Error @ /home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl:44:1\n\nend\nβββ ββ invalid identifier", Base.JuliaSyntax.ParseError(Base.JuliaSyntax.SourceFile("module App\nusing Main.MyController\nusing GenieFramework, PlotlyBase\nusing Genie.Renderer.Html\n\n@genietools\n\n@app begin\n #reactive code goes here\nend\n\nfunction ui()\n p(\"This is some text\") #initialized to an empty paragraph\nend\n\nfunction root_ui()\n p(\"Welcome to the root page!\")\nend\n\n@genietools\n\nfunction count_vowels(message)\n sum([c β ['a', 'e', 'i', 'o', 'u'] for c in lowercase(message)])\nend\n\n@app begin\n @in message = \"\"\n @out vowels = 0\n @onchange message begin\n vowels = count_vowels(message)\n end\nend\n\n\n\nend\n\n# Example route that uses gradient text\nroute(\"/gradient\") do\n message = \"this is a message\"\n gradient_message = MyController.generate_example(message)\nend\n\nend", 0, "/home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl", 1, [1, 12, 36, 69, 95, 96, 108, 109, 120, 149, 153, 154, 168, 230, 234, 235, 254, 289, 293, 294, 306, 307, 338, 409, 413, 414, 425, 446, 466, 494, 533, 541, 545, 546, 547, 548, 552, 553, 593, 615, 649, 710, 714, 715, 718]), Base.JuliaSyntax.Diagnostic[Base.JuliaSyntax.Diagnostic(715, 717, :error, "invalid identifier")], :none)), Union{Ptr{Nothing}, Base.InterpreterIP}[Ptr{Nothing} @0x0000727e60c58627, Ptr{Nothing} @0x0000727e60c46f8d, Ptr{Nothing} @0x0000727e60c64dd4, Ptr{Nothing} @0x0000727e60c648c4, Ptr{Nothing} @0x0000727e60c65623, Ptr{Nothing} @0x0000727e60c663fd, Base.InterpreterIP in top-level CodeInfo for Revise at statement 0])
|
113 |
+
β @ Revise /home/swojcik/.julia/packages/Revise/tTIBp/src/packagedef.jl:778
|
114 |
+
β Warning: 2025-03-15 09:45:38 The running code does not match the saved version for the following files:
|
115 |
+
β
|
116 |
+
β /home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl
|
117 |
+
β
|
118 |
+
β If the error was due to evaluation order, it can sometimes be resolved by calling `Revise.retry()`.
|
119 |
+
β Use Revise.errors() to report errors again. Only the first error in each file is shown.
|
120 |
+
β Your prompt color may be yellow until the errors are resolved.
|
121 |
+
β @ Revise /home/swojcik/.julia/packages/Revise/tTIBp/src/packagedef.jl:893
|
122 |
+
β Info: 2025-03-15 09:45:51 Server on 127.0.0.1:8000 closing
|
123 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:409
|
124 |
+
β Info: 2025-03-15 09:47:39 Watching ["/home/swojcik/github/GenieOnHuggingFaceSpaces"]
|
125 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
126 |
+
β Info: 2025-03-15 09:47:40 Autoreloading
|
127 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
128 |
+
β Info: 2025-03-15 09:47:41
|
129 |
+
β Web Server starting at http://127.0.0.1:8000
|
130 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
131 |
+
β Info: 2025-03-15 09:47:41 Listening on: 127.0.0.1:8000, thread id: 1
|
132 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
133 |
+
β Info: 2025-03-15 09:51:05 Calling finalizers
|
134 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
135 |
+
β Info: 2025-03-15 09:51:47 Autoreloading
|
136 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
137 |
+
β Info: 2025-03-15 09:51:47 Calling finalizers
|
138 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
139 |
+
β Info: 2025-03-15 09:54:15 Calling finalizers
|
140 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
141 |
+
β Info: 2025-03-15 09:54:28 Autoreloading
|
142 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
143 |
+
β Info: 2025-03-15 09:54:28 Calling finalizers
|
144 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
145 |
+
β Info: 2025-03-15 09:54:43 Watching ["/home/swojcik/github/GenieOnHuggingFaceSpaces"]
|
146 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
147 |
+
β Info: 2025-03-15 09:54:45 Autoreloading
|
148 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
149 |
+
β Info: 2025-03-15 09:54:46
|
150 |
+
β Web Server starting at http://127.0.0.1:8000
|
151 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
152 |
+
β Info: 2025-03-15 09:54:46 Listening on: 127.0.0.1:8000, thread id: 1
|
153 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
154 |
+
β Info: 2025-03-15 09:55:13 Calling finalizers
|
155 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
156 |
+
β Error: 2025-03-15 10:02:22 Failed to revise /home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl
|
157 |
+
β exception = Revise.ReviseEvalException("/home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl:29", UndefVarError(:formui), Any[(top-level scope at app.jl:29, 1)])
|
158 |
+
β @ Revise /home/swojcik/.julia/packages/Revise/tTIBp/src/packagedef.jl:776
|
159 |
+
β Warning: 2025-03-15 10:02:23 The running code does not match the saved version for the following files:
|
160 |
+
β
|
161 |
+
β /home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl
|
162 |
+
β
|
163 |
+
β If the error was due to evaluation order, it can sometimes be resolved by calling `Revise.retry()`.
|
164 |
+
β Use Revise.errors() to report errors again. Only the first error in each file is shown.
|
165 |
+
β Your prompt color may be yellow until the errors are resolved.
|
166 |
+
β @ Revise /home/swojcik/.julia/packages/Revise/tTIBp/src/packagedef.jl:893
|
167 |
+
β Error: 2025-03-15 10:03:26 Failed to revise /home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl
|
168 |
+
β exception = Revise.ReviseEvalException("/home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl:34", UndefVarError(:formui), Any[(top-level scope at app.jl:34, 1)])
|
169 |
+
β @ Revise /home/swojcik/.julia/packages/Revise/tTIBp/src/packagedef.jl:776
|
170 |
+
β Warning: 2025-03-15 10:03:39 App not yet defined, this is strongly discouraged, please define an app first
|
171 |
+
β @ Stipple.ReactiveTools /home/swojcik/.julia/packages/Stipple/UZmka/src/ReactiveTools.jl:1193
|
172 |
+
β Info: 2025-03-15 10:03:41 Watching ["/home/swojcik/github/GenieOnHuggingFaceSpaces"]
|
173 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
174 |
+
β Info: 2025-03-15 10:03:42 Autoreloading
|
175 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
176 |
+
β Info: 2025-03-15 10:03:43
|
177 |
+
β Web Server starting at http://127.0.0.1:8000
|
178 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
179 |
+
β Info: 2025-03-15 10:03:43 Listening on: 127.0.0.1:8000, thread id: 1
|
180 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
181 |
+
β Info: 2025-03-15 10:04:19 Calling finalizers
|
182 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
183 |
+
β Info: 2025-03-15 10:04:32 Autoreloading
|
184 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
185 |
+
β Info: 2025-03-15 10:04:39 Autoreloading
|
186 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
187 |
+
β Info: 2025-03-15 10:04:47 Server on 127.0.0.1:8000 closing
|
188 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:409
|
189 |
+
β Info: 2025-03-15 10:05:27 Autoreloading
|
190 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
191 |
+
β Info: 2025-03-15 10:05:56 Autoreloading
|
192 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
193 |
+
β Info: 2025-03-15 10:06:02
|
194 |
+
β Web Server starting at http://127.0.0.1:8000
|
195 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
196 |
+
β Info: 2025-03-15 10:06:02 Listening on: 127.0.0.1:8000, thread id: 1
|
197 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
198 |
+
β Error: 2025-03-15 10:06:15
|
199 |
+
β Error attempting to invoke handler.
|
200 |
+
β
|
201 |
+
β Handler:
|
202 |
+
β # 1 method for anonymous function "#49":
|
203 |
+
β [1] (::Main.App.var"#49#51")(...)
|
204 |
+
β @ ~/.julia/packages/Stipple/UZmka/src/ReactiveTools.jl:950
|
205 |
+
β Core.CodeInfo[CodeInfo(
|
206 |
+
β 1 β %1 = Core.getfield(#self#, :__model__)
|
207 |
+
β β %2 = Base.getproperty(%1, :N)
|
208 |
+
β β %3 = Base.getindex(%2)
|
209 |
+
β β %4 = Main.App.rand(%3)
|
210 |
+
β β %5 = Main.App.mean(%4)
|
211 |
+
β β %6 = Core.getfield(#self#, :__model__)
|
212 |
+
β β %7 = Base.getproperty(%6, :m)
|
213 |
+
β β Base.setindex!(%7, %5)
|
214 |
+
β βββ return %5
|
215 |
+
β )]
|
216 |
+
β
|
217 |
+
β Type of argument:
|
218 |
+
β Int64
|
219 |
+
β
|
220 |
+
β Value:
|
221 |
+
β 1000
|
222 |
+
β
|
223 |
+
β Exception:
|
224 |
+
β UndefVarError(:mean)
|
225 |
+
β
|
226 |
+
β exception = (UndefVarError(:mean), Union{Ptr{Nothing}, Base.InterpreterIP}[Ptr{Nothing} @0x00007a0ff26c9564, Ptr{Nothing} @0x00007a0ff2663c57, Ptr{Nothing} @0x00007a0fd41abe71, Ptr{Nothing} @0x00007a0fd41abf28, Ptr{Nothing} @0x00007a0ff2646f8d, Ptr{Nothing} @0x00007a0ff2657548, Ptr{Nothing} @0x00007a0fd41ab17e, Ptr{Nothing} @0x00007a0fd41abc09, Ptr{Nothing} @0x00007a0fd41abc53, Ptr{Nothing} @0x00007a0ff2646f8d, Ptr{Nothing} @0x00007a0fd41aaef1, Ptr{Nothing} @0x00007a0fd41aafc7, Ptr{Nothing} @0x00007a0ff2646f8d, Ptr{Nothing} @0x00007a0fd41a2443, Ptr{Nothing} @0x00007a0fd41a2702, Ptr{Nothing} @0x00007a0ff2646f8d, Ptr{Nothing} @0x00007a0fd414c454, Ptr{Nothing} @0x00007a0fd414c918, Ptr{Nothing} @0x00007a0fd414c9ca, Ptr{Nothing} @0x00007a0fd414ca09, Ptr{Nothing} @0x00007a0ff2646f8d, Ptr{Nothing} @0x00007a0fd41422fd, Ptr{Nothing} @0x00007a0fd4142352, Ptr{Nothing} @0x00007a0ff2646f8d, Ptr{Nothing} @0x00007a0ff2657548, Ptr{Nothing} @0x00007a0f9ab3054f, Ptr{Nothing} @0x00007a0f9ab71383, Ptr{Nothing} @0x00007a0f9aa8148e, Ptr{Nothing} @0x00007a0ff25c3dec, Ptr{Nothing} @0x00007a0ff25c3f45, Ptr{Nothing} @0x00007a0ff2646f8d, Ptr{Nothing} @0x00007a0ff2657548, Ptr{Nothing} @0x00007a0ff25be2ab, Ptr{Nothing} @0x00007a0ff25c0abf, Ptr{Nothing} @0x00007a0ff25c1112, Ptr{Nothing} @0x00007a0ff2646f8d, Ptr{Nothing} @0x00007a0ff266a30f])
|
227 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/stipple/mutators.jl:54
|
228 |
+
β Info: 2025-03-15 10:06:17 Calling finalizers
|
229 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
230 |
+
β Info: 2025-03-15 10:06:25 Calling finalizers
|
231 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
232 |
+
β Info: 2025-03-15 10:54:23 Autoreloading
|
233 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
234 |
+
β Info: 2025-03-15 10:54:23 Calling finalizers
|
235 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
236 |
+
β Info: 2025-03-15 10:57:37 Autoreloading
|
237 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
238 |
+
β Info: 2025-03-15 10:57:37 Calling finalizers
|
239 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
240 |
+
β Info: 2025-03-15 10:59:20 Autoreloading
|
241 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
242 |
+
β Info: 2025-03-15 10:59:20 Calling finalizers
|
243 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
244 |
+
β Warning: 2025-03-15 11:01:55 /home/swojcik/github/GenieOnHuggingFaceSpaces/lib/StatisticAnalysis.jl no longer exists, deleted all methods
|
245 |
+
β @ Revise /home/swojcik/.julia/packages/Revise/tTIBp/src/packagedef.jl:720
|
246 |
+
β Info: 2025-03-15 11:01:55 Autoreloading
|
247 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
248 |
+
β Info: 2025-03-15 11:01:55 Calling finalizers
|
249 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
250 |
+
β Info: 2025-03-15 11:02:03 Autoreloading
|
251 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
252 |
+
β Info: 2025-03-15 11:02:03 Calling finalizers
|
253 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
254 |
+
β Info: 2025-03-15 11:02:53 Autoreloading
|
255 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
256 |
+
β Info: 2025-03-15 11:02:53 Calling finalizers
|
257 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
258 |
+
β Info: 2025-03-15 11:02:56 Autoreloading
|
259 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
260 |
+
β Info: 2025-03-15 11:02:56 Calling finalizers
|
261 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
262 |
+
β Info: 2025-03-15 11:03:03 Autoreloading
|
263 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
264 |
+
β Info: 2025-03-15 11:03:03 Calling finalizers
|
265 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
266 |
+
β Info: 2025-03-15 11:04:55 Autoreloading
|
267 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
268 |
+
β Info: 2025-03-15 11:04:55 Calling finalizers
|
269 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
270 |
+
β Info: 2025-03-15 11:07:06 Autoreloading
|
271 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
272 |
+
β Info: 2025-03-15 11:07:06 Calling finalizers
|
273 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
274 |
+
β Info: 2025-03-15 11:56:21 Autoreloading
|
275 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
276 |
+
β Info: 2025-03-15 11:56:21 Calling finalizers
|
277 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
278 |
+
β Info: 2025-03-15 11:56:22 Autoreloading
|
279 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
280 |
+
β Info: 2025-03-15 11:57:00 Autoreloading
|
281 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
282 |
+
β Info: 2025-03-15 11:57:00 Autoreloading
|
283 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
284 |
+
β Info: 2025-03-15 11:57:00 Calling finalizers
|
285 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
286 |
+
β Info: 2025-03-15 11:57:16 Autoreloading
|
287 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
288 |
+
β Info: 2025-03-15 11:57:16 Autoreloading
|
289 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
290 |
+
β Info: 2025-03-15 11:57:16 Calling finalizers
|
291 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
292 |
+
β Info: 2025-03-15 12:21:16 Watching ["/home/swojcik/github/GenieOnHuggingFaceSpaces"]
|
293 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
294 |
+
β Info: 2025-03-15 12:21:17 Autoreloading
|
295 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
296 |
+
β Info: 2025-03-15 12:21:18
|
297 |
+
β Web Server starting at http://127.0.0.1:8000
|
298 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
299 |
+
β Info: 2025-03-15 12:21:19 Listening on: 127.0.0.1:8000, thread id: 1
|
300 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
301 |
+
β Info: 2025-03-15 12:22:41 Transcribing SW14tOda_kI
|
302 |
+
β @ Main.App /home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl:19
|
303 |
+
β Error: 2025-03-15 12:22:42
|
304 |
+
β Error attempting to invoke handler.
|
305 |
+
β
|
306 |
+
β Handler:
|
307 |
+
β # 1 method for anonymous function "#10":
|
308 |
+
β [1] (::Main.App.var"#10#13")(...)
|
309 |
+
β @ ~/.julia/packages/Stipple/UZmka/src/ReactiveTools.jl:950
|
310 |
+
β Core.CodeInfo[CodeInfo(
|
311 |
+
β 1 ββ Core.NewvarNode(:(msg))
|
312 |
+
β β Core.NewvarNode(:(kwargs))
|
313 |
+
β β Core.NewvarNode(:(line))
|
314 |
+
β β Core.NewvarNode(:(file))
|
315 |
+
β β Core.NewvarNode(:(id))
|
316 |
+
β β Core.NewvarNode(:(logger))
|
317 |
+
β β Core.NewvarNode(:(_module))
|
318 |
+
β β Core.NewvarNode(:(group))
|
319 |
+
β β level = Base.CoreLogging.Info
|
320 |
+
β β std_level = level
|
321 |
+
β β %11 = std_level
|
322 |
+
β β %12 = Base.getindex(Base.RefValue{Base.CoreLogging.LogLevel}(Debug))
|
323 |
+
β β %13 = %11 >= %12
|
324 |
+
β ββββ goto #17 if not %13
|
325 |
+
β 2 ββ group = :app
|
326 |
+
β β _module = Main.App
|
327 |
+
β β logger = (Base.CoreLogging.current_logger_for_env)(std_level, group, _module)
|
328 |
+
β β %18 = logger === Base.CoreLogging.nothing
|
329 |
+
β β %19 = !%18
|
330 |
+
β ββββ goto #17 if not %19
|
331 |
+
β 3 ββ id = :Main_App_b92f546e
|
332 |
+
β β %22 = Base.CoreLogging.invokelatest(Base.CoreLogging.shouldlog, logger, level, _module, group, id)
|
333 |
+
β ββββ goto #17 if not %22
|
334 |
+
β 4 ββ file = "/home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl"
|
335 |
+
β β %25 = file isa Base.CoreLogging.String
|
336 |
+
β ββββ goto #6 if not %25
|
337 |
+
β 5 ββ %27 = Base.fixup_stdlib_path
|
338 |
+
β ββββ file = (%27)(file)
|
339 |
+
β 6 ββ line = 19
|
340 |
+
β 7 ββ %30 = $(Expr(:enter, #10))
|
341 |
+
β 8 ββ %31 = Core.getfield(#self#, :__model__)
|
342 |
+
β β %32 = Base.getproperty(%31, :url)
|
343 |
+
β β %33 = Base.getindex(%32)
|
344 |
+
β β msg = Base.string("Transcribing ", %33)
|
345 |
+
β β kwargs = Core.NamedTuple()
|
346 |
+
β β @_14 = true
|
347 |
+
β ββββ $(Expr(:leave, 1))
|
348 |
+
β 9 ββ goto #12
|
349 |
+
β 10 β $(Expr(:leave, 1))
|
350 |
+
β 11 β err = $(Expr(:the_exception))
|
351 |
+
β β Base.invokelatest(Base.CoreLogging.logging_error, logger, level, _module, group, id, file, line, err, true)
|
352 |
+
β β @_14 = false
|
353 |
+
β ββββ $(Expr(:pop_exception, :(%30)))
|
354 |
+
β 12 β goto #17 if not @_14
|
355 |
+
β 13 β %45 = Base.NamedTuple()
|
356 |
+
β β %46 = Base.merge(%45, kwargs)
|
357 |
+
β β %47 = Base.isempty(%46)
|
358 |
+
β ββββ goto #15 if not %47
|
359 |
+
β 14 β Base.CoreLogging.invokelatest(Base.CoreLogging.handle_message, logger, level, msg, _module, group, id, file, line)
|
360 |
+
β ββββ goto #16
|
361 |
+
β 15 β Core.kwcall(%46, Base.CoreLogging.invokelatest, Base.CoreLogging.handle_message, logger, level, msg, _module, group, id, file, line)
|
362 |
+
β 16 β goto #17
|
363 |
+
β 17 β Base.CoreLogging.nothing
|
364 |
+
β β %54 = true
|
365 |
+
β β %55 = Core.getfield(#self#, :__model__)
|
366 |
+
β β %56 = Base.getproperty(%55, :transcribing)
|
367 |
+
β β Base.setindex!(%56, %54)
|
368 |
+
β β %58 = Base.getproperty(Main.App.MyController, :get_transcript_text_only)
|
369 |
+
β β %59 = Core.getfield(#self#, :__model__)
|
370 |
+
β β %60 = Base.getproperty(%59, :url)
|
371 |
+
β β %61 = Base.getindex(%60)
|
372 |
+
β β %62 = (%58)(%61)
|
373 |
+
β β %63 = Core.getfield(#self#, :__model__)
|
374 |
+
β β %64 = Base.getproperty(%63, :transcription)
|
375 |
+
β β Base.setindex!(%64, %62)
|
376 |
+
β β %66 = false
|
377 |
+
β β %67 = Core.getfield(#self#, :__model__)
|
378 |
+
β β %68 = Base.getproperty(%67, :transcribing)
|
379 |
+
β β Base.setindex!(%68, %66)
|
380 |
+
β ββββ return %66
|
381 |
+
β )]
|
382 |
+
β
|
383 |
+
β Type of argument:
|
384 |
+
β Bool
|
385 |
+
β
|
386 |
+
β Value:
|
387 |
+
β true
|
388 |
+
β
|
389 |
+
β Exception:
|
390 |
+
β UndefVarError(:get_transcript_text_only)
|
391 |
+
β
|
392 |
+
β exception = (UndefVarError(:get_transcript_text_only), Union{Ptr{Nothing}, Base.InterpreterIP}[Ptr{Nothing} @0x0000721b5b4c9564, Ptr{Nothing} @0x0000721b5b463c57, Ptr{Nothing} @0x0000721b12b15959, Ptr{Nothing} @0x0000721b12b16068, Ptr{Nothing} @0x0000721b5b446f8d, Ptr{Nothing} @0x0000721b5b457548, Ptr{Nothing} @0x0000721b12b00a0b, Ptr{Nothing} @0x0000721b12b01469, Ptr{Nothing} @0x0000721b12b014b5, Ptr{Nothing} @0x0000721b5b446f8d, Ptr{Nothing} @0x0000721b13008090, Ptr{Nothing} @0x0000721b1300815b, Ptr{Nothing} @0x0000721b5b446f8d, Ptr{Nothing} @0x0000721b130027e3, Ptr{Nothing} @0x0000721b13002aa2, Ptr{Nothing} @0x0000721b5b446f8d, Ptr{Nothing} @0x0000721b12ffcb34, Ptr{Nothing} @0x0000721b12ffcff8, Ptr{Nothing} @0x0000721b12ffd0aa, Ptr{Nothing} @0x0000721b12ffd0e9, Ptr{Nothing} @0x0000721b5b446f8d, Ptr{Nothing} @0x0000721b12ff29bd, Ptr{Nothing} @0x0000721b12ff2a12, Ptr{Nothing} @0x0000721b5b446f8d, Ptr{Nothing} @0x0000721b5b457548, Ptr{Nothing} @0x0000721b0393054f, Ptr{Nothing} @0x0000721b03971383, Ptr{Nothing} @0x0000721b12f4df3d, Ptr{Nothing} @0x0000721b12f51d3c, Ptr{Nothing} @0x0000721b12f51e95, Ptr{Nothing} @0x0000721b5b446f8d, Ptr{Nothing} @0x0000721b5b457548, Ptr{Nothing} @0x0000721b12f48ceb, Ptr{Nothing} @0x0000721b12f4b51f, Ptr{Nothing} @0x0000721b12f4bb72, Ptr{Nothing} @0x0000721b5b446f8d, Ptr{Nothing} @0x0000721b5b46a30f])
|
393 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/stipple/mutators.jl:54
|
394 |
+
β Info: 2025-03-15 12:24:10 Server on 127.0.0.1:8000 closing
|
395 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:409
|
396 |
+
β Info: 2025-03-15 12:25:53 Watching ["/home/swojcik/github/GenieOnHuggingFaceSpaces"]
|
397 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
398 |
+
β Info: 2025-03-15 12:25:55 Autoreloading
|
399 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
400 |
+
β Info: 2025-03-15 12:25:56
|
401 |
+
β Web Server starting at http://127.0.0.1:8000
|
402 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
403 |
+
β Info: 2025-03-15 12:25:56 Listening on: 127.0.0.1:8000, thread id: 1
|
404 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
405 |
+
β Info: 2025-03-15 12:26:39 Transcribing SW14tOda_kI
|
406 |
+
β @ Main.App /home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl:20
|
407 |
+
β Error: 2025-03-15 12:26:40
|
408 |
+
β Error attempting to invoke handler.
|
409 |
+
β
|
410 |
+
β Handler:
|
411 |
+
β # 1 method for anonymous function "#10":
|
412 |
+
β [1] (::Main.App.var"#10#13")(...)
|
413 |
+
β @ ~/.julia/packages/Stipple/UZmka/src/ReactiveTools.jl:950
|
414 |
+
β Core.CodeInfo[CodeInfo(
|
415 |
+
β 1 ββ Core.NewvarNode(:(msg))
|
416 |
+
β β Core.NewvarNode(:(kwargs))
|
417 |
+
β β Core.NewvarNode(:(line))
|
418 |
+
β β Core.NewvarNode(:(file))
|
419 |
+
β β Core.NewvarNode(:(id))
|
420 |
+
β β Core.NewvarNode(:(logger))
|
421 |
+
β β Core.NewvarNode(:(_module))
|
422 |
+
β β Core.NewvarNode(:(group))
|
423 |
+
β β level = Base.CoreLogging.Info
|
424 |
+
β β std_level = level
|
425 |
+
β β %11 = std_level
|
426 |
+
β β %12 = Base.getindex(Base.RefValue{Base.CoreLogging.LogLevel}(Debug))
|
427 |
+
β β %13 = %11 >= %12
|
428 |
+
β ββββ goto #17 if not %13
|
429 |
+
β 2 ββ group = :app
|
430 |
+
β β _module = Main.App
|
431 |
+
β β logger = (Base.CoreLogging.current_logger_for_env)(std_level, group, _module)
|
432 |
+
β β %18 = logger === Base.CoreLogging.nothing
|
433 |
+
β β %19 = !%18
|
434 |
+
β ββββ goto #17 if not %19
|
435 |
+
β 3 ββ id = :Main_App_b92f546e
|
436 |
+
β β %22 = Base.CoreLogging.invokelatest(Base.CoreLogging.shouldlog, logger, level, _module, group, id)
|
437 |
+
β ββββ goto #17 if not %22
|
438 |
+
β 4 ββ file = "/home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl"
|
439 |
+
β β %25 = file isa Base.CoreLogging.String
|
440 |
+
β ββββ goto #6 if not %25
|
441 |
+
β 5 ββ %27 = Base.fixup_stdlib_path
|
442 |
+
β ββββ file = (%27)(file)
|
443 |
+
β 6 ββ line = 20
|
444 |
+
β 7 ββ %30 = $(Expr(:enter, #10))
|
445 |
+
β 8 ββ %31 = Core.getfield(#self#, :__model__)
|
446 |
+
β β %32 = Base.getproperty(%31, :url)
|
447 |
+
β β %33 = Base.getindex(%32)
|
448 |
+
β β msg = Base.string("Transcribing ", %33)
|
449 |
+
β β kwargs = Core.NamedTuple()
|
450 |
+
β β @_14 = true
|
451 |
+
β ββββ $(Expr(:leave, 1))
|
452 |
+
β 9 ββ goto #12
|
453 |
+
β 10 β $(Expr(:leave, 1))
|
454 |
+
β 11 β err = $(Expr(:the_exception))
|
455 |
+
β β Base.invokelatest(Base.CoreLogging.logging_error, logger, level, _module, group, id, file, line, err, true)
|
456 |
+
β β @_14 = false
|
457 |
+
β ββββ $(Expr(:pop_exception, :(%30)))
|
458 |
+
β 12 β goto #17 if not @_14
|
459 |
+
β 13 β %45 = Base.NamedTuple()
|
460 |
+
β β %46 = Base.merge(%45, kwargs)
|
461 |
+
β β %47 = Base.isempty(%46)
|
462 |
+
β ββββ goto #15 if not %47
|
463 |
+
β 14 β Base.CoreLogging.invokelatest(Base.CoreLogging.handle_message, logger, level, msg, _module, group, id, file, line)
|
464 |
+
β ββββ goto #16
|
465 |
+
β 15 β Core.kwcall(%46, Base.CoreLogging.invokelatest, Base.CoreLogging.handle_message, logger, level, msg, _module, group, id, file, line)
|
466 |
+
β 16 β goto #17
|
467 |
+
β 17 β Base.CoreLogging.nothing
|
468 |
+
β β %54 = true
|
469 |
+
β β %55 = Core.getfield(#self#, :__model__)
|
470 |
+
β β %56 = Base.getproperty(%55, :transcribing)
|
471 |
+
β β Base.setindex!(%56, %54)
|
472 |
+
β β %58 = Base.getproperty(Main.App.Transcriber, :get_transcript_text_only)
|
473 |
+
β β %59 = Core.getfield(#self#, :__model__)
|
474 |
+
β β %60 = Base.getproperty(%59, :url)
|
475 |
+
β β %61 = Base.getindex(%60)
|
476 |
+
β β %62 = (%58)(%61)
|
477 |
+
β β %63 = Core.getfield(#self#, :__model__)
|
478 |
+
β β %64 = Base.getproperty(%63, :transcription)
|
479 |
+
β β Base.setindex!(%64, %62)
|
480 |
+
β β %66 = false
|
481 |
+
β β %67 = Core.getfield(#self#, :__model__)
|
482 |
+
β β %68 = Base.getproperty(%67, :transcribing)
|
483 |
+
β β Base.setindex!(%68, %66)
|
484 |
+
β ββββ return %66
|
485 |
+
β )]
|
486 |
+
β
|
487 |
+
β Type of argument:
|
488 |
+
β Bool
|
489 |
+
β
|
490 |
+
β Value:
|
491 |
+
β true
|
492 |
+
β
|
493 |
+
β Exception:
|
494 |
+
β PyError ($(Expr(:escape, :(ccall(#= /home/swojcik/.julia/packages/PyCall/1gn3u/src/pyeval.jl:38 =# @pysym(:PyEval_EvalCode), PyPtr, (PyPtr, PyPtr, PyPtr), o, globals, locals))))) <class 'NameError'>
|
495 |
+
β NameError("name 'get_transcript' is not defined")
|
496 |
+
β File "/home/swojcik/.julia/packages/PyCall/1gn3u/src/pyeval.jl", line 1, in <module>
|
497 |
+
β const Py_single_input = 256 # from Python.h
|
498 |
+
β
|
499 |
+
β
|
500 |
+
β exception = (PyError ($(Expr(:escape, :(ccall(#= /home/swojcik/.julia/packages/PyCall/1gn3u/src/pyeval.jl:38 =# @pysym(:PyEval_EvalCode), PyPtr, (PyPtr, PyPtr, PyPtr), o, globals, locals))))) <class 'NameError'>
|
501 |
+
NameError("name 'get_transcript' is not defined")
|
502 |
+
File "/home/swojcik/.julia/packages/PyCall/1gn3u/src/pyeval.jl", line 1, in <module>
|
503 |
+
const Py_single_input = 256 # from Python.h
|
504 |
+
, Union{Ptr{Nothing}, Base.InterpreterIP}[Ptr{Nothing} @0x00007d33dae4b8b2, Ptr{Nothing} @0x00007d33daea364b, Ptr{Nothing} @0x00007d340880d5fb, Ptr{Nothing} @0x00007d340880d6ed, Ptr{Nothing} @0x00007d340880da0e, Ptr{Nothing} @0x00007d340880e098, Ptr{Nothing} @0x00007d3451246f8d, Ptr{Nothing} @0x00007d3451257548, Ptr{Nothing} @0x00007d340880058b, Ptr{Nothing} @0x00007d3408800fe9, Ptr{Nothing} @0x00007d3408801035, Ptr{Nothing} @0x00007d3451246f8d, Ptr{Nothing} @0x00007d34089fed10, Ptr{Nothing} @0x00007d34089feddb, Ptr{Nothing} @0x00007d3451246f8d, Ptr{Nothing} @0x00007d34089f9463, Ptr{Nothing} @0x00007d34089f9722, Ptr{Nothing} @0x00007d3451246f8d, Ptr{Nothing} @0x00007d34089f37b4, Ptr{Nothing} @0x00007d34089f3c78, Ptr{Nothing} @0x00007d34089f3d2a, Ptr{Nothing} @0x00007d34089f3d69, Ptr{Nothing} @0x00007d3451246f8d, Ptr{Nothing} @0x00007d34089e963d, Ptr{Nothing} @0x00007d34089e9692, Ptr{Nothing} @0x00007d3451246f8d, Ptr{Nothing} @0x00007d3451257548, Ptr{Nothing} @0x00007d33f973054f, Ptr{Nothing} @0x00007d33f9771383, Ptr{Nothing} @0x00007d340894526b, Ptr{Nothing} @0x00007d340894903c, Ptr{Nothing} @0x00007d3408949195, Ptr{Nothing} @0x00007d3451246f8d, Ptr{Nothing} @0x00007d3451257548, Ptr{Nothing} @0x00007d3408940022, Ptr{Nothing} @0x00007d340894285f, Ptr{Nothing} @0x00007d3408942eb2, Ptr{Nothing} @0x00007d3451246f8d, Ptr{Nothing} @0x00007d345126a30f])
|
505 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/stipple/mutators.jl:54
|
506 |
+
β Info: 2025-03-15 12:30:40 Watching ["/home/swojcik/github/GenieOnHuggingFaceSpaces"]
|
507 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
508 |
+
β Info: 2025-03-15 12:30:42 Autoreloading
|
509 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
510 |
+
β Info: 2025-03-15 12:30:43
|
511 |
+
β Web Server starting at http://127.0.0.1:8000
|
512 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
513 |
+
β Info: 2025-03-15 12:30:43 Listening on: 127.0.0.1:8000, thread id: 1
|
514 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
515 |
+
β Info: 2025-03-15 12:31:31 Calling finalizers
|
516 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
517 |
+
β Info: 2025-03-15 12:32:23 Transcribing SW14tOda_kI
|
518 |
+
β @ Main.App /home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl:20
|
519 |
+
β Error: 2025-03-15 12:32:24
|
520 |
+
β Error attempting to invoke handler.
|
521 |
+
β
|
522 |
+
β Handler:
|
523 |
+
β # 1 method for anonymous function "#10":
|
524 |
+
β [1] (::Main.App.var"#10#13")(...)
|
525 |
+
β @ ~/.julia/packages/Stipple/UZmka/src/ReactiveTools.jl:950
|
526 |
+
β Core.CodeInfo[CodeInfo(
|
527 |
+
β 1 ββ Core.NewvarNode(:(msg))
|
528 |
+
β β Core.NewvarNode(:(kwargs))
|
529 |
+
β β Core.NewvarNode(:(line))
|
530 |
+
β β Core.NewvarNode(:(file))
|
531 |
+
β β Core.NewvarNode(:(id))
|
532 |
+
β β Core.NewvarNode(:(logger))
|
533 |
+
β β Core.NewvarNode(:(_module))
|
534 |
+
β β Core.NewvarNode(:(group))
|
535 |
+
β β level = Base.CoreLogging.Info
|
536 |
+
β β std_level = level
|
537 |
+
β β %11 = std_level
|
538 |
+
β β %12 = Base.getindex(Base.RefValue{Base.CoreLogging.LogLevel}(Debug))
|
539 |
+
β β %13 = %11 >= %12
|
540 |
+
β ββββ goto #17 if not %13
|
541 |
+
β 2 ββ group = :app
|
542 |
+
β β _module = Main.App
|
543 |
+
β β logger = (Base.CoreLogging.current_logger_for_env)(std_level, group, _module)
|
544 |
+
β β %18 = logger === Base.CoreLogging.nothing
|
545 |
+
β β %19 = !%18
|
546 |
+
β ββββ goto #17 if not %19
|
547 |
+
β 3 ββ id = :Main_App_b92f546e
|
548 |
+
β β %22 = Base.CoreLogging.invokelatest(Base.CoreLogging.shouldlog, logger, level, _module, group, id)
|
549 |
+
β ββββ goto #17 if not %22
|
550 |
+
β 4 ββ file = "/home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl"
|
551 |
+
β β %25 = file isa Base.CoreLogging.String
|
552 |
+
β ββββ goto #6 if not %25
|
553 |
+
β 5 ββ %27 = Base.fixup_stdlib_path
|
554 |
+
β ββββ file = (%27)(file)
|
555 |
+
β 6 ββ line = 20
|
556 |
+
β 7 ββ %30 = $(Expr(:enter, #10))
|
557 |
+
β 8 ββ %31 = Core.getfield(#self#, :__model__)
|
558 |
+
β β %32 = Base.getproperty(%31, :url)
|
559 |
+
β β %33 = Base.getindex(%32)
|
560 |
+
β β msg = Base.string("Transcribing ", %33)
|
561 |
+
β β kwargs = Core.NamedTuple()
|
562 |
+
β β @_14 = true
|
563 |
+
β ββββ $(Expr(:leave, 1))
|
564 |
+
β 9 ββ goto #12
|
565 |
+
β 10 β $(Expr(:leave, 1))
|
566 |
+
β 11 β err = $(Expr(:the_exception))
|
567 |
+
β β Base.invokelatest(Base.CoreLogging.logging_error, logger, level, _module, group, id, file, line, err, true)
|
568 |
+
β β @_14 = false
|
569 |
+
β ββββ $(Expr(:pop_exception, :(%30)))
|
570 |
+
β 12 β goto #17 if not @_14
|
571 |
+
β 13 β %45 = Base.NamedTuple()
|
572 |
+
β β %46 = Base.merge(%45, kwargs)
|
573 |
+
β β %47 = Base.isempty(%46)
|
574 |
+
β ββββ goto #15 if not %47
|
575 |
+
β 14 β Base.CoreLogging.invokelatest(Base.CoreLogging.handle_message, logger, level, msg, _module, group, id, file, line)
|
576 |
+
β ββββ goto #16
|
577 |
+
β 15 β Core.kwcall(%46, Base.CoreLogging.invokelatest, Base.CoreLogging.handle_message, logger, level, msg, _module, group, id, file, line)
|
578 |
+
β 16 β goto #17
|
579 |
+
β 17 β Base.CoreLogging.nothing
|
580 |
+
β β %54 = true
|
581 |
+
β β %55 = Core.getfield(#self#, :__model__)
|
582 |
+
β β %56 = Base.getproperty(%55, :transcribing)
|
583 |
+
β β Base.setindex!(%56, %54)
|
584 |
+
β β %58 = Base.getproperty(Main.App.Transcriber, :get_transcript_text_only)
|
585 |
+
β β %59 = Core.getfield(#self#, :__model__)
|
586 |
+
β β %60 = Base.getproperty(%59, :url)
|
587 |
+
β β %61 = Base.getindex(%60)
|
588 |
+
β β %62 = (%58)(%61)
|
589 |
+
β β %63 = Core.getfield(#self#, :__model__)
|
590 |
+
β β %64 = Base.getproperty(%63, :transcription)
|
591 |
+
β β Base.setindex!(%64, %62)
|
592 |
+
β β %66 = false
|
593 |
+
β β %67 = Core.getfield(#self#, :__model__)
|
594 |
+
β β %68 = Base.getproperty(%67, :transcribing)
|
595 |
+
β β Base.setindex!(%68, %66)
|
596 |
+
β ββββ return %66
|
597 |
+
β )]
|
598 |
+
β
|
599 |
+
β Type of argument:
|
600 |
+
β Bool
|
601 |
+
β
|
602 |
+
β Value:
|
603 |
+
β true
|
604 |
+
β
|
605 |
+
β Exception:
|
606 |
+
β PyError ($(Expr(:escape, :(ccall(#= /home/swojcik/.julia/packages/PyCall/1gn3u/src/pyeval.jl:38 =# @pysym(:PyEval_EvalCode), PyPtr, (PyPtr, PyPtr, PyPtr), o, globals, locals))))) <class 'NameError'>
|
607 |
+
β NameError("name 'get_transcript' is not defined")
|
608 |
+
β File "/home/swojcik/.julia/packages/PyCall/1gn3u/src/pyeval.jl", line 1, in <module>
|
609 |
+
β const Py_single_input = 256 # from Python.h
|
610 |
+
β
|
611 |
+
β
|
612 |
+
β exception = (PyError ($(Expr(:escape, :(ccall(#= /home/swojcik/.julia/packages/PyCall/1gn3u/src/pyeval.jl:38 =# @pysym(:PyEval_EvalCode), PyPtr, (PyPtr, PyPtr, PyPtr), o, globals, locals))))) <class 'NameError'>
|
613 |
+
NameError("name 'get_transcript' is not defined")
|
614 |
+
File "/home/swojcik/.julia/packages/PyCall/1gn3u/src/pyeval.jl", line 1, in <module>
|
615 |
+
const Py_single_input = 256 # from Python.h
|
616 |
+
, Union{Ptr{Nothing}, Base.InterpreterIP}[Ptr{Nothing} @0x00007606c0a4b8b2, Ptr{Nothing} @0x00007606c0aa364b, Ptr{Nothing} @0x00007606ee51d1cb, Ptr{Nothing} @0x00007606ee51d2bd, Ptr{Nothing} @0x00007606ee51d5de, Ptr{Nothing} @0x00007606ee51dc68, Ptr{Nothing} @0x0000760736e46f8d, Ptr{Nothing} @0x0000760736e57548, Ptr{Nothing} @0x00007606ee50064b, Ptr{Nothing} @0x00007606ee5010a9, Ptr{Nothing} @0x00007606ee5010f5, Ptr{Nothing} @0x0000760736e46f8d, Ptr{Nothing} @0x00007606eea07c40, Ptr{Nothing} @0x00007606eea07d0b, Ptr{Nothing} @0x0000760736e46f8d, Ptr{Nothing} @0x00007606eea02383, Ptr{Nothing} @0x00007606eea02642, Ptr{Nothing} @0x0000760736e46f8d, Ptr{Nothing} @0x00007606ee9fc6d4, Ptr{Nothing} @0x00007606ee9fcb98, Ptr{Nothing} @0x00007606ee9fcc4a, Ptr{Nothing} @0x00007606ee9fcc89, Ptr{Nothing} @0x0000760736e46f8d, Ptr{Nothing} @0x00007606ee9f255d, Ptr{Nothing} @0x00007606ee9f25b2, Ptr{Nothing} @0x0000760736e46f8d, Ptr{Nothing} @0x0000760736e57548, Ptr{Nothing} @0x00007606df33054f, Ptr{Nothing} @0x00007606df371383, Ptr{Nothing} @0x00007606ee94e2ab, Ptr{Nothing} @0x00007606ee95207c, Ptr{Nothing} @0x00007606ee9521d5, Ptr{Nothing} @0x0000760736e46f8d, Ptr{Nothing} @0x0000760736e57548, Ptr{Nothing} @0x00007606ee948ff9, Ptr{Nothing} @0x00007606ee94b89f, Ptr{Nothing} @0x00007606ee94bef2, Ptr{Nothing} @0x0000760736e46f8d, Ptr{Nothing} @0x0000760736e6a30f])
|
617 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/stipple/mutators.jl:54
|
618 |
+
β Info: 2025-03-15 12:46:22 Watching ["/home/swojcik/github/GenieOnHuggingFaceSpaces"]
|
619 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
620 |
+
β Info: 2025-03-15 12:46:23 Autoreloading
|
621 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
622 |
+
β Info: 2025-03-15 12:46:24
|
623 |
+
β Web Server starting at http://127.0.0.1:8000
|
624 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
625 |
+
β Info: 2025-03-15 12:46:25 Listening on: 127.0.0.1:8000, thread id: 1
|
626 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
627 |
+
β Info: 2025-03-15 12:46:50 Transcribing SW14tOda_kI
|
628 |
+
β @ Main.App /home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl:21
|
629 |
+
β Info: 2025-03-15 14:42:00 Autoreloading
|
630 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
631 |
+
β Info: 2025-03-15 14:42:00 Calling finalizers
|
632 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
633 |
+
β Info: 2025-03-15 14:50:01 Autoreloading
|
634 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
635 |
+
β Info: 2025-03-15 14:50:01 Calling finalizers
|
636 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
637 |
+
β Info: 2025-03-15 14:50:37 Autoreloading
|
638 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
639 |
+
β Info: 2025-03-15 14:50:37 Calling finalizers
|
640 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
641 |
+
β Info: 2025-03-15 14:51:10 Autoreloading
|
642 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
643 |
+
β Info: 2025-03-15 14:51:10 Calling finalizers
|
644 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
645 |
+
β Info: 2025-03-15 14:51:44 Server on 127.0.0.1:8000 closing
|
646 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:409
|
647 |
+
β Info: 2025-03-15 15:00:34 Watching ["/home/swojcik/github/GenieOnHuggingFaceSpaces"]
|
648 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
649 |
+
β Info: 2025-03-15 15:00:36 Autoreloading
|
650 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
651 |
+
β Info: 2025-03-15 15:00:37
|
652 |
+
β Web Server starting at http://127.0.0.1:8000
|
653 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
654 |
+
β Info: 2025-03-15 15:00:37 Listening on: 127.0.0.1:8000, thread id: 1
|
655 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
656 |
+
β Info: 2025-03-15 15:01:33 Transcribing SW14tOda_kI
|
657 |
+
β @ Main.App /home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl:21
|
658 |
+
β Info: 2025-03-15 15:07:06 Autoreloading
|
659 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
660 |
+
β Info: 2025-03-15 15:07:06 Calling finalizers
|
661 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
662 |
+
β Info: 2025-03-15 15:07:10 Server on 127.0.0.1:8000 closing
|
663 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:409
|
664 |
+
β Info: 2025-03-15 15:08:08 Watching ["/home/swojcik/github/GenieOnHuggingFaceSpaces"]
|
665 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
666 |
+
β Info: 2025-03-15 15:08:09 Autoreloading
|
667 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
668 |
+
β Info: 2025-03-15 15:08:11
|
669 |
+
β Web Server starting at http://127.0.0.1:8000
|
670 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
671 |
+
β Info: 2025-03-15 15:08:11 Listening on: 127.0.0.1:8000, thread id: 1
|
672 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
673 |
+
β Info: 2025-03-15 15:08:35 Transcribing SW14tOda_kI
|
674 |
+
β @ Main.App /home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl:21
|
675 |
+
β Info: 2025-03-15 15:11:01 Autoreloading
|
676 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
677 |
+
β Info: 2025-03-15 15:11:01 Calling finalizers
|
678 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
679 |
+
β Info: 2025-03-15 15:11:05 Calling finalizers
|
680 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
681 |
+
β Info: 2025-03-15 15:11:07 Calling finalizers
|
682 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
683 |
+
β Info: 2025-03-15 15:11:08 Calling finalizers
|
684 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
685 |
+
β Info: 2025-03-15 15:11:15 Transcribing SW14tOda_kI
|
686 |
+
β @ Main.App /home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl:21
|
687 |
+
β Error: 2025-03-15 15:11:17
|
688 |
+
β Error attempting to invoke handler.
|
689 |
+
β
|
690 |
+
β Handler:
|
691 |
+
β # 1 method for anonymous function "#97":
|
692 |
+
β [1] (::Main.App.var"#97#100")(...)
|
693 |
+
β @ ~/.julia/packages/Stipple/UZmka/src/ReactiveTools.jl:950
|
694 |
+
β Core.CodeInfo[CodeInfo(
|
695 |
+
β 1 ββ Core.NewvarNode(:(msg))
|
696 |
+
β β Core.NewvarNode(:(kwargs))
|
697 |
+
β β Core.NewvarNode(:(line))
|
698 |
+
β β Core.NewvarNode(:(file))
|
699 |
+
β β Core.NewvarNode(:(id))
|
700 |
+
β β Core.NewvarNode(:(logger))
|
701 |
+
β β Core.NewvarNode(:(_module))
|
702 |
+
β β Core.NewvarNode(:(group))
|
703 |
+
β β level = Base.CoreLogging.Info
|
704 |
+
β β std_level = level
|
705 |
+
β β %11 = std_level
|
706 |
+
β β %12 = Base.getindex(Base.RefValue{Base.CoreLogging.LogLevel}(Debug))
|
707 |
+
β β %13 = %11 >= %12
|
708 |
+
β ββββ goto #17 if not %13
|
709 |
+
β 2 ββ group = :app
|
710 |
+
β β _module = Main.App
|
711 |
+
β β logger = (Base.CoreLogging.current_logger_for_env)(std_level, group, _module)
|
712 |
+
β β %18 = logger === Base.CoreLogging.nothing
|
713 |
+
β β %19 = !%18
|
714 |
+
β ββββ goto #17 if not %19
|
715 |
+
β 3 ββ id = :Main_App_b92f5471
|
716 |
+
β β %22 = Base.CoreLogging.invokelatest(Base.CoreLogging.shouldlog, logger, level, _module, group, id)
|
717 |
+
β ββββ goto #17 if not %22
|
718 |
+
β 4 ββ file = "/home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl"
|
719 |
+
β β %25 = file isa Base.CoreLogging.String
|
720 |
+
β ββββ goto #6 if not %25
|
721 |
+
β 5 ββ %27 = Base.fixup_stdlib_path
|
722 |
+
β ββββ file = (%27)(file)
|
723 |
+
β 6 ββ line = 21
|
724 |
+
β 7 ββ %30 = $(Expr(:enter, #10))
|
725 |
+
β 8 ββ %31 = Core.getfield(#self#, :__model__)
|
726 |
+
β β %32 = Base.getproperty(%31, :url)
|
727 |
+
β β %33 = Base.getindex(%32)
|
728 |
+
β β msg = Base.string("Transcribing ", %33)
|
729 |
+
β β kwargs = Core.NamedTuple()
|
730 |
+
β β @_14 = true
|
731 |
+
β ββββ $(Expr(:leave, 1))
|
732 |
+
β 9 ββ goto #12
|
733 |
+
β 10 β $(Expr(:leave, 1))
|
734 |
+
β 11 β err = $(Expr(:the_exception))
|
735 |
+
β β Base.invokelatest(Base.CoreLogging.logging_error, logger, level, _module, group, id, file, line, err, true)
|
736 |
+
β β @_14 = false
|
737 |
+
β ββββ $(Expr(:pop_exception, :(%30)))
|
738 |
+
β 12 β goto #17 if not @_14
|
739 |
+
β 13 β %45 = Base.NamedTuple()
|
740 |
+
β β %46 = Base.merge(%45, kwargs)
|
741 |
+
β β %47 = Base.isempty(%46)
|
742 |
+
β ββββ goto #15 if not %47
|
743 |
+
β 14 β Base.CoreLogging.invokelatest(Base.CoreLogging.handle_message, logger, level, msg, _module, group, id, file, line)
|
744 |
+
β ββββ goto #16
|
745 |
+
β 15 β Core.kwcall(%46, Base.CoreLogging.invokelatest, Base.CoreLogging.handle_message, logger, level, msg, _module, group, id, file, line)
|
746 |
+
β 16 β goto #17
|
747 |
+
β 17 β Base.CoreLogging.nothing
|
748 |
+
β β %54 = true
|
749 |
+
β β %55 = Core.getfield(#self#, :__model__)
|
750 |
+
β β %56 = Base.getproperty(%55, :transcribing)
|
751 |
+
β β Base.setindex!(%56, %54)
|
752 |
+
β β %58 = Main.App.Transcriber.get_transcript_text_only
|
753 |
+
β β %59 = Core.getfield(#self#, :__model__)
|
754 |
+
β β %60 = Base.getproperty(%59, :url)
|
755 |
+
β β %61 = Base.getindex(%60)
|
756 |
+
β β %62 = (%58)(%61)
|
757 |
+
β β %63 = Core.getfield(#self#, :__model__)
|
758 |
+
β β %64 = Base.getproperty(%63, :transcription)
|
759 |
+
β β Base.setindex!(%64, %62)
|
760 |
+
οΏ½οΏ½ β %66 = Main.MyController.generate_example
|
761 |
+
β β %67 = Core.getfield(#self#, :__model__)
|
762 |
+
β β %68 = Base.getproperty(%67, :transcription)
|
763 |
+
β β %69 = Base.getindex(%68)
|
764 |
+
β β %70 = (%66)(%69)
|
765 |
+
β β %71 = Main.App.raw(%70)
|
766 |
+
β β %72 = Core.getfield(#self#, :__model__)
|
767 |
+
β β %73 = Base.getproperty(%72, :transcription)
|
768 |
+
β β Base.setindex!(%73, %71)
|
769 |
+
β β %75 = false
|
770 |
+
β β %76 = Core.getfield(#self#, :__model__)
|
771 |
+
β β %77 = Base.getproperty(%76, :transcribing)
|
772 |
+
β β Base.setindex!(%77, %75)
|
773 |
+
β ββββ return %75
|
774 |
+
β )]
|
775 |
+
β
|
776 |
+
β Type of argument:
|
777 |
+
β Bool
|
778 |
+
β
|
779 |
+
β Value:
|
780 |
+
β false
|
781 |
+
β
|
782 |
+
β Exception:
|
783 |
+
β UndefVarError(:raw)
|
784 |
+
β
|
785 |
+
β exception = (UndefVarError(:raw), Union{Ptr{Nothing}, Base.InterpreterIP}[Ptr{Nothing} @0x00007e52122c9564, Ptr{Nothing} @0x00007e5212263c57, Ptr{Nothing} @0x00007e51c8d45bf8, Ptr{Nothing} @0x00007e51c8d462e8, Ptr{Nothing} @0x00007e5212246f8d, Ptr{Nothing} @0x00007e5212257548, Ptr{Nothing} @0x00007e51c8d0171b, Ptr{Nothing} @0x00007e51c8d02179, Ptr{Nothing} @0x00007e51c8d021c5, Ptr{Nothing} @0x00007e5212246f8d, Ptr{Nothing} @0x00007e51c8d401f0, Ptr{Nothing} @0x00007e51c8d402bb, Ptr{Nothing} @0x00007e5212246f8d, Ptr{Nothing} @0x00007e51c8d3eb03, Ptr{Nothing} @0x00007e51c8d3edc2, Ptr{Nothing} @0x00007e5212246f8d, Ptr{Nothing} @0x00007e51c9157ca4, Ptr{Nothing} @0x00007e51c9158168, Ptr{Nothing} @0x00007e51c915821a, Ptr{Nothing} @0x00007e51c9158259, Ptr{Nothing} @0x00007e5212246f8d, Ptr{Nothing} @0x00007e51c914db1d, Ptr{Nothing} @0x00007e51c914db72, Ptr{Nothing} @0x00007e5212246f8d, Ptr{Nothing} @0x00007e5212257548, Ptr{Nothing} @0x00007e51ba6f580f, Ptr{Nothing} @0x00007e51ba770003, Ptr{Nothing} @0x00007e51c91499bd, Ptr{Nothing} @0x00007e51c914c8af, Ptr{Nothing} @0x00007e51c914ca05, Ptr{Nothing} @0x00007e5212246f8d, Ptr{Nothing} @0x00007e5212257548, Ptr{Nothing} @0x00007e51c9143869, Ptr{Nothing} @0x00007e51c914608f, Ptr{Nothing} @0x00007e51c91466e2, Ptr{Nothing} @0x00007e5212246f8d, Ptr{Nothing} @0x00007e521226a30f])
|
786 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/stipple/mutators.jl:54
|
787 |
+
β Info: 2025-03-15 15:11:50 Server on 127.0.0.1:8000 closing
|
788 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:409
|
789 |
+
β Info: 2025-03-15 15:13:00
|
790 |
+
β Web Server starting at http://127.0.0.1:8000
|
791 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
792 |
+
β Info: 2025-03-15 15:13:00 Listening on: 127.0.0.1:8000, thread id: 1
|
793 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
794 |
+
β Info: 2025-03-15 15:13:42 Calling finalizers
|
795 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
796 |
+
β Info: 2025-03-15 15:13:47 Transcribing SW14tOda_kI
|
797 |
+
β @ Main.App /home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl:21
|
798 |
+
β Error: 2025-03-15 15:13:48
|
799 |
+
β Error attempting to invoke handler.
|
800 |
+
β
|
801 |
+
β Handler:
|
802 |
+
β # 1 method for anonymous function "#97":
|
803 |
+
β [1] (::Main.App.var"#97#100")(...)
|
804 |
+
β @ ~/.julia/packages/Stipple/UZmka/src/ReactiveTools.jl:950
|
805 |
+
β Core.CodeInfo[CodeInfo(
|
806 |
+
β 1 ββ Core.NewvarNode(:(msg))
|
807 |
+
β β Core.NewvarNode(:(kwargs))
|
808 |
+
β β Core.NewvarNode(:(line))
|
809 |
+
β β Core.NewvarNode(:(file))
|
810 |
+
β β Core.NewvarNode(:(id))
|
811 |
+
β β Core.NewvarNode(:(logger))
|
812 |
+
β β Core.NewvarNode(:(_module))
|
813 |
+
β β Core.NewvarNode(:(group))
|
814 |
+
β β level = Base.CoreLogging.Info
|
815 |
+
β β std_level = level
|
816 |
+
β β %11 = std_level
|
817 |
+
β β %12 = Base.getindex(Base.RefValue{Base.CoreLogging.LogLevel}(Debug))
|
818 |
+
β β %13 = %11 >= %12
|
819 |
+
β ββββ goto #17 if not %13
|
820 |
+
β 2 ββ group = :app
|
821 |
+
β β _module = Main.App
|
822 |
+
β β logger = (Base.CoreLogging.current_logger_for_env)(std_level, group, _module)
|
823 |
+
β β %18 = logger === Base.CoreLogging.nothing
|
824 |
+
β β %19 = !%18
|
825 |
+
β ββββ goto #17 if not %19
|
826 |
+
β 3 ββ id = :Main_App_b92f5471
|
827 |
+
β β %22 = Base.CoreLogging.invokelatest(Base.CoreLogging.shouldlog, logger, level, _module, group, id)
|
828 |
+
β ββββ goto #17 if not %22
|
829 |
+
β 4 ββ file = "/home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl"
|
830 |
+
β β %25 = file isa Base.CoreLogging.String
|
831 |
+
β ββββ goto #6 if not %25
|
832 |
+
β 5 ββ %27 = Base.fixup_stdlib_path
|
833 |
+
β ββββ file = (%27)(file)
|
834 |
+
β 6 ββ line = 21
|
835 |
+
β 7 ββ %30 = $(Expr(:enter, #10))
|
836 |
+
β 8 ββ %31 = Core.getfield(#self#, :__model__)
|
837 |
+
β β %32 = Base.getproperty(%31, :url)
|
838 |
+
β β %33 = Base.getindex(%32)
|
839 |
+
β β msg = Base.string("Transcribing ", %33)
|
840 |
+
β β kwargs = Core.NamedTuple()
|
841 |
+
β β @_14 = true
|
842 |
+
β ββββ $(Expr(:leave, 1))
|
843 |
+
β 9 ββ goto #12
|
844 |
+
β 10 β $(Expr(:leave, 1))
|
845 |
+
β 11 β err = $(Expr(:the_exception))
|
846 |
+
β β Base.invokelatest(Base.CoreLogging.logging_error, logger, level, _module, group, id, file, line, err, true)
|
847 |
+
β β @_14 = false
|
848 |
+
β ββββ $(Expr(:pop_exception, :(%30)))
|
849 |
+
β 12 β goto #17 if not @_14
|
850 |
+
β 13 β %45 = Base.NamedTuple()
|
851 |
+
β β %46 = Base.merge(%45, kwargs)
|
852 |
+
β β %47 = Base.isempty(%46)
|
853 |
+
β ββββ goto #15 if not %47
|
854 |
+
β 14 β Base.CoreLogging.invokelatest(Base.CoreLogging.handle_message, logger, level, msg, _module, group, id, file, line)
|
855 |
+
β ββββ goto #16
|
856 |
+
β 15 β Core.kwcall(%46, Base.CoreLogging.invokelatest, Base.CoreLogging.handle_message, logger, level, msg, _module, group, id, file, line)
|
857 |
+
β 16 β goto #17
|
858 |
+
β 17 β Base.CoreLogging.nothing
|
859 |
+
β β %54 = true
|
860 |
+
β β %55 = Core.getfield(#self#, :__model__)
|
861 |
+
β β %56 = Base.getproperty(%55, :transcribing)
|
862 |
+
β β Base.setindex!(%56, %54)
|
863 |
+
β β %58 = Main.App.Transcriber.get_transcript_text_only
|
864 |
+
β β %59 = Core.getfield(#self#, :__model__)
|
865 |
+
β β %60 = Base.getproperty(%59, :url)
|
866 |
+
β β %61 = Base.getindex(%60)
|
867 |
+
β β %62 = (%58)(%61)
|
868 |
+
β β %63 = Core.getfield(#self#, :__model__)
|
869 |
+
β β %64 = Base.getproperty(%63, :transcription)
|
870 |
+
β β Base.setindex!(%64, %62)
|
871 |
+
β β %66 = Main.MyController.generate_example
|
872 |
+
β β %67 = Core.getfield(#self#, :__model__)
|
873 |
+
β β %68 = Base.getproperty(%67, :transcription)
|
874 |
+
β β %69 = Base.getindex(%68)
|
875 |
+
β β %70 = (%66)(%69)
|
876 |
+
β β %71 = Main.App.raw(%70)
|
877 |
+
β β %72 = Core.getfield(#self#, :__model__)
|
878 |
+
β β %73 = Base.getproperty(%72, :transcription)
|
879 |
+
β β Base.setindex!(%73, %71)
|
880 |
+
β β %75 = false
|
881 |
+
β β %76 = Core.getfield(#self#, :__model__)
|
882 |
+
β β %77 = Base.getproperty(%76, :transcribing)
|
883 |
+
β β Base.setindex!(%77, %75)
|
884 |
+
β ββββ return %75
|
885 |
+
β )]
|
886 |
+
β
|
887 |
+
β Type of argument:
|
888 |
+
β Bool
|
889 |
+
β
|
890 |
+
β Value:
|
891 |
+
β true
|
892 |
+
β
|
893 |
+
β Exception:
|
894 |
+
β UndefVarError(:raw)
|
895 |
+
β
|
896 |
+
β exception = (UndefVarError(:raw), Union{Ptr{Nothing}, Base.InterpreterIP}[Ptr{Nothing} @0x00007e52122c9564, Ptr{Nothing} @0x00007e5212263c57, Ptr{Nothing} @0x00007e51c8d45bf8, Ptr{Nothing} @0x00007e51c8d462e8, Ptr{Nothing} @0x00007e5212246f8d, Ptr{Nothing} @0x00007e5212257548, Ptr{Nothing} @0x00007e51c8d0171b, Ptr{Nothing} @0x00007e51c8d02179, Ptr{Nothing} @0x00007e51c8d021c5, Ptr{Nothing} @0x00007e5212246f8d, Ptr{Nothing} @0x00007e51c8d401f0, Ptr{Nothing} @0x00007e51c8d402bb, Ptr{Nothing} @0x00007e5212246f8d, Ptr{Nothing} @0x00007e51c8d3eb03, Ptr{Nothing} @0x00007e51c8d3edc2, Ptr{Nothing} @0x00007e5212246f8d, Ptr{Nothing} @0x00007e51c9157ca4, Ptr{Nothing} @0x00007e51c9158168, Ptr{Nothing} @0x00007e51c915821a, Ptr{Nothing} @0x00007e51c9158259, Ptr{Nothing} @0x00007e5212246f8d, Ptr{Nothing} @0x00007e51c914db1d, Ptr{Nothing} @0x00007e51c914db72, Ptr{Nothing} @0x00007e5212246f8d, Ptr{Nothing} @0x00007e5212257548, Ptr{Nothing} @0x00007e51ba6f580f, Ptr{Nothing} @0x00007e51ba770003, Ptr{Nothing} @0x00007e51c91499bd, Ptr{Nothing} @0x00007e51c914c8af, Ptr{Nothing} @0x00007e51c914ca05, Ptr{Nothing} @0x00007e5212246f8d, Ptr{Nothing} @0x00007e5212257548, Ptr{Nothing} @0x00007e51c9143869, Ptr{Nothing} @0x00007e51c914608f, Ptr{Nothing} @0x00007e51c91466e2, Ptr{Nothing} @0x00007e5212246f8d, Ptr{Nothing} @0x00007e521226a30f])
|
897 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/stipple/mutators.jl:54
|
898 |
+
β Info: 2025-03-15 15:14:18 Calling finalizers
|
899 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
900 |
+
β Info: 2025-03-15 15:14:26 Server on 127.0.0.1:8000 closing
|
901 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:409
|
902 |
+
β Info: 2025-03-15 15:14:50 Watching ["/home/swojcik/github/GenieOnHuggingFaceSpaces"]
|
903 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
904 |
+
β Info: 2025-03-15 15:14:51 Autoreloading
|
905 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
906 |
+
β Info: 2025-03-15 15:14:53
|
907 |
+
β Web Server starting at http://127.0.0.1:8000
|
908 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
909 |
+
β Info: 2025-03-15 15:14:53 Listening on: 127.0.0.1:8000, thread id: 1
|
910 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
911 |
+
β Info: 2025-03-15 15:15:28 Transcribing jvrEfZUajTE
|
912 |
+
β @ Main.App /home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl:21
|
913 |
+
β Error: 2025-03-15 15:15:30
|
914 |
+
β Error attempting to invoke handler.
|
915 |
+
β
|
916 |
+
β Handler:
|
917 |
+
β # 1 method for anonymous function "#10":
|
918 |
+
β [1] (::Main.App.var"#10#13")(...)
|
919 |
+
β @ ~/.julia/packages/Stipple/UZmka/src/ReactiveTools.jl:950
|
920 |
+
β Core.CodeInfo[CodeInfo(
|
921 |
+
β 1 ββ Core.NewvarNode(:(msg))
|
922 |
+
β β Core.NewvarNode(:(kwargs))
|
923 |
+
β β Core.NewvarNode(:(line))
|
924 |
+
β β Core.NewvarNode(:(file))
|
925 |
+
β β Core.NewvarNode(:(id))
|
926 |
+
β β Core.NewvarNode(:(logger))
|
927 |
+
β β Core.NewvarNode(:(_module))
|
928 |
+
β β Core.NewvarNode(:(group))
|
929 |
+
β β level = Base.CoreLogging.Info
|
930 |
+
β β std_level = level
|
931 |
+
β β %11 = std_level
|
932 |
+
β β %12 = Base.getindex(Base.RefValue{Base.CoreLogging.LogLevel}(Debug))
|
933 |
+
β β %13 = %11 >= %12
|
934 |
+
β ββββ goto #17 if not %13
|
935 |
+
β 2 ββ group = :app
|
936 |
+
β β _module = Main.App
|
937 |
+
β β logger = (Base.CoreLogging.current_logger_for_env)(std_level, group, _module)
|
938 |
+
β β %18 = logger === Base.CoreLogging.nothing
|
939 |
+
β β %19 = !%18
|
940 |
+
β ββββ goto #17 if not %19
|
941 |
+
β 3 ββ id = :Main_App_b92f546e
|
942 |
+
β β %22 = Base.CoreLogging.invokelatest(Base.CoreLogging.shouldlog, logger, level, _module, group, id)
|
943 |
+
β ββββ goto #17 if not %22
|
944 |
+
β 4 ββ file = "/home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl"
|
945 |
+
β β %25 = file isa Base.CoreLogging.String
|
946 |
+
β ββββ goto #6 if not %25
|
947 |
+
β 5 ββ %27 = Base.fixup_stdlib_path
|
948 |
+
β ββββ file = (%27)(file)
|
949 |
+
β 6 ββ line = 21
|
950 |
+
β 7 ββ %30 = $(Expr(:enter, #10))
|
951 |
+
β 8 ββ %31 = Core.getfield(#self#, :__model__)
|
952 |
+
β β %32 = Base.getproperty(%31, :url)
|
953 |
+
β β %33 = Base.getindex(%32)
|
954 |
+
β β msg = Base.string("Transcribing ", %33)
|
955 |
+
β β kwargs = Core.NamedTuple()
|
956 |
+
β β @_14 = true
|
957 |
+
β ββββ $(Expr(:leave, 1))
|
958 |
+
β 9 ββ goto #12
|
959 |
+
β 10 β $(Expr(:leave, 1))
|
960 |
+
β 11 β err = $(Expr(:the_exception))
|
961 |
+
β β Base.invokelatest(Base.CoreLogging.logging_error, logger, level, _module, group, id, file, line, err, true)
|
962 |
+
β β @_14 = false
|
963 |
+
β ββββ $(Expr(:pop_exception, :(%30)))
|
964 |
+
β 12 β goto #17 if not @_14
|
965 |
+
β 13 β %45 = Base.NamedTuple()
|
966 |
+
β β %46 = Base.merge(%45, kwargs)
|
967 |
+
β β %47 = Base.isempty(%46)
|
968 |
+
β ββββ goto #15 if not %47
|
969 |
+
β 14 β Base.CoreLogging.invokelatest(Base.CoreLogging.handle_message, logger, level, msg, _module, group, id, file, line)
|
970 |
+
β ββββ goto #16
|
971 |
+
β 15 β Core.kwcall(%46, Base.CoreLogging.invokelatest, Base.CoreLogging.handle_message, logger, level, msg, _module, group, id, file, line)
|
972 |
+
β 16 β goto #17
|
973 |
+
β 17 β Base.CoreLogging.nothing
|
974 |
+
β β %54 = true
|
975 |
+
β β %55 = Core.getfield(#self#, :__model__)
|
976 |
+
β β %56 = Base.getproperty(%55, :transcribing)
|
977 |
+
β β Base.setindex!(%56, %54)
|
978 |
+
β β %58 = Main.App.Transcriber.get_transcript_text_only
|
979 |
+
β β %59 = Core.getfield(#self#, :__model__)
|
980 |
+
β β %60 = Base.getproperty(%59, :url)
|
981 |
+
β β %61 = Base.getindex(%60)
|
982 |
+
β β %62 = (%58)(%61)
|
983 |
+
β β %63 = Core.getfield(#self#, :__model__)
|
984 |
+
β β %64 = Base.getproperty(%63, :transcription)
|
985 |
+
β β Base.setindex!(%64, %62)
|
986 |
+
β β %66 = Base.getproperty(Main.App.MyController, :generate_example)
|
987 |
+
β β %67 = Core.getfield(#self#, :__model__)
|
988 |
+
β β %68 = Base.getproperty(%67, :transcription)
|
989 |
+
β β %69 = Base.getindex(%68)
|
990 |
+
β β %70 = (%66)(%69)
|
991 |
+
β β %71 = Main.App.raw(%70)
|
992 |
+
β β %72 = Core.getfield(#self#, :__model__)
|
993 |
+
β β %73 = Base.getproperty(%72, :transcription)
|
994 |
+
β β Base.setindex!(%73, %71)
|
995 |
+
β β %75 = false
|
996 |
+
β β %76 = Core.getfield(#self#, :__model__)
|
997 |
+
β β %77 = Base.getproperty(%76, :transcribing)
|
998 |
+
β β Base.setindex!(%77, %75)
|
999 |
+
β ββββ return %75
|
1000 |
+
β )]
|
1001 |
+
β
|
1002 |
+
β Type of argument:
|
1003 |
+
β Bool
|
1004 |
+
β
|
1005 |
+
β Value:
|
1006 |
+
β true
|
1007 |
+
β
|
1008 |
+
β Exception:
|
1009 |
+
β UndefVarError(:raw)
|
1010 |
+
β
|
1011 |
+
β exception = (UndefVarError(:raw), Union{Ptr{Nothing}, Base.InterpreterIP}[Ptr{Nothing} @0x00007c70920c9564, Ptr{Nothing} @0x00007c7092063c57, Ptr{Nothing} @0x00007c7048b16708, Ptr{Nothing} @0x00007c7048b16df8, Ptr{Nothing} @0x00007c7092046f8d, Ptr{Nothing} @0x00007c7092057548, Ptr{Nothing} @0x00007c7048b014fb, Ptr{Nothing} @0x00007c7048b01f59, Ptr{Nothing} @0x00007c7048b01fa5, Ptr{Nothing} @0x00007c7092046f8d, Ptr{Nothing} @0x00007c7049008c50, Ptr{Nothing} @0x00007c7049008d1b, Ptr{Nothing} @0x00007c7092046f8d, Ptr{Nothing} @0x00007c7049003493, Ptr{Nothing} @0x00007c7049003752, Ptr{Nothing} @0x00007c7092046f8d, Ptr{Nothing} @0x00007c7048f5d8d4, Ptr{Nothing} @0x00007c7048f5dd98, Ptr{Nothing} @0x00007c7048f5de4a, Ptr{Nothing} @0x00007c7048f5de89, Ptr{Nothing} @0x00007c7092046f8d, Ptr{Nothing} @0x00007c7048f5374d, Ptr{Nothing} @0x00007c7048f537a2, Ptr{Nothing} @0x00007c7092046f8d, Ptr{Nothing} @0x00007c7092057548, Ptr{Nothing} @0x00007c703a4f580f, Ptr{Nothing} @0x00007c703a570003, Ptr{Nothing} @0x00007c7048f4e6dd, Ptr{Nothing} @0x00007c7048f524df, Ptr{Nothing} @0x00007c7048f52635, Ptr{Nothing} @0x00007c7092046f8d, Ptr{Nothing} @0x00007c7092057548, Ptr{Nothing} @0x00007c7048f49499, Ptr{Nothing} @0x00007c7048f4bcbf, Ptr{Nothing} @0x00007c7048f4c312, Ptr{Nothing} @0x00007c7092046f8d, Ptr{Nothing} @0x00007c709206a30f])
|
1012 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/stipple/mutators.jl:54
|
1013 |
+
β Info: 2025-03-15 15:16:22 Autoreloading
|
1014 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
1015 |
+
β Info: 2025-03-15 15:16:22 Calling finalizers
|
1016 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
1017 |
+
β Info: 2025-03-15 15:16:33 Server on 127.0.0.1:8000 closing
|
1018 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:409
|
1019 |
+
β Info: 2025-03-15 15:16:37
|
1020 |
+
β Web Server starting at http://127.0.0.1:8000
|
1021 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
1022 |
+
β Info: 2025-03-15 15:16:37 Listening on: 127.0.0.1:8000, thread id: 1
|
1023 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
1024 |
+
β Info: 2025-03-15 15:16:52 Calling finalizers
|
1025 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
1026 |
+
β Info: 2025-03-15 15:16:57 Calling finalizers
|
1027 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
1028 |
+
β Info: 2025-03-15 15:17:06 Server on 127.0.0.1:8000 closing
|
1029 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:409
|
1030 |
+
β Info: 2025-03-15 15:17:30 Watching ["/home/swojcik/github/GenieOnHuggingFaceSpaces"]
|
1031 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
1032 |
+
β Info: 2025-03-15 15:17:32 Autoreloading
|
1033 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
1034 |
+
β Info: 2025-03-15 15:17:33
|
1035 |
+
β Web Server starting at http://127.0.0.1:8000
|
1036 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
1037 |
+
β Info: 2025-03-15 15:17:33 Listening on: 127.0.0.1:8000, thread id: 1
|
1038 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
1039 |
+
β Info: 2025-03-15 15:18:11 Transcribing jvrEfZUajTE
|
1040 |
+
β @ Main.App /home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl:21
|
1041 |
+
β Info: 2025-03-15 15:28:54 Autoreloading
|
1042 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
1043 |
+
β Info: 2025-03-15 15:28:54 Calling finalizers
|
1044 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
1045 |
+
β Info: 2025-03-15 15:29:57 Server on 127.0.0.1:8000 closing
|
1046 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:409
|
1047 |
+
β Info: 2025-03-15 15:30:14 Autoreloading
|
1048 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
1049 |
+
β Info: 2025-03-15 15:30:34
|
1050 |
+
β Web Server starting at http://127.0.0.1:8000
|
1051 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
1052 |
+
β Info: 2025-03-15 15:30:34 Listening on: 127.0.0.1:8000, thread id: 1
|
1053 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
1054 |
+
β Info: 2025-03-15 15:30:54 Transcribing jvrEfZUajTE
|
1055 |
+
β @ Main.App /home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl:21
|
1056 |
+
β Error: 2025-03-15 15:30:56
|
1057 |
+
β Error attempting to invoke handler.
|
1058 |
+
β
|
1059 |
+
β Handler:
|
1060 |
+
β # 1 method for anonymous function "#114":
|
1061 |
+
β [1] (::Main.App.var"#114#117")(...)
|
1062 |
+
β @ ~/.julia/packages/Stipple/UZmka/src/ReactiveTools.jl:950
|
1063 |
+
β Core.CodeInfo[CodeInfo(
|
1064 |
+
β 1 ββ Core.NewvarNode(:(msg))
|
1065 |
+
β β Core.NewvarNode(:(kwargs))
|
1066 |
+
β β Core.NewvarNode(:(line))
|
1067 |
+
β β Core.NewvarNode(:(file))
|
1068 |
+
β β Core.NewvarNode(:(id))
|
1069 |
+
β β Core.NewvarNode(:(logger))
|
1070 |
+
β β Core.NewvarNode(:(_module))
|
1071 |
+
β β Core.NewvarNode(:(group))
|
1072 |
+
β β level = Base.CoreLogging.Info
|
1073 |
+
β β std_level = level
|
1074 |
+
β β %11 = std_level
|
1075 |
+
β β %12 = Base.getindex(Base.RefValue{Base.CoreLogging.LogLevel}(Debug))
|
1076 |
+
β β %13 = %11 >= %12
|
1077 |
+
β ββββ goto #17 if not %13
|
1078 |
+
β 2 ββ group = :app
|
1079 |
+
β β _module = Main.App
|
1080 |
+
β β logger = (Base.CoreLogging.current_logger_for_env)(std_level, group, _module)
|
1081 |
+
β β %18 = logger === Base.CoreLogging.nothing
|
1082 |
+
β β %19 = !%18
|
1083 |
+
β ββββ goto #17 if not %19
|
1084 |
+
β 3 ββ id = :Main_App_b92f5471
|
1085 |
+
β β %22 = Base.CoreLogging.invokelatest(Base.CoreLogging.shouldlog, logger, level, _module, group, id)
|
1086 |
+
β ββββ goto #17 if not %22
|
1087 |
+
β 4 ββ file = "/home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl"
|
1088 |
+
β β %25 = file isa Base.CoreLogging.String
|
1089 |
+
β ββββ goto #6 if not %25
|
1090 |
+
β 5 ββ %27 = Base.fixup_stdlib_path
|
1091 |
+
β ββββ file = (%27)(file)
|
1092 |
+
β 6 ββ line = 21
|
1093 |
+
β 7 ββ %30 = $(Expr(:enter, #10))
|
1094 |
+
β 8 ββ %31 = Core.getfield(#self#, :__model__)
|
1095 |
+
β β %32 = Base.getproperty(%31, :url)
|
1096 |
+
β β %33 = Base.getindex(%32)
|
1097 |
+
β β msg = Base.string("Transcribing ", %33)
|
1098 |
+
β β kwargs = Core.NamedTuple()
|
1099 |
+
β β @_14 = true
|
1100 |
+
β ββββ $(Expr(:leave, 1))
|
1101 |
+
β 9 ββ goto #12
|
1102 |
+
β 10 β $(Expr(:leave, 1))
|
1103 |
+
β 11 β err = $(Expr(:the_exception))
|
1104 |
+
β β Base.invokelatest(Base.CoreLogging.logging_error, logger, level, _module, group, id, file, line, err, true)
|
1105 |
+
β β @_14 = false
|
1106 |
+
β ββββ $(Expr(:pop_exception, :(%30)))
|
1107 |
+
β 12 β goto #17 if not @_14
|
1108 |
+
β 13 β %45 = Base.NamedTuple()
|
1109 |
+
β β %46 = Base.merge(%45, kwargs)
|
1110 |
+
β β %47 = Base.isempty(%46)
|
1111 |
+
β ββββ goto #15 if not %47
|
1112 |
+
β 14 β Base.CoreLogging.invokelatest(Base.CoreLogging.handle_message, logger, level, msg, _module, group, id, file, line)
|
1113 |
+
β ββββ goto #16
|
1114 |
+
β 15 β Core.kwcall(%46, Base.CoreLogging.invokelatest, Base.CoreLogging.handle_message, logger, level, msg, _module, group, id, file, line)
|
1115 |
+
β 16 β goto #17
|
1116 |
+
β 17 β Base.CoreLogging.nothing
|
1117 |
+
β β %54 = true
|
1118 |
+
β β %55 = Core.getfield(#self#, :__model__)
|
1119 |
+
β β %56 = Base.getproperty(%55, :transcribing)
|
1120 |
+
β β Base.setindex!(%56, %54)
|
1121 |
+
β β %58 = Main.App.Transcriber.get_transcript_text_only
|
1122 |
+
β β %59 = Core.getfield(#self#, :__model__)
|
1123 |
+
β β %60 = Base.getproperty(%59, :url)
|
1124 |
+
β β %61 = Base.getindex(%60)
|
1125 |
+
β β %62 = (%58)(%61)
|
1126 |
+
β β %63 = Core.getfield(#self#, :__model__)
|
1127 |
+
β β %64 = Base.getproperty(%63, :transcription)
|
1128 |
+
β β Base.setindex!(%64, %62)
|
1129 |
+
β β %66 = Base.getproperty(Main.App.MyController, :generate_example)
|
1130 |
+
β β %67 = Core.getfield(#self#, :__model__)
|
1131 |
+
β β %68 = Base.getproperty(%67, :transcription)
|
1132 |
+
β β %69 = Base.getindex(%68)
|
1133 |
+
β β %70 = (%66)(%69)
|
1134 |
+
β β %71 = Main.App.raw(%70)
|
1135 |
+
β β %72 = Core.getfield(#self#, :__model__)
|
1136 |
+
β β %73 = Base.getproperty(%72, :transcription)
|
1137 |
+
β β Base.setindex!(%73, %71)
|
1138 |
+
β β %75 = false
|
1139 |
+
β β %76 = Core.getfield(#self#, :__model__)
|
1140 |
+
β β %77 = Base.getproperty(%76, :transcribing)
|
1141 |
+
β β Base.setindex!(%77, %75)
|
1142 |
+
β ββββ return %75
|
1143 |
+
β )]
|
1144 |
+
β
|
1145 |
+
β Type of argument:
|
1146 |
+
β Bool
|
1147 |
+
β
|
1148 |
+
β Value:
|
1149 |
+
β false
|
1150 |
+
β
|
1151 |
+
β Exception:
|
1152 |
+
β UndefVarError(:raw)
|
1153 |
+
β
|
1154 |
+
β exception = (UndefVarError(:raw), Union{Ptr{Nothing}, Base.InterpreterIP}[Ptr{Nothing} @0x000072a24b2c9564, Ptr{Nothing} @0x000072a24b263c57, Ptr{Nothing} @0x000072a201c939d8, Ptr{Nothing} @0x000072a201c940c8, Ptr{Nothing} @0x000072a24b246f8d, Ptr{Nothing} @0x000072a24b257548, Ptr{Nothing} @0x000072a201c00cab, Ptr{Nothing} @0x000072a201c01709, Ptr{Nothing} @0x000072a201c01755, Ptr{Nothing} @0x000072a24b246f8d, Ptr{Nothing} @0x000072a201c89090, Ptr{Nothing} @0x000072a201c8915b, Ptr{Nothing} @0x000072a24b246f8d, Ptr{Nothing} @0x000072a201c879a3, Ptr{Nothing} @0x000072a201c87c62, Ptr{Nothing} @0x000072a24b246f8d, Ptr{Nothing} @0x000072a201d549a4, Ptr{Nothing} @0x000072a201d54e68, Ptr{Nothing} @0x000072a201d54f1a, Ptr{Nothing} @0x000072a201d54f59, Ptr{Nothing} @0x000072a24b246f8d, Ptr{Nothing} @0x000072a201d4a81d, Ptr{Nothing} @0x000072a201d4a872, Ptr{Nothing} @0x000072a24b246f8d, Ptr{Nothing} @0x000072a24b257548, Ptr{Nothing} @0x000072a1f36f580f, Ptr{Nothing} @0x000072a1f3770003, Ptr{Nothing} @0x000072a201d489cd, Ptr{Nothing} @0x000072a201d495af, Ptr{Nothing} @0x000072a201d49705, Ptr{Nothing} @0x000072a24b246f8d, Ptr{Nothing} @0x000072a24b257548, Ptr{Nothing} @0x000072a201d404ba, Ptr{Nothing} @0x000072a201d42d8f, Ptr{Nothing} @0x000072a201d433e2, Ptr{Nothing} @0x000072a24b246f8d, Ptr{Nothing} @0x000072a24b26a30f])
|
1155 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/stipple/mutators.jl:54
|
1156 |
+
β Info: 2025-03-15 15:31:02 Downloading jvrEfZUajTE
|
1157 |
+
β @ Main.App /home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl:28
|
1158 |
+
β Info: 2025-03-15 15:31:05 Calling finalizers
|
1159 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
1160 |
+
β Info: 2025-03-15 15:31:09 Calling finalizers
|
1161 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
1162 |
+
β Info: 2025-03-15 15:31:15 Server on 127.0.0.1:8000 closing
|
1163 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:409
|
1164 |
+
β Info: 2025-03-15 15:31:43 Watching ["/home/swojcik/github/GenieOnHuggingFaceSpaces"]
|
1165 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
1166 |
+
β Info: 2025-03-15 15:31:45 Autoreloading
|
1167 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
1168 |
+
β Info: 2025-03-15 15:31:46
|
1169 |
+
β Web Server starting at http://127.0.0.1:8000
|
1170 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
1171 |
+
β Info: 2025-03-15 15:31:46 Listening on: 127.0.0.1:8000, thread id: 1
|
1172 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
1173 |
+
β Info: 2025-03-15 15:32:12 Transcribing SW14tOda_kI
|
1174 |
+
β @ Main.App /home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl:21
|
1175 |
+
β Info: 2025-03-15 15:52:55 Calling finalizers
|
1176 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
1177 |
+
β Info: 2025-03-15 15:53:15 Transcribing ISL1MjCOAGU
|
1178 |
+
β @ Main.App /home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl:21
|
1179 |
+
β Info: 2025-03-16 09:53:46 Calling finalizers
|
1180 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
1181 |
+
β Info: 2025-03-16 10:26:48 Server on 127.0.0.1:8000 closing
|
1182 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:409
|
log/dev-2025-03-16.log
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
β Info: 2025-03-16 20:36:41 Watching ["/home/swojcik/github/GenieOnHuggingFaceSpaces"]
|
2 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
3 |
+
β Info: 2025-03-16 20:36:42 Autoreloading
|
4 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
5 |
+
β Info: 2025-03-16 20:36:43
|
6 |
+
β Web Server starting at http://127.0.0.1:8000
|
7 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
8 |
+
β Info: 2025-03-16 20:36:43 Listening on: 127.0.0.1:8000, thread id: 1
|
9 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
10 |
+
β Info: 2025-03-16 20:37:14 Transcribing SW14tOda_kI
|
11 |
+
β @ Main.App /home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl:27
|
12 |
+
β Info: 2025-03-16 20:38:50 Server on 127.0.0.1:8000 closing
|
13 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:409
|
log/dev-2025-03-17.log
ADDED
@@ -0,0 +1,570 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
β Info: 2025-03-17 20:08:48 Watching ["/home/swojcik/github/GenieOnHuggingFaceSpaces"]
|
2 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
3 |
+
β Info: 2025-03-17 20:08:49 Autoreloading
|
4 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
5 |
+
β Info: 2025-03-17 20:08:51
|
6 |
+
β Web Server starting at http://127.0.0.1:8000
|
7 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
8 |
+
β Info: 2025-03-17 20:08:51 Listening on: 127.0.0.1:8000, thread id: 1
|
9 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
10 |
+
β Info: 2025-03-17 20:10:02 Transcribing SW14tOda_kI
|
11 |
+
β @ Main.App /home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl:29
|
12 |
+
β Info: 2025-03-17 20:16:56 Autoreloading
|
13 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
14 |
+
β Info: 2025-03-17 20:16:56 Calling finalizers
|
15 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
16 |
+
β Info: 2025-03-17 20:18:06 Autoreloading
|
17 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
18 |
+
β Info: 2025-03-17 20:18:06 Calling finalizers
|
19 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
20 |
+
β Info: 2025-03-17 20:18:09 Calling finalizers
|
21 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
22 |
+
β Info: 2025-03-17 20:18:38 Autoreloading
|
23 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
24 |
+
β Info: 2025-03-17 20:18:38 Calling finalizers
|
25 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
26 |
+
β Info: 2025-03-17 20:18:41 Calling finalizers
|
27 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
28 |
+
β Info: 2025-03-17 20:18:49 Autoreloading
|
29 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
30 |
+
β Info: 2025-03-17 20:18:49 Calling finalizers
|
31 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
32 |
+
β Info: 2025-03-17 20:18:56 Autoreloading
|
33 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
34 |
+
β Info: 2025-03-17 20:18:56 Calling finalizers
|
35 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
36 |
+
β Info: 2025-03-17 20:19:32 Autoreloading
|
37 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
38 |
+
β Info: 2025-03-17 20:19:32 Calling finalizers
|
39 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
40 |
+
β Info: 2025-03-17 20:23:25 Autoreloading
|
41 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
42 |
+
β Info: 2025-03-17 20:23:25 Calling finalizers
|
43 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
44 |
+
β Info: 2025-03-17 20:23:47 Autoreloading
|
45 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
46 |
+
β Info: 2025-03-17 20:23:47 Calling finalizers
|
47 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
48 |
+
β Info: 2025-03-17 20:23:55 Transcribing SW14tOda_kI
|
49 |
+
β @ Main.App /home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl:29
|
50 |
+
β Info: 2025-03-17 20:26:11 Autoreloading
|
51 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
52 |
+
β Info: 2025-03-17 20:26:11 Calling finalizers
|
53 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
54 |
+
β Info: 2025-03-17 20:28:20 Autoreloading
|
55 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
56 |
+
β Info: 2025-03-17 20:28:20 Calling finalizers
|
57 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
58 |
+
β Info: 2025-03-17 20:28:30 Autoreloading
|
59 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
60 |
+
β Info: 2025-03-17 20:28:30 Calling finalizers
|
61 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
62 |
+
β Info: 2025-03-17 20:28:38 Transcribing SW14tOda_kI
|
63 |
+
β @ Main.App /home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl:29
|
64 |
+
β Info: 2025-03-17 20:30:41 Autoreloading
|
65 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
66 |
+
β Info: 2025-03-17 20:30:41 Calling finalizers
|
67 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
68 |
+
β Info: 2025-03-17 20:30:47 Autoreloading
|
69 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
70 |
+
β Info: 2025-03-17 20:30:47 Calling finalizers
|
71 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
72 |
+
β Info: 2025-03-17 20:30:50 Transcribing SW14tOda_kI
|
73 |
+
β @ Main.App /home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl:29
|
74 |
+
β Info: 2025-03-17 20:34:45 Autoreloading
|
75 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
76 |
+
β Info: 2025-03-17 20:34:46 Calling finalizers
|
77 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
78 |
+
β Info: 2025-03-17 20:41:15 Autoreloading
|
79 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
80 |
+
β Info: 2025-03-17 20:41:15 Calling finalizers
|
81 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
82 |
+
β Info: 2025-03-17 20:49:33 Autoreloading
|
83 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
84 |
+
β Info: 2025-03-17 20:49:33 Calling finalizers
|
85 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
86 |
+
β Info: 2025-03-17 20:52:07 Autoreloading
|
87 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
88 |
+
β Info: 2025-03-17 20:52:07 Calling finalizers
|
89 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
90 |
+
β Info: 2025-03-17 20:52:42 Autoreloading
|
91 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
92 |
+
β Info: 2025-03-17 20:52:42 Calling finalizers
|
93 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
94 |
+
β Info: 2025-03-17 20:53:01 Autoreloading
|
95 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
96 |
+
β Info: 2025-03-17 20:53:01 Calling finalizers
|
97 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
98 |
+
β Info: 2025-03-17 20:54:01 Transcribing 9FSK7fMCb2k
|
99 |
+
β @ Main.App /home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl:29
|
100 |
+
β Error: 2025-03-17 20:54:03
|
101 |
+
β Error attempting to invoke handler.
|
102 |
+
β
|
103 |
+
β Handler:
|
104 |
+
β # 1 method for anonymous function "#97":
|
105 |
+
β [1] (::Main.App.var"#97#99")(...)
|
106 |
+
β @ ~/.julia/packages/Stipple/UZmka/src/ReactiveTools.jl:950
|
107 |
+
β Core.CodeInfo[CodeInfo(
|
108 |
+
β 1 ββ Core.NewvarNode(:(msg))
|
109 |
+
β β Core.NewvarNode(:(kwargs))
|
110 |
+
β β Core.NewvarNode(:(line))
|
111 |
+
β β Core.NewvarNode(:(file))
|
112 |
+
β β Core.NewvarNode(:(id))
|
113 |
+
β β Core.NewvarNode(:(logger))
|
114 |
+
β β Core.NewvarNode(:(_module))
|
115 |
+
β β Core.NewvarNode(:(group))
|
116 |
+
β β level = Base.CoreLogging.Info
|
117 |
+
β β std_level = level
|
118 |
+
β β %11 = std_level
|
119 |
+
β β %12 = Base.getindex(Base.RefValue{Base.CoreLogging.LogLevel}(Debug))
|
120 |
+
β β %13 = %11 >= %12
|
121 |
+
β ββββ goto #17 if not %13
|
122 |
+
β 2 ββ group = :app
|
123 |
+
β β _module = Main.App
|
124 |
+
β β logger = (Base.CoreLogging.current_logger_for_env)(std_level, group, _module)
|
125 |
+
β β %18 = logger === Base.CoreLogging.nothing
|
126 |
+
β β %19 = !%18
|
127 |
+
β ββββ goto #17 if not %19
|
128 |
+
β 3 ββ id = :Main_App_b92f5471
|
129 |
+
β β %22 = Base.CoreLogging.invokelatest(Base.CoreLogging.shouldlog, logger, level, _module, group, id)
|
130 |
+
β ββββ goto #17 if not %22
|
131 |
+
β 4 ββ file = "/home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl"
|
132 |
+
β β %25 = file isa Base.CoreLogging.String
|
133 |
+
β ββββ goto #6 if not %25
|
134 |
+
β 5 ββ %27 = Base.fixup_stdlib_path
|
135 |
+
β ββββ file = (%27)(file)
|
136 |
+
β 6 ββ line = 29
|
137 |
+
β 7 ββ %30 = $(Expr(:enter, #10))
|
138 |
+
β 8 ββ %31 = Core.getfield(#self#, :__model__)
|
139 |
+
β β %32 = Base.getproperty(%31, :url)
|
140 |
+
β β %33 = Base.getindex(%32)
|
141 |
+
β β msg = Base.string("Transcribing ", %33)
|
142 |
+
β β kwargs = Core.NamedTuple()
|
143 |
+
β β @_14 = true
|
144 |
+
β ββββ $(Expr(:leave, 1))
|
145 |
+
β 9 ββ goto #12
|
146 |
+
β 10 β $(Expr(:leave, 1))
|
147 |
+
β 11 β err = $(Expr(:the_exception))
|
148 |
+
β β Base.invokelatest(Base.CoreLogging.logging_error, logger, level, _module, group, id, file, line, err, true)
|
149 |
+
β β @_14 = false
|
150 |
+
β ββββ $(Expr(:pop_exception, :(%30)))
|
151 |
+
β 12 β goto #17 if not @_14
|
152 |
+
β 13 β %45 = Base.NamedTuple()
|
153 |
+
β β %46 = Base.merge(%45, kwargs)
|
154 |
+
β β %47 = Base.isempty(%46)
|
155 |
+
β ββββ goto #15 if not %47
|
156 |
+
β 14 β Base.CoreLogging.invokelatest(Base.CoreLogging.handle_message, logger, level, msg, _module, group, id, file, line)
|
157 |
+
β ββββ goto #16
|
158 |
+
β 15 β Core.kwcall(%46, Base.CoreLogging.invokelatest, Base.CoreLogging.handle_message, logger, level, msg, _module, group, id, file, line)
|
159 |
+
β 16 β goto #17
|
160 |
+
β 17 β Base.CoreLogging.nothing
|
161 |
+
β β %54 = true
|
162 |
+
β β %55 = Core.getfield(#self#, :__model__)
|
163 |
+
β β %56 = Base.getproperty(%55, :transcribing)
|
164 |
+
β β Base.setindex!(%56, %54)
|
165 |
+
β β %58 = Core.getfield(#self#, :__model__)
|
166 |
+
β β %59 = Base.getproperty(%58, :url)
|
167 |
+
β β %60 = Base.getindex(%59)
|
168 |
+
β β %61 = Main.App.generate_color_html_text(%60)
|
169 |
+
β β %62 = Core.getfield(#self#, :__model__)
|
170 |
+
β β %63 = Base.getproperty(%62, :transcription)
|
171 |
+
β β Base.setindex!(%63, %61)
|
172 |
+
β οΏ½οΏ½οΏ½ %65 = false
|
173 |
+
β β %66 = Core.getfield(#self#, :__model__)
|
174 |
+
β β %67 = Base.getproperty(%66, :transcribing)
|
175 |
+
β β Base.setindex!(%67, %65)
|
176 |
+
β ββββ return %65
|
177 |
+
β )]
|
178 |
+
β
|
179 |
+
β Type of argument:
|
180 |
+
β Bool
|
181 |
+
β
|
182 |
+
β Value:
|
183 |
+
β true
|
184 |
+
β
|
185 |
+
β Exception:
|
186 |
+
β BoundsError(["[Music]", "this is a flu this is like the flu we", "have a total of 15 and the 15 within a", "couple of days is going to be down to", "close to zero and they can have vaccines", "I think relatively soon we're talking", "about a vaccine maybe a cure that is", "possible", "I think the 3.4% is really false numbers", "now this is just my hunch firstly I", "would say the numbers way under 1%", "[Music]", "[Music]"], (1:20,))
|
187 |
+
β
|
188 |
+
β exception = (BoundsError(["[Music]", "this is a flu this is like the flu we", "have a total of 15 and the 15 within a", "couple of days is going to be down to", "close to zero and they can have vaccines", "I think relatively soon we're talking", "about a vaccine maybe a cure that is", "possible", "I think the 3.4% is really false numbers", "now this is just my hunch firstly I", "would say the numbers way under 1%", "[Music]", "[Music]"], (1:20,)), Union{Ptr{Nothing}, Base.InterpreterIP}[Ptr{Nothing} @0x000072e073026b1a, Ptr{Nothing} @0x000072e089f5886d, Ptr{Nothing} @0x000072e089f58899, Ptr{Nothing} @0x000072e08a046f8d, Ptr{Nothing} @0x000072e03a11d7d5, Ptr{Nothing} @0x000072e03a11da6a, Ptr{Nothing} @0x000072e03a11e238, Ptr{Nothing} @0x000072e08a046f8d, Ptr{Nothing} @0x000072e08a057548, Ptr{Nothing} @0x000072e03b39253b, Ptr{Nothing} @0x000072e03b392f99, Ptr{Nothing} @0x000072e03b392fe5, Ptr{Nothing} @0x000072e08a046f8d, Ptr{Nothing} @0x000072e03b3d5a70, Ptr{Nothing} @0x000072e03b3d5b3b, Ptr{Nothing} @0x000072e08a046f8d, Ptr{Nothing} @0x000072e03b3d399f, Ptr{Nothing} @0x000072e03b3d3c62, Ptr{Nothing} @0x000072e08a046f8d, Ptr{Nothing} @0x000072e03b385af4, Ptr{Nothing} @0x000072e03b385fb6, Ptr{Nothing} @0x000072e03b38606a, Ptr{Nothing} @0x000072e03b3860a9, Ptr{Nothing} @0x000072e08a046f8d, Ptr{Nothing} @0x000072e03b37b98d, Ptr{Nothing} @0x000072e03b37b9e2, Ptr{Nothing} @0x000072e08a046f8d, Ptr{Nothing} @0x000072e08a057548, Ptr{Nothing} @0x000072dfab4eaf0f, Ptr{Nothing} @0x000072dfab567253, Ptr{Nothing} @0x000072e03edc61ed, Ptr{Nothing} @0x000072e03edca01c, Ptr{Nothing} @0x000072e03edca175, Ptr{Nothing} @0x000072e08a046f8d, Ptr{Nothing} @0x000072e08a057548, Ptr{Nothing} @0x000072e03edc0fa9, Ptr{Nothing} @0x000072e03edc37cf, Ptr{Nothing} @0x000072e03edc3e22, Ptr{Nothing} @0x000072e08a046f8d, Ptr{Nothing} @0x000072e08a06a30f])
|
189 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/stipple/mutators.jl:54
|
190 |
+
β Info: 2025-03-17 20:56:32 Server on 127.0.0.1:8000 closing
|
191 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:409
|
192 |
+
β Info: 2025-03-17 20:57:27 Watching ["/home/swojcik/github/GenieOnHuggingFaceSpaces"]
|
193 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
194 |
+
β Info: 2025-03-17 20:57:29 Autoreloading
|
195 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
196 |
+
β Info: 2025-03-17 20:57:30
|
197 |
+
β Web Server starting at http://127.0.0.1:8000
|
198 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
199 |
+
β Info: 2025-03-17 20:57:31 Listening on: 127.0.0.1:8000, thread id: 1
|
200 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
201 |
+
β Info: 2025-03-17 20:58:14 Transcribing SW14tOda_kI
|
202 |
+
β @ Main.App /home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl:29
|
203 |
+
β Error: 2025-03-17 20:59:34
|
204 |
+
β Error attempting to invoke handler.
|
205 |
+
β
|
206 |
+
β Handler:
|
207 |
+
β # 1 method for anonymous function "#10":
|
208 |
+
β [1] (::Main.App.var"#10#12")(...)
|
209 |
+
β @ ~/.julia/packages/Stipple/UZmka/src/ReactiveTools.jl:950
|
210 |
+
β Core.CodeInfo[CodeInfo(
|
211 |
+
β 1 ββ Core.NewvarNode(:(msg))
|
212 |
+
β β Core.NewvarNode(:(kwargs))
|
213 |
+
β β Core.NewvarNode(:(line))
|
214 |
+
β β Core.NewvarNode(:(file))
|
215 |
+
β β Core.NewvarNode(:(id))
|
216 |
+
β β Core.NewvarNode(:(logger))
|
217 |
+
β β Core.NewvarNode(:(_module))
|
218 |
+
β β Core.NewvarNode(:(group))
|
219 |
+
β β level = Base.CoreLogging.Info
|
220 |
+
β β std_level = level
|
221 |
+
β β %11 = std_level
|
222 |
+
β β %12 = Base.getindex(Base.RefValue{Base.CoreLogging.LogLevel}(Debug))
|
223 |
+
β β %13 = %11 >= %12
|
224 |
+
β ββββ goto #17 if not %13
|
225 |
+
β 2 ββ group = :app
|
226 |
+
β β _module = Main.App
|
227 |
+
β β logger = (Base.CoreLogging.current_logger_for_env)(std_level, group, _module)
|
228 |
+
β β %18 = logger === Base.CoreLogging.nothing
|
229 |
+
β β %19 = !%18
|
230 |
+
β ββββ goto #17 if not %19
|
231 |
+
β 3 ββ id = :Main_App_b92f546e
|
232 |
+
β β %22 = Base.CoreLogging.invokelatest(Base.CoreLogging.shouldlog, logger, level, _module, group, id)
|
233 |
+
β ββββ goto #17 if not %22
|
234 |
+
β 4 ββ file = "/home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl"
|
235 |
+
β β %25 = file isa Base.CoreLogging.String
|
236 |
+
β ββββ goto #6 if not %25
|
237 |
+
β 5 ββ %27 = Base.fixup_stdlib_path
|
238 |
+
β ββββ file = (%27)(file)
|
239 |
+
β 6 ββ line = 29
|
240 |
+
β 7 ββ %30 = $(Expr(:enter, #10))
|
241 |
+
β 8 ββ %31 = Core.getfield(#self#, :__model__)
|
242 |
+
β β %32 = Base.getproperty(%31, :url)
|
243 |
+
β β %33 = Base.getindex(%32)
|
244 |
+
β β msg = Base.string("Transcribing ", %33)
|
245 |
+
β β kwargs = Core.NamedTuple()
|
246 |
+
β β @_14 = true
|
247 |
+
β ββββ $(Expr(:leave, 1))
|
248 |
+
β 9 ββ goto #12
|
249 |
+
β 10 β $(Expr(:leave, 1))
|
250 |
+
β 11 β err = $(Expr(:the_exception))
|
251 |
+
β β Base.invokelatest(Base.CoreLogging.logging_error, logger, level, _module, group, id, file, line, err, true)
|
252 |
+
β β @_14 = false
|
253 |
+
β ββββ $(Expr(:pop_exception, :(%30)))
|
254 |
+
β 12 β goto #17 if not @_14
|
255 |
+
β 13 β %45 = Base.NamedTuple()
|
256 |
+
β β %46 = Base.merge(%45, kwargs)
|
257 |
+
β β %47 = Base.isempty(%46)
|
258 |
+
β ββββ goto #15 if not %47
|
259 |
+
β 14 β Base.CoreLogging.invokelatest(Base.CoreLogging.handle_message, logger, level, msg, _module, group, id, file, line)
|
260 |
+
β ββββ goto #16
|
261 |
+
β 15 β Core.kwcall(%46, Base.CoreLogging.invokelatest, Base.CoreLogging.handle_message, logger, level, msg, _module, group, id, file, line)
|
262 |
+
β 16 β goto #17
|
263 |
+
β 17 β Base.CoreLogging.nothing
|
264 |
+
β β %54 = true
|
265 |
+
β β %55 = Core.getfield(#self#, :__model__)
|
266 |
+
β β %56 = Base.getproperty(%55, :transcribing)
|
267 |
+
β β Base.setindex!(%56, %54)
|
268 |
+
β β %58 = Core.getfield(#self#, :__model__)
|
269 |
+
β β %59 = Base.getproperty(%58, :url)
|
270 |
+
β β %60 = Base.getindex(%59)
|
271 |
+
β β %61 = Main.App.generate_color_html_text(%60)
|
272 |
+
β β %62 = Core.getfield(#self#, :__model__)
|
273 |
+
β β %63 = Base.getproperty(%62, :transcription)
|
274 |
+
β β Base.setindex!(%63, %61)
|
275 |
+
β β %65 = false
|
276 |
+
β β %66 = Core.getfield(#self#, :__model__)
|
277 |
+
β β %67 = Base.getproperty(%66, :transcribing)
|
278 |
+
β β Base.setindex!(%67, %65)
|
279 |
+
β ββββ return %65
|
280 |
+
β )]
|
281 |
+
β
|
282 |
+
β Type of argument:
|
283 |
+
β Bool
|
284 |
+
β
|
285 |
+
β Value:
|
286 |
+
β true
|
287 |
+
β
|
288 |
+
β Exception:
|
289 |
+
β UndefVarError(:mean)
|
290 |
+
β
|
291 |
+
β exception = (UndefVarError(:mean), Union{Ptr{Nothing}, Base.InterpreterIP}[Ptr{Nothing} @0x000075ccd28c9564, Ptr{Nothing} @0x000075ccd2863c57, Ptr{Nothing} @0x000075cc893542f5, Ptr{Nothing} @0x000075cc89354ce8, Ptr{Nothing} @0x000075cc89354d15, Ptr{Nothing} @0x000075ccd2846f8d, Ptr{Nothing} @0x000075cc8930ef68, Ptr{Nothing} @0x000075cc8930f8ff, Ptr{Nothing} @0x000075cc8930fb2a, Ptr{Nothing} @0x000075cc893102f8, Ptr{Nothing} @0x000075ccd2846f8d, Ptr{Nothing} @0x000075ccd2857548, Ptr{Nothing} @0x000075cc893001cb, Ptr{Nothing} @0x000075cc89300c29, Ptr{Nothing} @0x000075cc89300c75, Ptr{Nothing} @0x000075ccd2846f8d, Ptr{Nothing} @0x000075cc89807110, Ptr{Nothing} @0x000075cc898071db, Ptr{Nothing} @0x000075ccd2846f8d, Ptr{Nothing} @0x000075cc89801913, Ptr{Nothing} @0x000075cc89801bd2, Ptr{Nothing} @0x000075ccd2846f8d, Ptr{Nothing} @0x000075cc8975d1b4, Ptr{Nothing} @0x000075cc8975d678, Ptr{Nothing} @0x000075cc8975d72a, Ptr{Nothing} @0x000075cc8975d769, Ptr{Nothing} @0x000075ccd2846f8d, Ptr{Nothing} @0x000075cc8975302d, Ptr{Nothing} @0x000075cc89753082, Ptr{Nothing} @0x000075ccd2846f8d, Ptr{Nothing} @0x000075ccd2857548, Ptr{Nothing} @0x000075cc7aceaf0f, Ptr{Nothing} @0x000075cc7ad67253, Ptr{Nothing} @0x000075cc8974f24d, Ptr{Nothing} @0x000075cc89751dbc, Ptr{Nothing} @0x000075cc89751f15, Ptr{Nothing} @0x000075ccd2846f8d, Ptr{Nothing} @0x000075ccd2857548, Ptr{Nothing} @0x000075cc89748d2b, Ptr{Nothing} @0x000075cc8974b59f, Ptr{Nothing} @0x000075cc8974bbf2, Ptr{Nothing} @0x000075ccd2846f8d, Ptr{Nothing} @0x000075ccd286a30f])
|
292 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/stipple/mutators.jl:54
|
293 |
+
β Info: 2025-03-17 21:00:20 Autoreloading
|
294 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
295 |
+
β Info: 2025-03-17 21:00:21 Calling finalizers
|
296 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
297 |
+
β Info: 2025-03-17 21:00:26 Calling finalizers
|
298 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
299 |
+
β Info: 2025-03-17 21:00:47 Server on 127.0.0.1:8000 closing
|
300 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:409
|
301 |
+
β Info: 2025-03-17 21:01:22 Watching ["/home/swojcik/github/GenieOnHuggingFaceSpaces"]
|
302 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
303 |
+
β Info: 2025-03-17 21:01:24 Autoreloading
|
304 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
305 |
+
β Info: 2025-03-17 21:01:25
|
306 |
+
β Web Server starting at http://127.0.0.1:8000
|
307 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
308 |
+
β Info: 2025-03-17 21:01:25 Listening on: 127.0.0.1:8000, thread id: 1
|
309 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
310 |
+
β Info: 2025-03-17 21:01:53 Transcribing SW14tOda_kI
|
311 |
+
β @ Main.App /home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl:29
|
312 |
+
β Error: 2025-03-17 21:03:08
|
313 |
+
β Error attempting to invoke handler.
|
314 |
+
β
|
315 |
+
β Handler:
|
316 |
+
β # 1 method for anonymous function "#10":
|
317 |
+
β [1] (::Main.App.var"#10#12")(...)
|
318 |
+
β @ ~/.julia/packages/Stipple/UZmka/src/ReactiveTools.jl:950
|
319 |
+
β Core.CodeInfo[CodeInfo(
|
320 |
+
β 1 ββ Core.NewvarNode(:(msg))
|
321 |
+
β β Core.NewvarNode(:(kwargs))
|
322 |
+
β β Core.NewvarNode(:(line))
|
323 |
+
β β Core.NewvarNode(:(file))
|
324 |
+
β β Core.NewvarNode(:(id))
|
325 |
+
β β Core.NewvarNode(:(logger))
|
326 |
+
β β Core.NewvarNode(:(_module))
|
327 |
+
β β Core.NewvarNode(:(group))
|
328 |
+
β β level = Base.CoreLogging.Info
|
329 |
+
β β std_level = level
|
330 |
+
β β %11 = std_level
|
331 |
+
β β %12 = Base.getindex(Base.RefValue{Base.CoreLogging.LogLevel}(Debug))
|
332 |
+
β β %13 = %11 >= %12
|
333 |
+
β ββββ goto #17 if not %13
|
334 |
+
β 2 ββ group = :app
|
335 |
+
β β _module = Main.App
|
336 |
+
β β logger = (Base.CoreLogging.current_logger_for_env)(std_level, group, _module)
|
337 |
+
β β %18 = logger === Base.CoreLogging.nothing
|
338 |
+
β β %19 = !%18
|
339 |
+
β ββββ goto #17 if not %19
|
340 |
+
β 3 ββ id = :Main_App_b92f546e
|
341 |
+
β β %22 = Base.CoreLogging.invokelatest(Base.CoreLogging.shouldlog, logger, level, _module, group, id)
|
342 |
+
β ββββ goto #17 if not %22
|
343 |
+
β 4 ββ file = "/home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl"
|
344 |
+
β β %25 = file isa Base.CoreLogging.String
|
345 |
+
β ββββ goto #6 if not %25
|
346 |
+
β 5 ββ %27 = Base.fixup_stdlib_path
|
347 |
+
β ββββ file = (%27)(file)
|
348 |
+
β 6 ββ line = 29
|
349 |
+
β 7 ββ %30 = $(Expr(:enter, #10))
|
350 |
+
β 8 ββ %31 = Core.getfield(#self#, :__model__)
|
351 |
+
β β %32 = Base.getproperty(%31, :url)
|
352 |
+
β β %33 = Base.getindex(%32)
|
353 |
+
β β msg = Base.string("Transcribing ", %33)
|
354 |
+
β β kwargs = Core.NamedTuple()
|
355 |
+
β β @_14 = true
|
356 |
+
β ββββ $(Expr(:leave, 1))
|
357 |
+
β 9 ββ goto #12
|
358 |
+
β 10 β $(Expr(:leave, 1))
|
359 |
+
β 11 β err = $(Expr(:the_exception))
|
360 |
+
β β Base.invokelatest(Base.CoreLogging.logging_error, logger, level, _module, group, id, file, line, err, true)
|
361 |
+
β β @_14 = false
|
362 |
+
β ββββ $(Expr(:pop_exception, :(%30)))
|
363 |
+
β 12 β goto #17 if not @_14
|
364 |
+
β 13 β %45 = Base.NamedTuple()
|
365 |
+
β β %46 = Base.merge(%45, kwargs)
|
366 |
+
β β %47 = Base.isempty(%46)
|
367 |
+
β ββββ goto #15 if not %47
|
368 |
+
β 14 β Base.CoreLogging.invokelatest(Base.CoreLogging.handle_message, logger, level, msg, _module, group, id, file, line)
|
369 |
+
β ββββ goto #16
|
370 |
+
β 15 β Core.kwcall(%46, Base.CoreLogging.invokelatest, Base.CoreLogging.handle_message, logger, level, msg, _module, group, id, file, line)
|
371 |
+
β 16 β goto #17
|
372 |
+
β 17 β Base.CoreLogging.nothing
|
373 |
+
β β %54 = true
|
374 |
+
β β %55 = Core.getfield(#self#, :__model__)
|
375 |
+
β β %56 = Base.getproperty(%55, :transcribing)
|
376 |
+
β β Base.setindex!(%56, %54)
|
377 |
+
β β %58 = Core.getfield(#self#, :__model__)
|
378 |
+
β β %59 = Base.getproperty(%58, :url)
|
379 |
+
β β %60 = Base.getindex(%59)
|
380 |
+
β β %61 = Main.App.generate_color_html_text(%60)
|
381 |
+
β β %62 = Core.getfield(#self#, :__model__)
|
382 |
+
β β %63 = Base.getproperty(%62, :transcription)
|
383 |
+
β β Base.setindex!(%63, %61)
|
384 |
+
β β %65 = false
|
385 |
+
β β %66 = Core.getfield(#self#, :__model__)
|
386 |
+
β β %67 = Base.getproperty(%66, :transcribing)
|
387 |
+
β β Base.setindex!(%67, %65)
|
388 |
+
β ββββ return %65
|
389 |
+
β )]
|
390 |
+
β
|
391 |
+
β Type of argument:
|
392 |
+
β Bool
|
393 |
+
β
|
394 |
+
β Value:
|
395 |
+
β true
|
396 |
+
β
|
397 |
+
β Exception:
|
398 |
+
β UndefVarError(:padded_scores)
|
399 |
+
β
|
400 |
+
β exception = (UndefVarError(:padded_scores), Union{Ptr{Nothing}, Base.InterpreterIP}[Ptr{Nothing} @0x0000766c246c9564, Ptr{Nothing} @0x0000766c24663c57, Ptr{Nothing} @0x0000766bdb14e898, Ptr{Nothing} @0x0000766bdb14f0c8, Ptr{Nothing} @0x0000766bdb14f0f5, Ptr{Nothing} @0x0000766c24646f8d, Ptr{Nothing} @0x0000766bdb10e488, Ptr{Nothing} @0x0000766bdb10ec6f, Ptr{Nothing} @0x0000766bdb10ee9a, Ptr{Nothing} @0x0000766bdb10f668, Ptr{Nothing} @0x0000766c24646f8d, Ptr{Nothing} @0x0000766c24657548, Ptr{Nothing} @0x0000766bdb60849b, Ptr{Nothing} @0x0000766bdb608ef9, Ptr{Nothing} @0x0000766bdb608f45, Ptr{Nothing} @0x0000766c24646f8d, Ptr{Nothing} @0x0000766bdb606ec0, Ptr{Nothing} @0x0000766bdb606f8b, Ptr{Nothing} @0x0000766c24646f8d, Ptr{Nothing} @0x0000766bdb6016c3, Ptr{Nothing} @0x0000766bdb601982, Ptr{Nothing} @0x0000766c24646f8d, Ptr{Nothing} @0x0000766bdb5fba14, Ptr{Nothing} @0x0000766bdb5fbed8, Ptr{Nothing} @0x0000766bdb5fbf8a, Ptr{Nothing} @0x0000766bdb5fbfc9, Ptr{Nothing} @0x0000766c24646f8d, Ptr{Nothing} @0x0000766bdb5f18ad, Ptr{Nothing} @0x0000766bdb5f1902, Ptr{Nothing} @0x0000766c24646f8d, Ptr{Nothing} @0x0000766c24657548, Ptr{Nothing} @0x0000766bccaeaf0f, Ptr{Nothing} @0x0000766bccb67253, Ptr{Nothing} @0x0000766bdb54e03d, Ptr{Nothing} @0x0000766bdb551e3f, Ptr{Nothing} @0x0000766bdb551f95, Ptr{Nothing} @0x0000766c24646f8d, Ptr{Nothing} @0x0000766c24657548, Ptr{Nothing} @0x0000766bdb548d4a, Ptr{Nothing} @0x0000766bdb54b61f, Ptr{Nothing} @0x0000766bdb54bc72, Ptr{Nothing} @0x0000766c24646f8d, Ptr{Nothing} @0x0000766c2466a30f])
|
401 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/stipple/mutators.jl:54
|
402 |
+
β Info: 2025-03-17 21:03:48 Autoreloading
|
403 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
404 |
+
β Info: 2025-03-17 21:03:48 Calling finalizers
|
405 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
406 |
+
β Info: 2025-03-17 21:03:56 Server on 127.0.0.1:8000 closing
|
407 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:409
|
408 |
+
β Info: 2025-03-17 21:04:17 Watching ["/home/swojcik/github/GenieOnHuggingFaceSpaces"]
|
409 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
410 |
+
β Info: 2025-03-17 21:04:19 Autoreloading
|
411 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
412 |
+
β Info: 2025-03-17 21:04:21
|
413 |
+
β Web Server starting at http://127.0.0.1:8000
|
414 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
415 |
+
β Info: 2025-03-17 21:04:21 Listening on: 127.0.0.1:8000, thread id: 1
|
416 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
417 |
+
β Info: 2025-03-17 21:04:51 Transcribing owuokB4Ib9g
|
418 |
+
β @ Main.App /home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl:29
|
419 |
+
β Info: 2025-03-17 21:05:29 Autoreloading
|
420 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
421 |
+
β Info: 2025-03-17 21:08:24 Autoreloading
|
422 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
423 |
+
β Info: 2025-03-17 21:08:24 Calling finalizers
|
424 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
425 |
+
β Info: 2025-03-17 21:08:29 Transcribing owuokB4Ib9g
|
426 |
+
β @ Main.App /home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl:29
|
427 |
+
β Info: 2025-03-17 21:10:09 Autoreloading
|
428 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
429 |
+
β Info: 2025-03-17 21:10:09 Calling finalizers
|
430 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
431 |
+
β Info: 2025-03-17 21:10:20 Autoreloading
|
432 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
433 |
+
β Info: 2025-03-17 21:10:20 Calling finalizers
|
434 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/Stipple.jl:534
|
435 |
+
β Info: 2025-03-17 21:10:24 Transcribing owuokB4Ib9g
|
436 |
+
β @ Main.App /home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl:29
|
437 |
+
β Error: 2025-03-17 21:14:56
|
438 |
+
β Error attempting to invoke handler.
|
439 |
+
β
|
440 |
+
β Handler:
|
441 |
+
β # 1 method for anonymous function "#91":
|
442 |
+
β [1] (::Main.App.var"#91#93")(...)
|
443 |
+
β @ ~/.julia/packages/Stipple/UZmka/src/ReactiveTools.jl:950
|
444 |
+
β Core.CodeInfo[CodeInfo(
|
445 |
+
β 1 ββ Core.NewvarNode(:(msg))
|
446 |
+
β β Core.NewvarNode(:(kwargs))
|
447 |
+
β β Core.NewvarNode(:(line))
|
448 |
+
β β Core.NewvarNode(:(file))
|
449 |
+
β β Core.NewvarNode(:(id))
|
450 |
+
β β Core.NewvarNode(:(logger))
|
451 |
+
β β Core.NewvarNode(:(_module))
|
452 |
+
β β Core.NewvarNode(:(group))
|
453 |
+
β β level = Base.CoreLogging.Info
|
454 |
+
β β std_level = level
|
455 |
+
β β %11 = std_level
|
456 |
+
β β %12 = Base.getindex(Base.RefValue{Base.CoreLogging.LogLevel}(Debug))
|
457 |
+
β β %13 = %11 >= %12
|
458 |
+
β ββββ goto #17 if not %13
|
459 |
+
β 2 ββ group = :app
|
460 |
+
β β _module = Main.App
|
461 |
+
β β logger = (Base.CoreLogging.current_logger_for_env)(std_level, group, _module)
|
462 |
+
β β %18 = logger === Base.CoreLogging.nothing
|
463 |
+
β β %19 = !%18
|
464 |
+
β ββββ goto #17 if not %19
|
465 |
+
β 3 ββ id = :Main_App_b92f5471
|
466 |
+
β β %22 = Base.CoreLogging.invokelatest(Base.CoreLogging.shouldlog, logger, level, _module, group, id)
|
467 |
+
β ββββ goto #17 if not %22
|
468 |
+
β 4 ββ file = "/home/swojcik/github/GenieOnHuggingFaceSpaces/app.jl"
|
469 |
+
β β %25 = file isa Base.CoreLogging.String
|
470 |
+
β ββββ goto #6 if not %25
|
471 |
+
β 5 ββ %27 = Base.fixup_stdlib_path
|
472 |
+
β ββββ file = (%27)(file)
|
473 |
+
β 6 ββ line = 29
|
474 |
+
β 7 ββ %30 = $(Expr(:enter, #10))
|
475 |
+
β 8 ββ %31 = Core.getfield(#self#, :__model__)
|
476 |
+
β β %32 = Base.getproperty(%31, :url)
|
477 |
+
β β %33 = Base.getindex(%32)
|
478 |
+
β β msg = Base.string("Transcribing ", %33)
|
479 |
+
β β kwargs = Core.NamedTuple()
|
480 |
+
β β @_14 = true
|
481 |
+
β ββββ $(Expr(:leave, 1))
|
482 |
+
β 9 ββ goto #12
|
483 |
+
β 10 β $(Expr(:leave, 1))
|
484 |
+
β 11 β err = $(Expr(:the_exception))
|
485 |
+
β β Base.invokelatest(Base.CoreLogging.logging_error, logger, level, _module, group, id, file, line, err, true)
|
486 |
+
β β @_14 = false
|
487 |
+
β ββββ $(Expr(:pop_exception, :(%30)))
|
488 |
+
β 12 β goto #17 if not @_14
|
489 |
+
β 13 β %45 = Base.NamedTuple()
|
490 |
+
β β %46 = Base.merge(%45, kwargs)
|
491 |
+
β β %47 = Base.isempty(%46)
|
492 |
+
β ββββ goto #15 if not %47
|
493 |
+
β 14 β Base.CoreLogging.invokelatest(Base.CoreLogging.handle_message, logger, level, msg, _module, group, id, file, line)
|
494 |
+
β ββββ goto #16
|
495 |
+
β 15 β Core.kwcall(%46, Base.CoreLogging.invokelatest, Base.CoreLogging.handle_message, logger, level, msg, _module, group, id, file, line)
|
496 |
+
β 16 β goto #17
|
497 |
+
β 17 β Base.CoreLogging.nothing
|
498 |
+
β β %54 = true
|
499 |
+
β β %55 = Core.getfield(#self#, :__model__)
|
500 |
+
β β %56 = Base.getproperty(%55, :transcribing)
|
501 |
+
β β Base.setindex!(%56, %54)
|
502 |
+
β β %58 = Core.getfield(#self#, :__model__)
|
503 |
+
β β %59 = Base.getproperty(%58, :url)
|
504 |
+
β β %60 = Base.getindex(%59)
|
505 |
+
β β %61 = Main.App.generate_color_html_text(%60)
|
506 |
+
β β %62 = Core.getfield(#self#, :__model__)
|
507 |
+
β β %63 = Base.getproperty(%62, :transcription)
|
508 |
+
β β Base.setindex!(%63, %61)
|
509 |
+
β β %65 = false
|
510 |
+
β β %66 = Core.getfield(#self#, :__model__)
|
511 |
+
β β %67 = Base.getproperty(%66, :transcribing)
|
512 |
+
β β Base.setindex!(%67, %65)
|
513 |
+
β ββββ return %65
|
514 |
+
β )]
|
515 |
+
β
|
516 |
+
β Type of argument:
|
517 |
+
β Bool
|
518 |
+
β
|
519 |
+
β Value:
|
520 |
+
β true
|
521 |
+
β
|
522 |
+
β Exception:
|
523 |
+
β HTTP.Exceptions.StatusError(500, "GET", "/fastfactsearch?claim=THE%20REALITY%20IS%201%25%20OF%20THE%20SOCIAL&model=factchecks&top_k=5", HTTP.Messages.Response:
|
524 |
+
β """
|
525 |
+
β HTTP/1.1 500 Internal Server Error
|
526 |
+
β Date: Tue, 18 Mar 2025 02:14:55 GMT
|
527 |
+
β Content-Type: application/json; charset=utf-8
|
528 |
+
β Content-Length: 40
|
529 |
+
β Connection: keep-alive
|
530 |
+
β x-proxied-host: http://10.106.18.118
|
531 |
+
β x-proxied-replica: p89z4z9k-oy2gk
|
532 |
+
β x-proxied-path: /fastfactsearch?claim=THE%20REALITY%20IS%201%25%20OF%20THE%20SOCIAL&model=factchecks&top_k=5
|
533 |
+
β link: <https://huggingface.co/spaces/stefanjwojcik/misinfo_detection_app>;rel="canonical"
|
534 |
+
β x-request-id: O6F5QJ
|
535 |
+
β vary: origin, access-control-request-method, access-control-request-headers
|
536 |
+
β access-control-allow-credentials: true
|
537 |
+
β
|
538 |
+
β {"message":"500: Internal Server Error"}""")
|
539 |
+
β
|
540 |
+
β exception = (HTTP.Exceptions.StatusError(500, "GET", "/fastfactsearch?claim=THE%20REALITY%20IS%201%25%20OF%20THE%20SOCIAL&model=factchecks&top_k=5", HTTP.Messages.Response:
|
541 |
+
"""
|
542 |
+
HTTP/1.1 500 Internal Server Error
|
543 |
+
Date: Tue, 18 Mar 2025 02:14:55 GMT
|
544 |
+
Content-Type: application/json; charset=utf-8
|
545 |
+
Content-Length: 40
|
546 |
+
Connection: keep-alive
|
547 |
+
x-proxied-host: http://10.106.18.118
|
548 |
+
x-proxied-replica: p89z4z9k-oy2gk
|
549 |
+
x-proxied-path: /fastfactsearch?claim=THE%20REALITY%20IS%201%25%20OF%20THE%20SOCIAL&model=factchecks&top_k=5
|
550 |
+
link: <https://huggingface.co/spaces/stefanjwojcik/misinfo_detection_app>;rel="canonical"
|
551 |
+
x-request-id: O6F5QJ
|
552 |
+
vary: origin, access-control-request-method, access-control-request-headers
|
553 |
+
access-control-allow-credentials: true
|
554 |
+
|
555 |
+
{"message":"500: Internal Server Error"}"""), Union{Ptr{Nothing}, Base.InterpreterIP}[Ptr{Nothing} @0x0000736653f2187e, Ptr{Nothing} @0x0000736653f22c56, Ptr{Nothing} @0x0000736653f1ce07, Ptr{Nothing} @0x0000736653f1d1ab, Ptr{Nothing} @0x0000736653f1d1f0, Ptr{Nothing} @0x000073669d446f8d, Ptr{Nothing} @0x0000736653f1be0d, Ptr{Nothing} @0x0000736653f1c1a4, Ptr{Nothing} @0x0000736653f1581e, Ptr{Nothing} @0x0000736653f17790, Ptr{Nothing} @0x0000736653f18519, Ptr{Nothing} @0x0000736653f1ad07, Ptr{Nothing} @0x0000736653f1b4ab, Ptr{Nothing} @0x000073669d446f8d, Ptr{Nothing} @0x0000736653f0eb85, Ptr{Nothing} @0x0000736653f0ee78, Ptr{Nothing} @0x0000736653f0eff5, Ptr{Nothing} @0x0000736653f8632e, Ptr{Nothing} @0x0000736653f86555, Ptr{Nothing} @0x0000736653f86d28, Ptr{Nothing} @0x000073669d446f8d, Ptr{Nothing} @0x000073669d457548, Ptr{Nothing} @0x0000736653f001cb, Ptr{Nothing} @0x0000736653f00c29, Ptr{Nothing} @0x0000736653f00c75, Ptr{Nothing} @0x000073669d446f8d, Ptr{Nothing} @0x0000736653f59f90, Ptr{Nothing} @0x0000736653f5a05b, Ptr{Nothing} @0x000073669d446f8d, Ptr{Nothing} @0x0000736653f58673, Ptr{Nothing} @0x0000736653f58932, Ptr{Nothing} @0x000073669d446f8d, Ptr{Nothing} @0x00007366543fbd64, Ptr{Nothing} @0x00007366543fc228, Ptr{Nothing} @0x00007366543fc2da, Ptr{Nothing} @0x00007366543fc319, Ptr{Nothing} @0x000073669d446f8d, Ptr{Nothing} @0x00007366543f1bed, Ptr{Nothing} @0x00007366543f1c42, Ptr{Nothing} @0x000073669d446f8d, Ptr{Nothing} @0x000073669d457548, Ptr{Nothing} @0x00007366458eaf0f, Ptr{Nothing} @0x0000736645967253, Ptr{Nothing} @0x000073665434e2cd, Ptr{Nothing} @0x00007366543520cf, Ptr{Nothing} @0x0000736654352225, Ptr{Nothing} @0x000073669d446f8d, Ptr{Nothing} @0x000073669d457548, Ptr{Nothing} @0x000073665434903b, Ptr{Nothing} @0x000073665434b8af, Ptr{Nothing} @0x000073665434bf02, Ptr{Nothing} @0x000073669d446f8d, Ptr{Nothing} @0x000073669d46a30f])
|
556 |
+
β @ Stipple /home/swojcik/.julia/packages/Stipple/UZmka/src/stipple/mutators.jl:54
|
557 |
+
β Info: 2025-03-17 21:17:50 Server on 127.0.0.1:8000 closing
|
558 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:409
|
559 |
+
β Info: 2025-03-18 19:59:16 Autoreloading
|
560 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
561 |
+
β Info: 2025-03-18 20:00:06 Autoreloading
|
562 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
563 |
+
β Info: 2025-03-18 20:01:14 Autoreloading
|
564 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
565 |
+
β Info: 2025-03-18 20:03:06 Autoreloading
|
566 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
567 |
+
β Info: 2025-03-18 20:16:56 Autoreloading
|
568 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
569 |
+
β Info: 2025-03-18 20:17:53 Autoreloading
|
570 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
log/dev-2025-03-18.log
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
β Info: 2025-03-18 21:21:31 Watching ["/home/swojcik/github/LiveFactCheck"]
|
2 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:19
|
3 |
+
β Info: 2025-03-18 21:21:32 Autoreloading
|
4 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
5 |
+
β Info: 2025-03-18 21:21:34
|
6 |
+
β Web Server starting at http://127.0.0.1:8000
|
7 |
+
β @ Genie.Server /home/swojcik/.julia/packages/Genie/VEhXJ/src/Server.jl:182
|
8 |
+
β Info: 2025-03-18 21:21:34 Listening on: 127.0.0.1:8000, thread id: 1
|
9 |
+
β @ HTTP.Servers /home/swojcik/.julia/packages/HTTP/4AUPl/src/Servers.jl:382
|
10 |
+
β Info: 2025-03-18 21:21:52 Autoreloading
|
11 |
+
β @ GenieAutoReload /home/swojcik/.julia/packages/GenieAutoReload/qpImd/src/GenieAutoReload.jl:22
|
12 |
+
β Info: 2025-03-18 21:22:17 Transcribing https://www.youtube.com/watch?v=qFEaTk--tZo
|
13 |
+
β @ Main.App /home/swojcik/github/LiveFactCheck/app.jl:30
|
myapp.jl
ADDED
@@ -0,0 +1,66 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
module myapp
|
2 |
+
|
3 |
+
using Genie.Renderer.Html
|
4 |
+
|
5 |
+
############## FUNCTIONS ##############
|
6 |
+
function color_text(text_chunks::Vector{String}, color_values::Vector{String})
|
7 |
+
# Ensure text_chunks and color_values have the same length
|
8 |
+
if length(text_chunks) != length(color_values)
|
9 |
+
throw(ArgumentError("Text and color arrays must have the same length"))
|
10 |
+
end
|
11 |
+
|
12 |
+
# Create HTML with colored spans
|
13 |
+
html = "<p>"
|
14 |
+
for (text, color) in zip(text_chunks, color_values)
|
15 |
+
html *= """<span style="color: $color;">$text</span> """
|
16 |
+
end
|
17 |
+
html *= "</p>"
|
18 |
+
|
19 |
+
return html_safe(html) # Use html_safe to mark the HTML as safe to render
|
20 |
+
end
|
21 |
+
|
22 |
+
text_chunks = ["Hello", "world", "this", "is", "Genie.jl!"]
|
23 |
+
color_values = ["#ff0000", "#00ff00", "#0000ff", "#ff00ff", "#00ffff"]
|
24 |
+
|
25 |
+
function mycontroller()
|
26 |
+
html = color_text(text_chunks, color_values)
|
27 |
+
return html
|
28 |
+
end
|
29 |
+
|
30 |
+
using Colors
|
31 |
+
|
32 |
+
function generate_gradient(start_color::Color, end_color::Color, num_steps::Int)
|
33 |
+
gradient = []
|
34 |
+
for i in 0:num_steps-1
|
35 |
+
ratio = i / (num_steps - 1)
|
36 |
+
color = blend(start_color, end_color, ratio)
|
37 |
+
push!(gradient, string(color))
|
38 |
+
end
|
39 |
+
return gradient
|
40 |
+
end
|
41 |
+
|
42 |
+
|
43 |
+
start_color = RGB(1, 0, 0) # Red
|
44 |
+
end_color = RGB(0, 0, 1) # Blue
|
45 |
+
color_values = generate_gradient(start_color, end_color, length(text_chunks))
|
46 |
+
|
47 |
+
mycolortext = color_text(text_chunks, color_values)
|
48 |
+
|
49 |
+
#h1(mycolortext)
|
50 |
+
|
51 |
+
function ui()
|
52 |
+
[
|
53 |
+
h2("Youtube video transcriber")
|
54 |
+
input("url", :url, style="width:500px")
|
55 |
+
# button("Transcribe", @click("process = !process"))
|
56 |
+
button("Transcribe", @click("transcribing = true"), loading=:transcribing)
|
57 |
+
button("Download", @click("download = !download; downloading=true"), loading=:downloading)
|
58 |
+
h4("Transcription:")
|
59 |
+
p("{{transcription}}")
|
60 |
+
]
|
61 |
+
end
|
62 |
+
|
63 |
+
@page("/", "app.jl.html")
|
64 |
+
Server.up()
|
65 |
+
|
66 |
+
end
|