meta_workflows 0.8.8 → 0.8.10

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9b59bf863e285b8d7f6b88f4d7547745bf89776f6e8c6ee1b7a77feee3fbe4d8
4
- data.tar.gz: 1e005cddde9031f92399c506f3ca84f61db4703b6784c2aa5b4e496f218a2ea9
3
+ metadata.gz: 9792925e97535114e20604bd6c65575fdd59ce7546af128acbb9464451441bb2
4
+ data.tar.gz: 1e45fd28cd666352d7396575af106a994d0d3e679c029baa98218c76ca1b111a
5
5
  SHA512:
6
- metadata.gz: 70110e137cc53c66b295d90b8a02485498029f30c62db4d4b7c5eedfe7c7b0273141745a30172ee1d7a0e6bb86aa32abf7446a921514c0b940c6c59d47c03a85
7
- data.tar.gz: d10e39347a37ae1b1747a19bc3baa501fe84698940726238229302f8504a53a5b01365e47c878b3aceb2add999dec9c1d723094b4c8551166526a03d2ca84f7b
6
+ metadata.gz: e3f5303a30b9d62178bb775dfdc52c328871186ecce597bc8db71247a67e1318963cc21c82fbca227b97bc83f6a63ca7af94abb4c9a11a040c5634fff46410b2
7
+ data.tar.gz: fcd9e0397f55cc8e97af4d5bd00833aa6a8b832c06f722c0b9e9060984d430d7fe6372153859414f2e806bfa26803aaadf679b71710f9dc4371e2985b6a7fbf6
@@ -27,6 +27,14 @@ module MetaWorkflows
27
27
  'meta_workflows/redirect'
28
28
  end
29
29
 
30
+ def meta_lexi_chat_right_tray
31
+ 'meta_workflows/lexi_chat_right_tray'
32
+ end
33
+
34
+ def meta_lexi_chat_alpha_tray
35
+ 'meta_workflows/lexi_chat_alpha_tray'
36
+ end
37
+
30
38
  def random_chat_placeholder
