django-agent-studio 0.3.4__py3-none-any.whl → 0.3.5__py3-none-any.whl

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.
@@ -5,7 +5,7 @@
5
5
  <meta charset="UTF-8">
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
7
  <meta name="csrf-token" content="{{ csrf_token }}">
8
- <title>{% block title %}{{ studio_app_name }}{% endblock %}</title>
8
+ <title>{% block title %}{{ studio_app_name|default:'Agent Studio' }}{% endblock %}</title>
9
9
 
10
10
  <!-- Tailwind CSS -->
11
11
  <script src="https://cdn.tailwindcss.com"></script>
@@ -15,34 +15,34 @@
15
15
  theme: {
16
16
  extend: {
17
17
  colors: {
18
- // Brand Colors (from Django settings)
18
+ // Brand Colors (from Django settings with fallbacks)
19
19
  primary: {
20
20
  "50": "#e6f7fc",
21
21
  "100": "#cceff9",
22
22
  "200": "#99dff3",
23
23
  "300": "#66cfed",
24
- "400": "{{ studio_colors.accent }}",
24
+ "400": "{{ studio_colors.accent|default:'#4fc4f7' }}",
25
25
  "500": "#33b5e7",
26
26
  "600": "#2691b9",
27
27
  "700": "#1a6d8b",
28
28
  "800": "#0d495c",
29
- "900": "{{ studio_colors.primary }}",
30
- "950": "{{ studio_colors.primary_dark }}"
29
+ "900": "{{ studio_colors.primary|default:'#00142E' }}",
30
+ "950": "{{ studio_colors.primary_dark|default:'#000d1f' }}"
31
31
  },
32
32
  navy: {
33
- "DEFAULT": "{{ studio_colors.primary }}",
34
- "light": "{{ studio_colors.primary_light }}",
35
- "dark": "{{ studio_colors.primary_dark }}"
33
+ "DEFAULT": "{{ studio_colors.primary|default:'#00142E' }}",
34
+ "light": "{{ studio_colors.primary_light|default:'#0a2540' }}",
35
+ "dark": "{{ studio_colors.primary_dark|default:'#000d1f' }}"
36
36
  },
37
37
  cyan: {
38
- "DEFAULT": "{{ studio_colors.accent }}",
39
- "light": "{{ studio_colors.accent_light }}",
40
- "dark": "{{ studio_colors.accent_dark }}"
38
+ "DEFAULT": "{{ studio_colors.accent|default:'#4fc4f7' }}",
39
+ "light": "{{ studio_colors.accent_light|default:'#7dd3fc' }}",
40
+ "dark": "{{ studio_colors.accent_dark|default:'#3db8eb' }}"
41
41
  },
42
42
  slate: {
43
- "DEFAULT": "{{ studio_colors.secondary }}",
44
- "light": "{{ studio_colors.secondary_light }}",
45
- "dark": "{{ studio_colors.secondary_dark }}"
43
+ "DEFAULT": "{{ studio_colors.secondary|default:'#253547' }}",
44
+ "light": "{{ studio_colors.secondary_light|default:'#334155' }}",
45
+ "dark": "{{ studio_colors.secondary_dark|default:'#1e293b' }}"
46
46
  }
47
47
  },
48
48
  fontFamily: {
@@ -87,17 +87,17 @@
87
87
  <style>
88
88
  [v-cloak] { display: none; }
89
89
 
90
- /* ===== Brand Color Variables (from Django settings) ===== */
90
+ /* ===== Brand Color Variables (from Django settings with fallbacks) ===== */
91
91
  :root {
92
- --studio-primary: {{ studio_colors.primary }};
93
- --studio-primary-light: {{ studio_colors.primary_light }};
94
- --studio-primary-dark: {{ studio_colors.primary_dark }};
95
- --studio-accent: {{ studio_colors.accent }};
96
- --studio-accent-light: {{ studio_colors.accent_light }};
97
- --studio-accent-dark: {{ studio_colors.accent_dark }};
98
- --studio-secondary: {{ studio_colors.secondary }};
99
- --studio-secondary-light: {{ studio_colors.secondary_light }};
100
- --studio-secondary-dark: {{ studio_colors.secondary_dark }};
92
+ --studio-primary: {{ studio_colors.primary|default:'#00142E' }};
93
+ --studio-primary-light: {{ studio_colors.primary_light|default:'#0a2540' }};
94
+ --studio-primary-dark: {{ studio_colors.primary_dark|default:'#000d1f' }};
95
+ --studio-accent: {{ studio_colors.accent|default:'#4fc4f7' }};
96
+ --studio-accent-light: {{ studio_colors.accent_light|default:'#7dd3fc' }};
97
+ --studio-accent-dark: {{ studio_colors.accent_dark|default:'#3db8eb' }};
98
+ --studio-secondary: {{ studio_colors.secondary|default:'#253547' }};
99
+ --studio-secondary-light: {{ studio_colors.secondary_light|default:'#334155' }};
100
+ --studio-secondary-dark: {{ studio_colors.secondary_dark|default:'#1e293b' }};
101
101
  }
102
102
 
103
103
  /* Override PrimeVue primary color */
@@ -204,10 +204,10 @@
204
204
  <div class="flex items-center space-x-6">
205
205
  <a href="{% url 'agent_studio:home' %}" class="studio-logo">
206
206
  <!-- Logo from settings -->
207
- {{ studio_logo_svg|safe }}
208
- {% if studio_show_app_name %}
207
+ {% if studio_logo_svg %}{{ studio_logo_svg|safe }}{% else %}<svg viewBox="0 0 80 32" fill="none" xmlns="http://www.w3.org/2000/svg" class="h-7"><text x="0" y="24" fill="currentColor" font-family="system-ui, -apple-system, sans-serif" font-size="24" font-weight="700">AS</text></svg>{% endif %}
208
+ {% if studio_show_app_name|default:True %}
209
209
  <div class="flex items-center">
210
- <span class="text-lg font-semibold text-white/90">{{ studio_app_name }}</span>
210
+ <span class="text-lg font-semibold text-white/90">{{ studio_app_name|default:'Agent Studio' }}</span>
211
211
  </div>
212
212
  {% endif %}
213
213
  </a>
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: django-agent-studio
3
- Version: 0.3.4
3
+ Version: 0.3.5
4
4
  Summary: Visual agent builder and management studio for Django - build custom GPTs with a two-pane interface
5
5
  Author: Chris Barry
6
6
  License: Business Source License 1.1
@@ -26,7 +26,7 @@ django_agent_studio/static/django_agent_studio/js/builder.js,sha256=9b5tfVtKLBub
26
26
  django_agent_studio/static/django_agent_studio/js/builder.js.map,sha256=GnCYDH_KCn9sK5ZY_qO7xZrHlK75kDYDagJChrFduy0,1650733
27
27
  django_agent_studio/static/django_agent_studio/js/style.css,sha256=UqHhQqLup8c34l76M5YPQczAZs3FM4Z45-x-KbqVoZ8,1630851
28
28
  django_agent_studio/templates/django_agent_studio/agent_list.html,sha256=khHjecmMkoUngSQISiFq8uVB7qj0W0loSr4KquggSo0,5475
29
- django_agent_studio/templates/django_agent_studio/base.html,sha256=fMg6q7_3WmTRo4LOxWzYXXnpgorEaPbTeaZlJXQjD1o,10022
29
+ django_agent_studio/templates/django_agent_studio/base.html,sha256=c0OKhFtdkhrZkK4K6vsN_yey3a2eOXzLlndPnbfHUnY,10756
30
30
  django_agent_studio/templates/django_agent_studio/builder.html,sha256=sc0V661vbe6iOULqsMOgX6fqgDNtyYRx1NobmqX79Us,1551
31
31
  django_agent_studio/templates/django_agent_studio/collaborators.html,sha256=9r9uN9NdX_DijWdNUsDnIyGCvYdB25GUCyXkqxPDWI0,19641
32
32
  django_agent_studio/templates/django_agent_studio/home.html,sha256=4TSpgQg5fS5qGZHSeuYLF6xs8JoJr0dnEd2DUjHxHE0,8720
@@ -34,8 +34,8 @@ django_agent_studio/templates/django_agent_studio/system_create.html,sha256=0D46
34
34
  django_agent_studio/templates/django_agent_studio/system_list.html,sha256=93gQUcUbgWhPXdo8gyLTdqlceDmII5nOe9wjgW9v1WM,5555
35
35
  django_agent_studio/templates/django_agent_studio/system_test.html,sha256=LJvJqqkdO4ua1GvWUV7M1G-NFhRjBy0eRsTKYY1rJkg,4990
36
36
  django_agent_studio/templates/django_agent_studio/test.html,sha256=T0ETvqH5v7rUoOhuwbuxdZ2zrka89H4i-efNkwK_2Fc,4740
37
- django_agent_studio-0.3.4.dist-info/licenses/LICENSE,sha256=WIh21lpD7d7xCUtLysKK-kbfW4SG7GNPf_k7_Xm_sZg,3851
38
- django_agent_studio-0.3.4.dist-info/METADATA,sha256=1OiOos9Wxx_L-UxHIys4b-reu_hQ4CB1_p95-5hi1Lw,17048
39
- django_agent_studio-0.3.4.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
40
- django_agent_studio-0.3.4.dist-info/top_level.txt,sha256=O1kqZzXPOsJlqnPSAcB2fH5WpJNY8ZNfHEJzX9_SZ0A,20
41
- django_agent_studio-0.3.4.dist-info/RECORD,,
37
+ django_agent_studio-0.3.5.dist-info/licenses/LICENSE,sha256=WIh21lpD7d7xCUtLysKK-kbfW4SG7GNPf_k7_Xm_sZg,3851
38
+ django_agent_studio-0.3.5.dist-info/METADATA,sha256=yFkAq9cSUGRTvuAAp-Hg6nkDJgw3WcojDW5FMYCHY_8,17048
39
+ django_agent_studio-0.3.5.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
40
+ django_agent_studio-0.3.5.dist-info/top_level.txt,sha256=O1kqZzXPOsJlqnPSAcB2fH5WpJNY8ZNfHEJzX9_SZ0A,20
41
+ django_agent_studio-0.3.5.dist-info/RECORD,,