meta_workflows 0.8.12 → 0.8.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/views/meta_workflows/_loader.html.erb +1 -6
- data/lib/meta_workflows/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b053bc6cd9b4e8d67f080ca2165b38a0d9d7d5b26bbf4757782fd0d782f32c52
|
4
|
+
data.tar.gz: 94d9643180afaff189771cb261bde489515d64a4ca9d5fafa7d5a5d4d8ea5683
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5228ba9961936d9a76342a223b5ce1eaf988edbe45cf58465f121a3f8fb8a9b57b3f4af2aaa35d514257e031eb8a4352778bddaaaf8956e1500c0ff33dcf24ed
|
7
|
+
data.tar.gz: 3d1bd6341322c1b2099b4c8164d7e34fc6969aab8268e4becabd41ac1dbbd6271495295d22cae37264dd94c6cdaaa2d94c4a2cc5a209d3585a13858e39b3d25e
|
@@ -3,12 +3,7 @@
|
|
3
3
|
data-controller="loading-phrases"
|
4
4
|
data-loading-phrases-phrases-value="<%= (local_assigns[:step_progress] || ["Processing your request...", "Talking to the LLM..."]).to_json %>">
|
5
5
|
<h2
|
6
|
-
class="text-center font-semibold
|
7
|
-
bg-gradient-to-r
|
8
|
-
bg-[length:300%_100%] bg-right-bottom
|
9
|
-
bg-clip-text [-webkit-text-fill-color:transparent]
|
10
|
-
animate-gradient-shift"
|
11
|
-
style="--tw-gradient-stops: #3182ce, #805ad5, #d53f8c, #3182ce;"
|
6
|
+
class="text-center font-semibold"
|
12
7
|
data-loading-phrases-target="message"
|
13
8
|
>
|
14
9
|
Processing your request...
|
@@ -3,7 +3,7 @@
|
|
3
3
|
module MetaWorkflows
|
4
4
|
MAJOR = 0
|
5
5
|
MINOR = 8
|
6
|
-
PATCH =
|
6
|
+
PATCH = 14 # this is automatically incremented by the build process
|
7
7
|
|
8
8
|
VERSION = "#{MetaWorkflows::MAJOR}.#{MetaWorkflows::MINOR}.#{MetaWorkflows::PATCH}".freeze
|
9
9
|
end
|