31
39
  [
32
40
  'What would you like to improve?',
@@ -0,0 +1,45 @@
1
+ <%# Lexi Chat Alpha Tray (Center Display) %>
2
+ <div class="relative flex flex-col max-w-4xl mx-auto bg-white border border-gray-200 rounded-lg shadow-sm mt-8">
3
+ <%# Header with Lexi logo and action icons %>
4
+ <div class="flex-shrink-0 flex items-center justify-between p-4 border-b border-gray-200">
5
+ <div class="flex items-center space-x-3">
6
+ <%= image_tag("lexi_logo_color.png", alt: "Lexi Logo", class: "h-10 w-auto") %>
7
+ <h2 class="text-lg font-semibold text-gray-900">Lexi Assistant</h2>
8
+ </div>
9
+ <div class="flex items-center gap-2">
10
+ <button type="button" class="p-2 rounded-xl hover:bg-gray-100" aria-label="New Chat" disabled>
11
+ <i class="fa-solid fa-plus text-lg text-gray-600"></i>
12
+ </button>
13
+ <button type="button" class="p-2 rounded-xl hover:bg-gray-100" aria-label="Chat History" disabled>
14
+ <i class="fa-solid fa-clock-rotate-left text-lg text-gray-600"></i>
15
+ </button>
16
+ </div>
17
+ </div>
18
+
19
+ <%# Chat messages area %>
20
+ <div class="flex-1 overflow-y-auto p-4 space-y-4 min-h-[300px] max-h-[500px]">
21
+ <%= render partial: meta_loader, locals: {record: local_assigns[:record], step_progress: ["Generating draft course objectives...", "Talking to the LLM..."] } %>
22
+ </div>
23
+
24
+ <%# Input area and Lexi avatar %>
25
+ <div class="flex-shrink-0 relative bg-gray-50 rounded-b-lg">
26
+ <div class="flex items-end p-4 space-x-4">
27
+ <!-- Lexi avatar on the left -->
28
+ <div class="flex-shrink-0">
29
+ <%= image_tag("lexi-expanded.png", alt: "Lexi Avatar", class: "h-20 w-auto") %>
30
+ </div>
31
+
32
+ <!-- Input area on the right -->
33
+ <div class="flex-1 space-y-2">
34
+ <!-- Recording notice -->
35
+ <p class="text-xs text-purple-600">This chat is being recorded.</p>
36
+
37
+ <!-- Input form -->
38
+ <div class="w-full">
39
+ <% active_execution = local_assigns[:record]&.workflow_executions&.order(created_at: :desc)&.first %>
40
+ <%= render partial: "meta_workflows/response_form_lexi", locals: {record: local_assigns[:record], response_enabled: true, workflow_execution_id: active_execution&.id, chat_id: active_execution&.workflow_steps&.last&.chat&.id } %>
41
+ </div>
42
+ </div>
43
+ </div>
44
+ </div>
45
+ </div>
@@ -0,0 +1,40 @@
1
+ <%# Lexi Chat Tray %>
2
+ <div class="relative flex flex-col h-[100vh] bg-white px-4">
3
+ <%# Header with Lexi logo and action icons %>
4
+ <div class="flex-shrink-0 flex items-center justify-between pb-2 border-b border-gray-200">
5
+ <div class="flex items-center space-x-2">
6
+ <%= image_tag("lexi_logo_color.png", alt: "Lexi Logo", class: "h-14 w-auto") %>
7
+ </div>
8
+ <div class="flex items-center gap-2">
9
+ <button type="button" class="p-2 rounded-xl hover:bg-gray-100" aria-label="New Chat" disabled>
10
+ <i class="fa-solid fa-plus text-xl"></i>
11
+ </button>
12
+ <button type="button" class="p-2 rounded-xl hover:bg-gray-100" aria-label="Chat History" disabled>
13
+ <i class="fa-solid fa-clock-rotate-left text-xl"></i>
14
+ </button>
15
+ </div>
16
+ </div>
17
+
18
+ <%# Chat messages area %>
19
+ <div class="flex-1 overflow-y-auto py-4 space-y-4">
20
+ <%= render partial: meta_loader, locals: {record: local_assigns[:record], step_progress: ["Generating draft course objectives...", "Talking to the LLM..."] } %>
21
+ </div>
22
+
23
+ <%# Lexi avatar and input area pinned to bottom %>
24
+ <div class="flex-1 relative bg-white min-h-[415px]">
25
+ <!-- Bottom section with recording notice and input area -->
26
+ <div class="absolute bottom-15 left-0 right-0 flex flex-col space-y-2 z-10">
27
+ <!-- Recording notice -->
28
+ <p class="text-left text-xs text-purple-600">This chat is being recorded.</p>
29
+
30
+ <!-- Input area -->
31
+ <div class="w-full">
32
+ <% active_execution = local_assigns[:record]&.workflow_executions&.order(created_at: :desc)&.first %>
33
+ <%= render partial: "meta_workflows/response_form_lexi", locals: {record: local_assigns[:record], response_enabled: true, workflow_execution_id: active_execution&.id, chat_id: active_execution&.workflow_steps&.last&.chat&.id } %>
34
+ </div>
35
+ </div>
36
+
37
+ <!-- Lexi image positioned absolutely to the right -->
38
+ <%= image_tag("lexi-expanded.png", alt: "Lexi Avatar", class: "absolute bottom-10 right-0 h-[375px] w-auto pointer-events-none") %>
39
+ </div>
40
+ </div>
@@ -3,7 +3,7 @@
3
3
  module MetaWorkflows
4
4
  MAJOR = 0
5
5
  MINOR = 8
6
- PATCH = 8 # this is automatically incremented by the build process
6
+ PATCH = 10 # this is automatically incremented by the build process
7
7
 
8
8
  VERSION = "#{MetaWorkflows::MAJOR}.#{MetaWorkflows::MINOR}.#{MetaWorkflows::PATCH}".freeze
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: meta_workflows
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.8
4
+ version: 0.8.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Leonid Medovyy
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2025-06-25 00:00:00.000000000 Z
12
+ date: 2025-06-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -150,6 +150,8 @@ files:
150
150
  - app/sidekiq/meta_workflows/tools/meta_workflow_tool.rb
151
151
  - app/views/layouts/meta_workflows/application.html.erb
152
152
  - app/views/layouts/meta_workflows/debug.html.erb
153
+ - app/views/meta_workflows/_lexi_chat_alpha_tray.html.erb
154
+ - app/views/meta_workflows/_lexi_chat_right_tray.html.erb
153
155
  - app/views/meta_workflows/_loader.html.erb
154
156
  - app/views/meta_workflows/_redirect.html.erb
155
157
  - app/views/meta_workflows/_response_form_lexi.html.erb