forked from CloudGeometry/langbuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpatch.diff
More file actions
1761 lines (1526 loc) · 112 KB
/
Copy pathpatch.diff
File metadata and controls
1761 lines (1526 loc) · 112 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Subject: [PATCH] langbuilder
---
Index: .devcontainer/README.md
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/.devcontainer/README.md b/.devcontainer/README.md
--- a/.devcontainer/README.md (revision 0da7e06131f64dcdd2d17f53a395d392d89eb593)
+++ b/.devcontainer/README.md (date 1756825079968)
@@ -47,8 +47,7 @@
╭───────────────────────────────────────────────────────────────────────╮
│ Welcome to Langbuilder │
│ │
-│ 🌟 GitHub: Star for updates → https://github.com/langbuilder-ai/langbuilder │
-│ 💬 Discord: Join for support → https://discord.com/invite/EqksyE2EX9 │
+│ 🌟 GitHub: Star for updates → https://github.com/cloudgeometry/langbuilder │
│ │
│ We collect anonymous usage data to improve Langbuilder. │
│ To opt out, set: DO_NOT_TRACK=true in your environment. │
@@ -57,4 +56,4 @@
╰───────────────────────────────────────────────────────────────────────╯
```
-At this point you can connect to the service via the port, or if the dialog is gone you can find the "Forwarded Address" on the "Ports" tab (which is next the "Terminal" tab). If there is no port forwarded, you can click the "Forward a Port" button on the "Ports" tab, and forward `7860`.
\ No newline at end of file
+At this point you can connect to the service via the port, or if the dialog is gone you can find the "Forwarded Address" on the "Ports" tab (which is next the "Terminal" tab). If there is no port forwarded, you can click the "Forward a Port" button on the "Ports" tab, and forward `7860`.
Index: src/backend/base/langbuilder/initial_setup/starter_projects/Meeting Summary.json
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/src/backend/base/langbuilder/initial_setup/starter_projects/Meeting Summary.json b/src/backend/base/langbuilder/initial_setup/starter_projects/Meeting Summary.json
--- a/src/backend/base/langbuilder/initial_setup/starter_projects/Meeting Summary.json (revision 0da7e06131f64dcdd2d17f53a395d392d89eb593)
+++ b/src/backend/base/langbuilder/initial_setup/starter_projects/Meeting Summary.json (date 1756825079924)
@@ -2773,7 +2773,7 @@
"data": {
"id": "note-a9dFN",
"node": {
- "description": "# Meeting Summary Generator\n\nThis flow automatically transcribes and summarizes meetings by converting audio recordings into concise summaries using **AssemblyAI** and **OpenAI GPT-4**. \n\n## Prerequisites\n\n- **[AssemblyAI API Key](https://www.assemblyai.com/)**\n- **[OpenAI API Key](https://platform.openai.com/)**\n\n## Quickstart\n\n1. Upload an audio file. Most common audio file formats are [supported](https://github.com/langbuilder-ai/langbuilder/blob/main/src/backend/base/langbuilder/components/assemblyai/assemblyai_start_transcript.py#L27).\n2. To run the summary generator flow, click **Playground**.\n\nThe flow transcribes the audio using **AssemblyAI**.\nThe transcript is formatted for AI processing.\nThe **GPT-4** model extracts key points and insights.\nThe summarized meeting details are displayed in a chat-friendly format.\n\n\n\n",
+ "description": "# Meeting Summary Generator\n\nThis flow automatically transcribes and summarizes meetings by converting audio recordings into concise summaries using **AssemblyAI** and **OpenAI GPT-4**. \n\n## Prerequisites\n\n- **[AssemblyAI API Key](https://www.assemblyai.com/)**\n- **[OpenAI API Key](https://platform.openai.com/)**\n\n## Quickstart\n\n1. Upload an audio file. Most common audio file formats are [supported](https://github.com/cloudgeometry/langbuilder/blob/main/src/backend/base/langbuilder/components/assemblyai/assemblyai_start_transcript.py#L27).\n2. To run the summary generator flow, click **Playground**.\n\nThe flow transcribes the audio using **AssemblyAI**.\nThe transcript is formatted for AI processing.\nThe **GPT-4** model extracts key points and insights.\nThe summarized meeting details are displayed in a chat-friendly format.\n\n\n\n",
"display_name": "",
"documentation": "",
"template": {}
@@ -3599,4 +3599,4 @@
"chatbots",
"content-generation"
]
-}
\ No newline at end of file
+}
Index: docker_example/README.md
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/docker_example/README.md b/docker_example/README.md
--- a/docker_example/README.md (revision 0da7e06131f64dcdd2d17f53a395d392d89eb593)
+++ b/docker_example/README.md (date 1756825079900)
@@ -12,7 +12,7 @@
1. Clone the LangBuilder repository:
```sh
- git clone https://github.com/langbuilder-ai/langbuilder.git
+ git clone https://github.com/cloudgeometry/langbuilder.git
```
2. Navigate to the `docker_example` directory:
Index: docker/build_and_push.Dockerfile
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/docker/build_and_push.Dockerfile b/docker/build_and_push.Dockerfile
--- a/docker/build_and_push.Dockerfile (revision 0da7e06131f64dcdd2d17f53a395d392d89eb593)
+++ b/docker/build_and_push.Dockerfile (date 1756823603613)
@@ -83,8 +83,8 @@
LABEL org.opencontainers.image.title=langbuilder
LABEL org.opencontainers.image.authors=['Langbuilder']
LABEL org.opencontainers.image.licenses=MIT
-LABEL org.opencontainers.image.url=https://github.com/langbuilder-ai/langbuilder
-LABEL org.opencontainers.image.source=https://github.com/langbuilder-ai/langbuilder
+LABEL org.opencontainers.image.url=https://github.com/cloudgeometry/langbuilder
+LABEL org.opencontainers.image.source=https://github.com/cloudgeometry/langbuilder
USER user
WORKDIR /app
Index: docker/build_and_push_with_extras.Dockerfile
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/docker/build_and_push_with_extras.Dockerfile b/docker/build_and_push_with_extras.Dockerfile
--- a/docker/build_and_push_with_extras.Dockerfile (revision 0da7e06131f64dcdd2d17f53a395d392d89eb593)
+++ b/docker/build_and_push_with_extras.Dockerfile (date 1756823603597)
@@ -83,8 +83,8 @@
LABEL org.opencontainers.image.title=langbuilder
LABEL org.opencontainers.image.authors=['Langbuilder']
LABEL org.opencontainers.image.licenses=MIT
-LABEL org.opencontainers.image.url=https://github.com/langbuilder-ai/langbuilder
-LABEL org.opencontainers.image.source=https://github.com/langbuilder-ai/langbuilder
+LABEL org.opencontainers.image.url=https://github.com/cloudgeometry/langbuilder
+LABEL org.opencontainers.image.source=https://github.com/cloudgeometry/langbuilder
USER user
WORKDIR /app
Index: docker/build_and_push_base.Dockerfile
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/docker/build_and_push_base.Dockerfile b/docker/build_and_push_base.Dockerfile
--- a/docker/build_and_push_base.Dockerfile (revision 0da7e06131f64dcdd2d17f53a395d392d89eb593)
+++ b/docker/build_and_push_base.Dockerfile (date 1756823603549)
@@ -88,8 +88,8 @@
LABEL org.opencontainers.image.title=langbuilder
LABEL org.opencontainers.image.authors=['Langbuilder']
LABEL org.opencontainers.image.licenses=MIT
-LABEL org.opencontainers.image.url=https://github.com/langbuilder-ai/langbuilder
-LABEL org.opencontainers.image.source=https://github.com/langbuilder-ai/langbuilder
+LABEL org.opencontainers.image.url=https://github.com/cloudgeometry/langbuilder
+LABEL org.opencontainers.image.source=https://github.com/cloudgeometry/langbuilder
USER user
WORKDIR /app
Index: docker/build_and_push_ep.Dockerfile
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/docker/build_and_push_ep.Dockerfile b/docker/build_and_push_ep.Dockerfile
--- a/docker/build_and_push_ep.Dockerfile (revision 0da7e06131f64dcdd2d17f53a395d392d89eb593)
+++ b/docker/build_and_push_ep.Dockerfile (date 1756823603557)
@@ -92,8 +92,8 @@
LABEL org.opencontainers.image.title=langbuilder
LABEL org.opencontainers.image.authors=['Langbuilder']
LABEL org.opencontainers.image.licenses=MIT
-LABEL org.opencontainers.image.url=https://github.com/langbuilder-ai/langbuilder
-LABEL org.opencontainers.image.source=https://github.com/langbuilder-ai/langbuilder
+LABEL org.opencontainers.image.url=https://github.com/cloudgeometry/langbuilder
+LABEL org.opencontainers.image.source=https://github.com/cloudgeometry/langbuilder
WORKDIR /app
Index: docker/frontend/build_and_push_frontend.Dockerfile
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/docker/frontend/build_and_push_frontend.Dockerfile b/docker/frontend/build_and_push_frontend.Dockerfile
--- a/docker/frontend/build_and_push_frontend.Dockerfile (revision 0da7e06131f64dcdd2d17f53a395d392d89eb593)
+++ b/docker/frontend/build_and_push_frontend.Dockerfile (date 1756823603714)
@@ -19,8 +19,8 @@
LABEL org.opencontainers.image.title=langbuilder-frontend
LABEL org.opencontainers.image.authors=['Langbuilder']
LABEL org.opencontainers.image.licenses=MIT
-LABEL org.opencontainers.image.url=https://github.com/langbuilder-ai/langbuilder
-LABEL org.opencontainers.image.source=https://github.com/langbuilder-ai/langbuilder
+LABEL org.opencontainers.image.url=https://github.com/cloudgeometry/langbuilder
+LABEL org.opencontainers.image.source=https://github.com/cloudgeometry/langbuilder
COPY --from=builder-base --chown=nginx /frontend/build /usr/share/nginx/html
COPY --chown=nginx ./docker/frontend/start-nginx.sh /start-nginx.sh
Index: pyproject.toml
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/pyproject.toml b/pyproject.toml
--- a/pyproject.toml (revision 0da7e06131f64dcdd2d17f53a395d392d89eb593)
+++ b/pyproject.toml (date 1756823443940)
@@ -189,7 +189,7 @@
packages = ["src/backend/langbuilder"]
[project.urls]
-Repository = "https://github.com/langbuilder-ai/langbuilder"
+Repository = "https://github.com/cloudgeometry/langbuilder"
Documentation = "https://docs.langbuilder.org"
[project.optional-dependencies]
Index: DEVELOPMENT.md
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md
--- a/DEVELOPMENT.md (revision 0da7e06131f64dcdd2d17f53a395d392d89eb593)
+++ b/DEVELOPMENT.md (date 1756825776855)
@@ -11,7 +11,7 @@
You will push changes to a fork of the Langbuilder repository, and from there create a Pull Request into the project repository.
-Fork the [Langbuilder GitHub repository](https://github.com/langbuilder-ai/langbuilder/fork), and follow the instructions to create a new fork.
+Fork the [Langbuilder GitHub repository](https://github.com/cloudgeometry/langbuilder/fork), and follow the instructions to create a new fork.
On your new fork, click the "<> Code" button to get a URL to [clone](https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository) using your preferred method, and clone the repository; for example using `https`:
@@ -23,7 +23,7 @@
```bash
cd langbuilder
-git remote add upstream https://github.com/langbuilder-ai/langbuilder.git
+git remote add upstream https://github.com/cloudgeometry/langbuilder.git
git remote set-url --push upstream no_push
```
@@ -71,8 +71,7 @@
╭───────────────────────────────────────────────────────────────────────╮
│ Welcome to Langbuilder │
│ │
-│ 🌟 GitHub: Star for updates → https://github.com/langbuilder-ai/langbuilder │
-│ 💬 Discord: Join for support → https://discord.com/invite/EqksyE2EX9 │
+│ 🌟 GitHub: Star for updates → https://github.com/cloudgeometry/langbuilder │
│ │
│ We collect anonymous usage data to improve Langbuilder. │
│ To opt out, set: DO_NOT_TRACK=true in your environment. │
@@ -236,4 +235,4 @@
* Files in `src/backend/base/langbuilder/initial_setup/starter_projects` modify after `langbuilder run`; these are formatting changes. Feel free to commit (or ignore) them.
* `uv.lock` and `src/frontend/package-lock.json` files can be modified by `make` targets; changes should not be committed by individual contributors.
* You can exclude these from consideration in git: `git update-index --assume-unchanged uv.lock src/frontend/package-lock.json`
- * You can re-include these from consideration in git: `git update-index --no-assume-unchanged uv.lock src/frontend/package-lock.json`
\ No newline at end of file
+ * You can re-include these from consideration in git: `git update-index --no-assume-unchanged uv.lock src/frontend/package-lock.json`
Index: CONTRIBUTING.md
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
--- a/CONTRIBUTING.md (revision 0da7e06131f64dcdd2d17f53a395d392d89eb593)
+++ b/CONTRIBUTING.md (date 1756823603621)
@@ -4,7 +4,7 @@
## How to Contribute
-1. Fork the [Langbuilder GitHub repository](https://github.com/langbuilder-ai/langbuilder).
+1. Fork the [Langbuilder GitHub repository](https://github.com/cloudgeometry/langbuilder).
2. Create a new branch for your changes.
3. Submit a pull request to the `main` branch with a clear title and description.
Reference any issues fixed, for example `Fixes #1234`.
@@ -27,4 +27,4 @@
- [Contribute Tests](./docs/docs/Contributing/contributing-component-tests.mdx)
- [Contribute Templates](./docs/docs/Contributing/contributing-templates.mdx)
-Thank you for helping improve Langbuilder!
\ No newline at end of file
+Thank you for helping improve Langbuilder!
Index: .github/workflows/docker-build.yml
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml
--- a/.github/workflows/docker-build.yml (revision 0da7e06131f64dcdd2d17f53a395d392d89eb593)
+++ b/.github/workflows/docker-build.yml (date 1756825079936)
@@ -154,28 +154,28 @@
if [[ "${{ inputs.release_type }}" == "base" || "${{ inputs.release_type }}" == "nightly-base" ]]; then
# LANGBUILDER-BASE RELEASE
echo "docker_tags=nickchasecg/langbuilder${nightly_suffix}:base-${{ needs.get-version.outputs.version }},nickchasecg/langbuilder${nightly_suffix}:base-latest" >> $GITHUB_OUTPUT
- echo "ghcr_tags=ghcr.io/langbuilder-ai/langbuilder${nightly_suffix}:base-${{ needs.get-version.outputs.version }},ghcr.io/langbuilder-ai/langbuilder${nightly_suffix}:base-latest" >> $GITHUB_OUTPUT
+ echo "ghcr_tags=ghcr.io/cloudgeometry/langbuilder${nightly_suffix}:base-${{ needs.get-version.outputs.version }},ghcr.io/cloudgeometry/langbuilder${nightly_suffix}:base-latest" >> $GITHUB_OUTPUT
echo "file=./docker/build_and_push_base.Dockerfile" >> $GITHUB_OUTPUT
else
if [[ "${{ inputs.pre_release }}" == "true" ]]; then
# LANGBUILDER-MAIN PRE-RELEASE
echo "docker_tags=nickchasecg/langbuilder${nightly_suffix}:${{ needs.get-version.outputs.version }}" >> $GITHUB_OUTPUT
- echo "ghcr_tags=ghcr.io/langbuilder-ai/langbuilder${nightly_suffix}:${{ needs.get-version.outputs.version }}" >> $GITHUB_OUTPUT
+ echo "ghcr_tags=ghcr.io/cloudgeometry/langbuilder${nightly_suffix}:${{ needs.get-version.outputs.version }}" >> $GITHUB_OUTPUT
echo "file=./docker/build_and_push.Dockerfile" >> $GITHUB_OUTPUT
elif [[ "${{ inputs.release_type }}" == "main-ep" ]]; then
# LANGBUILDER-MAIN (ENTRYPOINT) RELEASE
echo "docker_tags=nickchasecg/langbuilder-ep${nightly_suffix}:${{ needs.get-version.outputs.version }},nickchasecg/langbuilder-ep${nightly_suffix}:latest" >> $GITHUB_OUTPUT
- echo "ghcr_tags=ghcr.io/langbuilder-ai/langbuilder-ep${nightly_suffix}:${{ needs.get-version.outputs.version }},ghcr.io/langbuilder-ai/langbuilder-ep${nightly_suffix}:latest" >> $GITHUB_OUTPUT
+ echo "ghcr_tags=ghcr.io/cloudgeometry/langbuilder-ep${nightly_suffix}:${{ needs.get-version.outputs.version }},ghcr.io/cloudgeometry/langbuilder-ep${nightly_suffix}:latest" >> $GITHUB_OUTPUT
echo "file=./docker/build_and_push_ep.Dockerfile" >> $GITHUB_OUTPUT
elif [[ "${{ inputs.release_type }}" == "main" || "${{ inputs.release_type }}" == "nightly-main" ]]; then
# LANGBUILDER-MAIN RELEASE
echo "docker_tags=nickchasecg/langbuilder${nightly_suffix}:${{ needs.get-version.outputs.version }},nickchasecg/langbuilder${nightly_suffix}:latest" >> $GITHUB_OUTPUT
- echo "ghcr_tags=ghcr.io/langbuilder-ai/langbuilder${nightly_suffix}:${{ needs.get-version.outputs.version }},ghcr.io/langbuilder-ai/langbuilder${nightly_suffix}:latest" >> $GITHUB_OUTPUT
+ echo "ghcr_tags=ghcr.io/cloudgeometry/langbuilder${nightly_suffix}:${{ needs.get-version.outputs.version }},ghcr.io/cloudgeometry/langbuilder${nightly_suffix}:latest" >> $GITHUB_OUTPUT
echo "file=./docker/build_and_push.Dockerfile" >> $GITHUB_OUTPUT
elif [[ "${{ inputs.release_type }}" == "main-all" || "${{ inputs.release_type }}" == "nightly-main-all" ]]; then
# LANGBUILDER-MAIN (ALL OPTIONAL DEPS) RELEASE
echo "docker_tags=nickchasecg/langbuilder-all${nightly_suffix}:${{ needs.get-version.outputs.version }},nickchasecg/langbuilder-all${nightly_suffix}:latest" >> $GITHUB_OUTPUT
- echo "ghcr_tags=ghcr.io/langbuilder-ai/langbuilder-all${nightly_suffix}:${{ needs.get-version.outputs.version }},ghcr.io/langbuilder-ai/langbuilder-all${nightly_suffix}:latest" >> $GITHUB_OUTPUT
+ echo "ghcr_tags=ghcr.io/cloudgeometry/langbuilder-all${nightly_suffix}:${{ needs.get-version.outputs.version }},ghcr.io/cloudgeometry/langbuilder-all${nightly_suffix}:latest" >> $GITHUB_OUTPUT
echo "file=./docker/build_and_push_with_extras.Dockerfile" >> $GITHUB_OUTPUT
else
echo "Invalid release type. Exiting the workflow."
@@ -274,12 +274,12 @@
langbuilder_image: nickchasecg/langbuilder:${{ needs.get-version.outputs.version }}
- component: ghcr-backend
dockerfile: ./docker/build_and_push_backend.Dockerfile
- tags: ghcr.io/langbuilder-ai/langbuilder-backend:${{ needs.get-version.outputs.version }},ghcr.io/langbuilder-ai/langbuilder-backend:latest
- langbuilder_image: ghcr.io/langbuilder-ai/langbuilder:${{ needs.get-version.outputs.version }}
+ tags: ghcr.io/cloudgeometry/langbuilder-backend:${{ needs.get-version.outputs.version }},ghcr.io/cloudgeometry/langbuilder-backend:latest
+ langbuilder_image: ghcr.io/cloudgeometry/langbuilder:${{ needs.get-version.outputs.version }}
- component: ghcr-frontend
dockerfile: ./docker/frontend/build_and_push_frontend.Dockerfile
- tags: ghcr.io/langbuilder-ai/langbuilder-frontend:${{ needs.get-version.outputs.version }},ghcr.io/langbuilder-ai/langbuilder-frontend:latest
- langbuilder_image: ghcr.io/langbuilder-ai/langbuilder:${{ needs.get-version.outputs.version }}
+ tags: ghcr.io/cloudgeometry/langbuilder-frontend:${{ needs.get-version.outputs.version }},ghcr.io/cloudgeometry/langbuilder-frontend:latest
+ langbuilder_image: ghcr.io/cloudgeometry/langbuilder:${{ needs.get-version.outputs.version }}
steps:
- name: Check out the code at a specific ref
uses: actions/checkout@v4
Index: src/backend/base/langbuilder/initial_setup/starter_projects/Custom Component Generator.json
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/src/backend/base/langbuilder/initial_setup/starter_projects/Custom Component Generator.json b/src/backend/base/langbuilder/initial_setup/starter_projects/Custom Component Generator.json
--- a/src/backend/base/langbuilder/initial_setup/starter_projects/Custom Component Generator.json (revision 0da7e06131f64dcdd2d17f53a395d392d89eb593)
+++ b/src/backend/base/langbuilder/initial_setup/starter_projects/Custom Component Generator.json (date 1756825079912)
@@ -1129,7 +1129,7 @@
"trace_as_metadata": true,
"type": "str",
"value": [
- "https://raw.githubusercontent.com/langbuilder-ai/langbuilder/refs/heads/main/src/backend/base/langbuilder/custom/custom_component/component.py"
+ "https://raw.githubusercontent.com/cloudgeometry/langbuilder/refs/heads/main/src/backend/base/langbuilder/custom/custom_component/component.py"
]
},
"use_async": {
@@ -1485,13 +1485,13 @@
"trace_as_metadata": true,
"type": "str",
"value": [
- "https://github.com/langbuilder-ai/langbuilder/blob/main/src/backend/base/langbuilder/components/agents/agent.py",
- "https://github.com/langbuilder-ai/langbuilder/blob/main/src/backend/base/langbuilder/components/helpers/structured_output.py",
- "https://raw.githubusercontent.com/langbuilder-ai/langbuilder/refs/heads/main/src/backend/base/langbuilder/components/tools/calculator.py",
- "https://raw.githubusercontent.com/langbuilder-ai/langbuilder/refs/heads/main/src/backend/base/langbuilder/components/tools/tavily_search.py",
- "https://raw.githubusercontent.com/langbuilder-ai/langbuilder/refs/heads/main/src/backend/base/langbuilder/components/models/ollama.py",
- "https://raw.githubusercontent.com/langbuilder-ai/langbuilder/refs/heads/main/src/backend/base/langbuilder/components/logic/conditional_router.py",
- "https://raw.githubusercontent.com/langbuilder-ai/langbuilder/refs/heads/main/src/backend/base/langbuilder/components/data/file.py"
+ "https://github.com/cloudgeometry/langbuilder/blob/main/src/backend/base/langbuilder/components/agents/agent.py",
+ "https://github.com/cloudgeometry/langbuilder/blob/main/src/backend/base/langbuilder/components/helpers/structured_output.py",
+ "https://raw.githubusercontent.com/cloudgeometry/langbuilder/refs/heads/main/src/backend/base/langbuilder/components/tools/calculator.py",
+ "https://raw.githubusercontent.com/cloudgeometry/langbuilder/refs/heads/main/src/backend/base/langbuilder/components/tools/tavily_search.py",
+ "https://raw.githubusercontent.com/cloudgeometry/langbuilder/refs/heads/main/src/backend/base/langbuilder/components/models/ollama.py",
+ "https://raw.githubusercontent.com/cloudgeometry/langbuilder/refs/heads/main/src/backend/base/langbuilder/components/logic/conditional_router.py",
+ "https://raw.githubusercontent.com/cloudgeometry/langbuilder/refs/heads/main/src/backend/base/langbuilder/components/data/file.py"
]
},
"use_async": {
@@ -1847,7 +1847,7 @@
"trace_as_metadata": true,
"type": "str",
"value": [
- "https://raw.githubusercontent.com/langbuilder-ai/langbuilder/refs/heads/main/src/backend/base/langbuilder/components/custom_component/custom_component.py"
+ "https://raw.githubusercontent.com/cloudgeometry/langbuilder/refs/heads/main/src/backend/base/langbuilder/components/custom_component/custom_component.py"
]
},
"use_async": {
@@ -2833,4 +2833,4 @@
"coding",
"web-scraping"
]
-}
\ No newline at end of file
+}
Index: src/frontend/src/controllers/API/api.tsx
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/src/frontend/src/controllers/API/api.tsx b/src/frontend/src/controllers/API/api.tsx
--- a/src/frontend/src/controllers/API/api.tsx (revision 0da7e06131f64dcdd2d17f53a395d392d89eb593)
+++ b/src/frontend/src/controllers/API/api.tsx (date 1756825080039)
@@ -107,9 +107,9 @@
const isAuthorizedURL = (url) => {
const authorizedDomains = [
- "https://raw.githubusercontent.com/langbuilder-ai/langbuilder_examples/main/examples",
- "https://api.github.com/repos/langbuilder-ai/langbuilder_examples/contents/examples",
- "https://api.github.com/repos/langbuilder-ai/langbuilder",
+ "https://raw.githubusercontent.com/cloudgeometry/langbuilder_examples/main/examples",
+ "https://api.github.com/repos/cloudgeometry/langbuilder_examples/contents/examples",
+ "https://api.github.com/repos/cloudgeometry/langbuilder",
"auto_login",
];
Index: docs/docs/Deployment/deployment-prod-best-practices.mdx
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/docs/docs/Deployment/deployment-prod-best-practices.mdx b/docs/docs/Deployment/deployment-prod-best-practices.mdx
--- a/docs/docs/Deployment/deployment-prod-best-practices.mdx (revision 0da7e06131f64dcdd2d17f53a395d392d89eb593)
+++ b/docs/docs/Deployment/deployment-prod-best-practices.mdx (date 1756823603694)
@@ -118,4 +118,4 @@
## See also
* [Deploy the Langbuilder production environment on Kubernetes](/deployment-kubernetes-prod)
-* [Langbuilder Helm Charts repository](https://github.com/langbuilder-ai/langbuilder-helm-charts)
\ No newline at end of file
+* [Langbuilder Helm Charts repository](https://github.com/cloudgeometry/langbuilder-helm-charts)
Index: src/frontend/src/constants/constants.ts
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/src/frontend/src/constants/constants.ts b/src/frontend/src/constants/constants.ts
--- a/src/frontend/src/constants/constants.ts (revision 0da7e06131f64dcdd2d17f53a395d392d89eb593)
+++ b/src/frontend/src/constants/constants.ts (date 1756825080031)
@@ -1084,7 +1084,7 @@
export const DEFAULT_TIMEOUT = 30000;
export const DEFAULT_FILE_PICKER_TIMEOUT = 60000;
export const DISCORD_URL = "https://discord.com/invite/EqksyE2EX9";
-export const GITHUB_URL = "https://github.com/langbuilder-ai/langbuilder";
+export const GITHUB_URL = "https://github.com/cloudgeometry/langbuilder";
export const TWITTER_URL = "https://x.com/langbuilder_ai";
export const DOCS_URL = "https://docs.langbuilder.org";
export const DATASTAX_DOCS_URL =
Index: render.yaml
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/render.yaml b/render.yaml
--- a/render.yaml (revision 0da7e06131f64dcdd2d17f53a395d392d89eb593)
+++ b/render.yaml (date 1756823603706)
@@ -4,7 +4,7 @@
name: langbuilder
runtime: docker
dockerfilePath: ./docker/render.Dockerfile
- repo: https://github.com/langbuilder-ai/langbuilder
+ repo: https://github.com/cloudgeometry/langbuilder
branch: main
plan: standard
healthCheckPath: /health_check
Index: docs/docs/Deployment/deployment-architecture.mdx
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/docs/docs/Deployment/deployment-architecture.mdx b/docs/docs/Deployment/deployment-architecture.mdx
--- a/docs/docs/Deployment/deployment-architecture.mdx (revision 0da7e06131f64dcdd2d17f53a395d392d89eb593)
+++ b/docs/docs/Deployment/deployment-architecture.mdx (date 1756823603686)
@@ -10,7 +10,7 @@
* **Langbuilder IDE (development)**: Deploy both the Langbuilder visual editor (frontend) and API (backend). Typically, this is used for development environments where developers use the visual editor to create and manage flows before packaging and serving them through a production runtime deployment.
- The Langbuilder repository's example [`docker-compose.yml`](https://github.com/langbuilder-ai/langbuilder/blob/main/docker_example/docker-compose.yml) file builds a Langbuilder IDE image.
+ The Langbuilder repository's example [`docker-compose.yml`](https://github.com/cloudgeometry/langbuilder/blob/main/docker_example/docker-compose.yml) file builds a Langbuilder IDE image.
For information about IDE deployments on Kubernetes, see [Deploy the Langbuilder development environment on Kubernetes](/deployment-kubernetes-dev).
@@ -36,7 +36,7 @@
* **Security**: Kubernetes provides security features, such as role-based access control and network isolation, to protect the Langbuilder service and its data.
* **Portability**: Kubernetes is a portable platform, which means that you can deploy the Langbuilder service to any Kubernetes cluster, on-premises or in the cloud.
- Langbuilder can be deployed on cloud platforms like AWS EKS, Google GKE, or Azure AKS. For more information, see the [Langbuilder Helm charts repository](https://github.com/langbuilder-ai/langbuilder-helm-charts).
+ Langbuilder can be deployed on cloud platforms like AWS EKS, Google GKE, or Azure AKS. For more information, see the [Langbuilder Helm charts repository](https://github.com/cloudgeometry/langbuilder-helm-charts).
## Langbuilder deployment
@@ -72,4 +72,4 @@
* [Best practices for Langbuilder on Kubernetes](/deployment-prod-best-practices)
* [Deploy the Langbuilder development environment on Kubernetes](/deployment-kubernetes-dev)
-* [Deploy the Langbuilder production environment on Kubernetes](/deployment-kubernetes-prod)
\ No newline at end of file
+* [Deploy the Langbuilder production environment on Kubernetes](/deployment-kubernetes-prod)
Index: docs/src/plugins/segment/data-attribute-tracking.js
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/docs/src/plugins/segment/data-attribute-tracking.js b/docs/src/plugins/segment/data-attribute-tracking.js
--- a/docs/src/plugins/segment/data-attribute-tracking.js (revision 0da7e06131f64dcdd2d17f53a395d392d89eb593)
+++ b/docs/src/plugins/segment/data-attribute-tracking.js (date 1756825080019)
@@ -10,7 +10,7 @@
*
* Example in navbar config:
* {
- * href: "https://github.com/langbuilder-ai/langbuilder",
+ * href: "https://github.com/cloudgeometry/langbuilder",
* 'data-event': 'GitHub Link Clicked',
* 'data-source': 'navbar',
* 'data-category': 'social'
@@ -20,7 +20,7 @@
* window.analytics.track("GitHub Link Clicked", {
* source: "navbar",
* category: "social",
- * url: "https://github.com/langbuilder-ai/langbuilder",
+ * url: "https://github.com/cloudgeometry/langbuilder",
* page: "/current-page"
* })
*/
Index: src/backend/base/langbuilder/__main__.py
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/src/backend/base/langbuilder/__main__.py b/src/backend/base/langbuilder/__main__.py
--- a/src/backend/base/langbuilder/__main__.py (revision 0da7e06131f64dcdd2d17f53a395d392d89eb593)
+++ b/src/backend/base/langbuilder/__main__.py (date 1756825776811)
@@ -587,8 +587,7 @@
status_icon = "🟢"
info_text = (
- f"{github_icon} GitHub: Star for updates {arrow} https://github.com/langbuilder-ai/langbuilder\n"
- f"{discord_icon} Discord: Join for support {arrow} https://discord.com/invite/EqksyE2EX9"
+ f"{github_icon} GitHub: Star for updates {arrow} https://github.com/cloudgeometry/langbuilder"
)
telemetry_text = (
(
@@ -614,7 +613,7 @@
# Fallback to a simpler banner without emojis for Windows systems with encoding issues
fallback_message = (
f"Welcome to {package_name}\n\n"
- "* GitHub: https://github.com/langbuilder-ai/langbuilder\n"
+ "* GitHub: https://github.com/cloudgeometry/langbuilder\n"
"# Discord: https://discord.com/invite/EqksyE2EX9\n\n"
f"{telemetry_text}\n\n"
f"[OK] Open Langbuilder -> {protocol}://{access_host}:{port}"
@@ -625,7 +624,7 @@
except UnicodeEncodeError:
# Last resort: use logger instead of print
logger.info(f"Welcome to {package_name}")
- logger.info("GitHub: https://github.com/langbuilder-ai/langbuilder")
+ logger.info("GitHub: https://github.com/cloudgeometry/langbuilder")
logger.info("Discord: https://discord.com/invite/EqksyE2EX9")
logger.info(f"Open Langbuilder: {protocol}://{access_host}:{port}")
Index: docs/docs/Deployment/deployment-kubernetes-dev.mdx
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/docs/docs/Deployment/deployment-kubernetes-dev.mdx b/docs/docs/Deployment/deployment-kubernetes-dev.mdx
--- a/docs/docs/Deployment/deployment-kubernetes-dev.mdx (revision 0da7e06131f64dcdd2d17f53a395d392d89eb593)
+++ b/docs/docs/Deployment/deployment-kubernetes-dev.mdx (date 1756823603654)
@@ -6,7 +6,7 @@
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
-The [Langbuilder integrated development environment (IDE) Helm chart](https://github.com/langbuilder-ai/langbuilder-helm-charts/tree/main/charts/langbuilder-ide) is designed to provide a complete environment for developers to create, test, and debug their flows. It includes both the Langbuilder API and visual editor.
+The [Langbuilder integrated development environment (IDE) Helm chart](https://github.com/cloudgeometry/langbuilder-helm-charts/tree/main/charts/langbuilder-ide) is designed to provide a complete environment for developers to create, test, and debug their flows. It includes both the Langbuilder API and visual editor.
## Prerequisites
@@ -74,7 +74,7 @@
## Modify your Langbuilder IDE deployment
-You can modify the Langbuilder IDE Helm chart's [`values.yaml`](https://github.com/langbuilder-ai/langbuilder-helm-charts/blob/main/charts/langbuilder-ide/values.yaml) file to customize your deployment.
+You can modify the Langbuilder IDE Helm chart's [`values.yaml`](https://github.com/cloudgeometry/langbuilder-helm-charts/blob/main/charts/langbuilder-ide/values.yaml) file to customize your deployment.
The following sections describe some common modifications.
If you need to set secrets, Kubernetes secrets are recommended.
@@ -183,4 +183,4 @@
* [Best practices for Langbuilder on Kubernetes](/deployment-prod-best-practices)
* [Deploy the Langbuilder production environment on Kubernetes](/deployment-kubernetes-prod)
-* [Langbuilder Helm Charts repository](https://github.com/langbuilder-ai/langbuilder-helm-charts)
\ No newline at end of file
+* [Langbuilder Helm Charts repository](https://github.com/cloudgeometry/langbuilder-helm-charts)
Index: src/backend/tests/unit/test_initial_setup.py
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/src/backend/tests/unit/test_initial_setup.py b/src/backend/tests/unit/test_initial_setup.py
--- a/src/backend/tests/unit/test_initial_setup.py (revision 0da7e06131f64dcdd2d17f53a395d392d89eb593)
+++ b/src/backend/tests/unit/test_initial_setup.py (date 1756825080003)
@@ -168,48 +168,48 @@
("url", "expected"),
[
(
- "https://github.com/langbuilder-ai/langbuilder-bundles",
- "https://github.com/langbuilder-ai/langbuilder-bundles/archive/refs/heads/main.zip",
+ "https://github.com/cloudgeometry/langbuilder-bundles",
+ "https://github.com/cloudgeometry/langbuilder-bundles/archive/refs/heads/main.zip",
),
(
- "https://github.com/langbuilder-ai/langbuilder-bundles/",
- "https://github.com/langbuilder-ai/langbuilder-bundles/archive/refs/heads/main.zip",
+ "https://github.com/cloudgeometry/langbuilder-bundles/",
+ "https://github.com/cloudgeometry/langbuilder-bundles/archive/refs/heads/main.zip",
),
(
- "https://github.com/langbuilder-ai/langbuilder-bundles.git",
- "https://github.com/langbuilder-ai/langbuilder-bundles/archive/refs/heads/main.zip",
+ "https://github.com/cloudgeometry/langbuilder-bundles.git",
+ "https://github.com/cloudgeometry/langbuilder-bundles/archive/refs/heads/main.zip",
),
(
- "https://github.com/langbuilder-ai/langbuilder-bundles/tree/some.branch-0_1",
- "https://github.com/langbuilder-ai/langbuilder-bundles/archive/refs/heads/some.branch-0_1.zip",
+ "https://github.com/cloudgeometry/langbuilder-bundles/tree/some.branch-0_1",
+ "https://github.com/cloudgeometry/langbuilder-bundles/archive/refs/heads/some.branch-0_1.zip",
),
(
- "https://github.com/langbuilder-ai/langbuilder-bundles/tree/some/branch",
- "https://github.com/langbuilder-ai/langbuilder-bundles/archive/refs/heads/some/branch.zip",
+ "https://github.com/cloudgeometry/langbuilder-bundles/tree/some/branch",
+ "https://github.com/cloudgeometry/langbuilder-bundles/archive/refs/heads/some/branch.zip",
),
(
- "https://github.com/langbuilder-ai/langbuilder-bundles/tree/some/branch/",
- "https://github.com/langbuilder-ai/langbuilder-bundles/archive/refs/heads/some/branch.zip",
+ "https://github.com/cloudgeometry/langbuilder-bundles/tree/some/branch/",
+ "https://github.com/cloudgeometry/langbuilder-bundles/archive/refs/heads/some/branch.zip",
),
(
- "https://github.com/langbuilder-ai/langbuilder-bundles/releases/tag/v1.0.0-0_1",
- "https://github.com/langbuilder-ai/langbuilder-bundles/archive/refs/tags/v1.0.0-0_1.zip",
+ "https://github.com/cloudgeometry/langbuilder-bundles/releases/tag/v1.0.0-0_1",
+ "https://github.com/cloudgeometry/langbuilder-bundles/archive/refs/tags/v1.0.0-0_1.zip",
),
(
- "https://github.com/langbuilder-ai/langbuilder-bundles/releases/tag/foo/v1.0.0",
- "https://github.com/langbuilder-ai/langbuilder-bundles/archive/refs/tags/foo/v1.0.0.zip",
+ "https://github.com/cloudgeometry/langbuilder-bundles/releases/tag/foo/v1.0.0",
+ "https://github.com/cloudgeometry/langbuilder-bundles/archive/refs/tags/foo/v1.0.0.zip",
),
(
- "https://github.com/langbuilder-ai/langbuilder-bundles/releases/tag/foo/v1.0.0/",
- "https://github.com/langbuilder-ai/langbuilder-bundles/archive/refs/tags/foo/v1.0.0.zip",
+ "https://github.com/cloudgeometry/langbuilder-bundles/releases/tag/foo/v1.0.0/",
+ "https://github.com/cloudgeometry/langbuilder-bundles/archive/refs/tags/foo/v1.0.0.zip",
),
(
- "https://github.com/langbuilder-ai/langbuilder-bundles/commit/68428ce16729a385fe1bcc0f1ec91fd5f5f420b9",
- "https://github.com/langbuilder-ai/langbuilder-bundles/archive/68428ce16729a385fe1bcc0f1ec91fd5f5f420b9.zip",
+ "https://github.com/cloudgeometry/langbuilder-bundles/commit/68428ce16729a385fe1bcc0f1ec91fd5f5f420b9",
+ "https://github.com/cloudgeometry/langbuilder-bundles/archive/68428ce16729a385fe1bcc0f1ec91fd5f5f420b9.zip",
),
(
- "https://github.com/langbuilder-ai/langbuilder-bundles/commit/68428ce16729a385fe1bcc0f1ec91fd5f5f420b9/",
- "https://github.com/langbuilder-ai/langbuilder-bundles/archive/68428ce16729a385fe1bcc0f1ec91fd5f5f420b9.zip",
+ "https://github.com/cloudgeometry/langbuilder-bundles/commit/68428ce16729a385fe1bcc0f1ec91fd5f5f420b9/",
+ "https://github.com/cloudgeometry/langbuilder-bundles/archive/68428ce16729a385fe1bcc0f1ec91fd5f5f420b9.zip",
),
("https://example.com/myzip.zip", "https://example.com/myzip.zip"),
],
@@ -235,7 +235,7 @@
async def test_load_bundles_from_urls():
settings_service = get_settings_service()
settings_service.settings.bundle_urls = [
- "https://github.com/langbuilder-ai/langbuilder-bundles/commit/68428ce16729a385fe1bcc0f1ec91fd5f5f420b9"
+ "https://github.com/cloudgeometry/langbuilder-bundles/commit/68428ce16729a385fe1bcc0f1ec91fd5f5f420b9"
]
settings_service.auth_settings.AUTO_LOGIN = True
Index: docs/docs/Deployment/deployment-kubernetes-prod.mdx
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/docs/docs/Deployment/deployment-kubernetes-prod.mdx b/docs/docs/Deployment/deployment-kubernetes-prod.mdx
--- a/docs/docs/Deployment/deployment-kubernetes-prod.mdx (revision 0da7e06131f64dcdd2d17f53a395d392d89eb593)
+++ b/docs/docs/Deployment/deployment-kubernetes-prod.mdx (date 1756825079984)
@@ -6,10 +6,10 @@
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
-The [Langbuilder runtime Helm chart](https://github.com/langbuilder-ai/langbuilder-helm-charts/blob/main/charts/langbuilder-runtime) is tailored for deploying applications in a production environment. It is focused on stability, performance, isolation, and security to ensure that applications run reliably and efficiently.
+The [Langbuilder runtime Helm chart](https://github.com/cloudgeometry/langbuilder-helm-charts/blob/main/charts/langbuilder-runtime) is tailored for deploying applications in a production environment. It is focused on stability, performance, isolation, and security to ensure that applications run reliably and efficiently.
:::important
-For security reasons, the default Langbuilder runtime Helm chart sets [`readOnlyRootFilesystem: true`](https://github.com/langbuilder-ai/langbuilder-helm-charts/blob/main/charts/langbuilder-runtime/values.yaml#L46). This setting prevents modifications to the container's root filesystem at runtime, which is a recommended security measure in production environments.
+For security reasons, the default Langbuilder runtime Helm chart sets [`readOnlyRootFilesystem: true`](https://github.com/cloudgeometry/langbuilder-helm-charts/blob/main/charts/langbuilder-runtime/values.yaml#L46). This setting prevents modifications to the container's root filesystem at runtime, which is a recommended security measure in production environments.
If `readOnlyRootFilesystem` is disabled (false), it degrades your deployment's security posture. Only disable this setting if you understand the security implications and you have implemented other security measures.
@@ -36,7 +36,7 @@
<Tabs groupId="">
<TabItem value="Install chart with custom image" label="Install chart with custom image" default>
- If you have a [custom image with packaged flows](/deployment-docker#package-your-flow-as-a-docker-image), you can deploy Langbuilder by overriding the default [`values.yaml`](https://github.com/langbuilder-ai/langbuilder-helm-charts/blob/main/charts/langbuilder-runtime/values.yaml) with the `--set` flag:
+ If you have a [custom image with packaged flows](/deployment-docker#package-your-flow-as-a-docker-image), you can deploy Langbuilder by overriding the default [`values.yaml`](https://github.com/cloudgeometry/langbuilder-helm-charts/blob/main/charts/langbuilder-runtime/values.yaml) with the `--set` flag:
```shell
helm install my-langbuilder-app langbuilder/langbuilder-runtime -n langbuilder --create-namespace --set image.repository=myuser/langbuilder-hello-world --set image.tag=1.0.0
@@ -51,11 +51,11 @@
helm install my-langbuilder-app-with-flow langbuilder/langbuilder-runtime \
-n langbuilder \
--create-namespace \
- --set 'downloadFlows.flows[0].url=https://raw.githubusercontent.com/langbuilder-ai/langbuilder/dev/tests/data/basic_example.json'
+ --set 'downloadFlows.flows[0].url=https://raw.githubusercontent.com/cloudgeometry/langbuilder/dev/tests/data/basic_example.json'
```
If your shell requires escaping square brackets, modify the `--set` path as needed.
- For example, `--set 'downloadFlows.flows\[0\].url=https://raw.githubusercontent.com/langbuilder-ai/langbuilder/dev/tests/data/basic_example.json'`.
+ For example, `--set 'downloadFlows.flows\[0\].url=https://raw.githubusercontent.com/cloudgeometry/langbuilder/dev/tests/data/basic_example.json'`.
</TabItem>
</Tabs>
@@ -110,11 +110,11 @@
## Configure secrets and environment variables
-Use the `.env` section of the Langbuilder runtime Helm chart's [`values.yaml`](https://github.com/langbuilder-ai/langbuilder-helm-charts/blob/main/charts/langbuilder-runtime/values.yaml) file to define environment variables for your Langbuilder deployment.
+Use the `.env` section of the Langbuilder runtime Helm chart's [`values.yaml`](https://github.com/cloudgeometry/langbuilder-helm-charts/blob/main/charts/langbuilder-runtime/values.yaml) file to define environment variables for your Langbuilder deployment.
This includes built-in [Langbuilder environment variables](/environment-variables), as well as [global variables](/configuration-global-variables) used by your flows.
Langbuilder can source global variables from your runtime environment, such as Kubernetes secrets referenced in `values.yaml`.
-For example, the Langbuilder runtime Helm chart's [example flow JSON](https://raw.githubusercontent.com/langbuilder-ai/langbuilder-helm-charts/refs/heads/main/examples/flows/basic-prompting-hello-world.json) uses a global variable that is a secret.
+For example, the Langbuilder runtime Helm chart's [example flow JSON](https://raw.githubusercontent.com/cloudgeometry/langbuilder-helm-charts/refs/heads/main/examples/flows/basic-prompting-hello-world.json) uses a global variable that is a secret.
If you want to run this flow in your Langbuilder deployment on Kubernetes, you need to include the secret in your runtime configuration.
:::tip
@@ -185,7 +185,7 @@
## Configure scaling
-Use `replicaCount` and `resources` in the Langbuilder runtime Helm chart's [`values.yaml`](https://github.com/langbuilder-ai/langbuilder-helm-charts/blob/main/charts/langbuilder-runtime/values.yaml) file to configure scaling:
+Use `replicaCount` and `resources` in the Langbuilder runtime Helm chart's [`values.yaml`](https://github.com/cloudgeometry/langbuilder-helm-charts/blob/main/charts/langbuilder-runtime/values.yaml) file to configure scaling:
* **Horizontal scaling**: Use `replicaCount` to set the number of replicas for your Langbuilder deployment.
@@ -205,4 +205,4 @@
## See also
* [Best practices for Langbuilder on Kubernetes](/deployment-prod-best-practices)
-* [Langbuilder Helm Charts repository](https://github.com/langbuilder-ai/langbuilder-helm-charts)
\ No newline at end of file
+* [Langbuilder Helm Charts repository](https://github.com/cloudgeometry/langbuilder-helm-charts)
Index: docs/docs/Deployment/deployment-gcp.mdx
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/docs/docs/Deployment/deployment-gcp.mdx b/docs/docs/Deployment/deployment-gcp.mdx
--- a/docs/docs/Deployment/deployment-gcp.mdx (revision 0da7e06131f64dcdd2d17f53a395d392d89eb593)
+++ b/docs/docs/Deployment/deployment-gcp.mdx (date 1756823603642)
@@ -9,7 +9,7 @@
1. Follow this link to launch the Cloud Shell with the GCP deployment script from the Langbuilder repository:
- [](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/langbuilder-ai/langbuilder&working_dir=scripts/gcp&shellonly=true&tutorial=walkthroughtutorial.md)
+ [](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/cloudgeometry/langbuilder&working_dir=scripts/gcp&shellonly=true&tutorial=walkthroughtutorial.md)
2. Click **Trust repo**.
@@ -24,4 +24,4 @@
For a more stable deployment, consider using a regular VM instance instead of a spot instance.
For more information, see the [GCP pricing calculator](https://cloud.google.com/products/calculator?hl=en).
-:::
\ No newline at end of file
+:::
Index: SECURITY.md
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/SECURITY.md b/SECURITY.md
--- a/SECURITY.md (revision 0da7e06131f64dcdd2d17f53a395d392d89eb593)
+++ b/SECURITY.md (date 1756823603469)
@@ -15,7 +15,7 @@
### How to Report
-Use the "Report a vulnerability" button under the "Security" tab of the [Langbuilder GitHub repository](https://github.com/langbuilder-ai/langbuilder/security). This creates a private communication channel between you and the maintainers.
+Use the "Report a vulnerability" button under the "Security" tab of the [Langbuilder GitHub repository](https://github.com/cloudgeometry/langbuilder/security). This creates a private communication channel between you and the maintainers.
### Reporting Guidelines
@@ -59,4 +59,4 @@
`LANGBUILDER_SKIP_AUTH_AUTO_LOGIN=true` is the default behavior, so users do not need to change existing workflows in 1.5. To update your workflows to require authentication, set `LANGBUILDER_SKIP_AUTH_AUTO_LOGIN=false`.
-For more information, see [API keys and authentication](https://docs.langbuilder.org/api-keys-and-authentication).
\ No newline at end of file
+For more information, see [API keys and authentication](https://docs.langbuilder.org/api-keys-and-authentication).
Index: docs/docs/Deployment/deployment-docker.mdx
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/docs/docs/Deployment/deployment-docker.mdx b/docs/docs/Deployment/deployment-docker.mdx
--- a/docs/docs/Deployment/deployment-docker.mdx (revision 0da7e06131f64dcdd2d17f53a395d392d89eb593)
+++ b/docs/docs/Deployment/deployment-docker.mdx (date 1756825079876)
@@ -43,7 +43,7 @@
1. Clone the Langbuilder repository:
```shell
- git clone https://github.com/langbuilder-ai/langbuilder.git
+ git clone https://github.com/cloudgeometry/langbuilder.git
```
2. Navigate to the `docker_example` directory:
@@ -114,7 +114,7 @@
```bash
# Download an example flow
- wget https://raw.githubusercontent.com/langbuilder-ai/langbuilder-helm-charts/refs/heads/main/examples/flows/basic-prompting-hello-world.json
+ wget https://raw.githubusercontent.com/cloudgeometry/langbuilder-helm-charts/refs/heads/main/examples/flows/basic-prompting-hello-world.json
# Or copy your own flow file
cp /path/to/your/flow.json .
@@ -208,4 +208,4 @@
docker run -p 7860:7860 myuser/langbuilder-custom:1.0.0
```
-This approach can be adapted for any other components or custom code you want to add to Langbuilder by modifying the file paths and component names.
\ No newline at end of file
+This approach can be adapted for any other components or custom code you want to add to Langbuilder by modifying the file paths and component names.
Index: src/frontend/src/components/common/crashErrorComponent/index.tsx
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/src/frontend/src/components/common/crashErrorComponent/index.tsx b/src/frontend/src/components/common/crashErrorComponent/index.tsx
--- a/src/frontend/src/components/common/crashErrorComponent/index.tsx (revision 0da7e06131f64dcdd2d17f53a395d392d89eb593)
+++ b/src/frontend/src/components/common/crashErrorComponent/index.tsx (date 1756825079944)
@@ -28,7 +28,7 @@
<p>
Please report errors with detailed tracebacks on the{" "}
<a
- href="https://github.com/langbuilder-ai/langbuilder/issues"
+ href="https://github.com/cloudgeometry/langbuilder/issues"
target="_blank"
rel="noopener noreferrer"
className="font-medium hover:underline"
@@ -47,7 +47,7 @@
<Button onClick={resetErrorBoundary}>Restart Langbuilder</Button>
<a
- href="https://github.com/langbuilder-ai/langbuilder/issues/new"
+ href="https://github.com/cloudgeometry/langbuilder/issues/new"
target="_blank"
rel="noopener noreferrer"
>
Index: docs/src/components/ChatWidget/index.tsx
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/docs/src/components/ChatWidget/index.tsx b/docs/src/components/ChatWidget/index.tsx
--- a/docs/src/components/ChatWidget/index.tsx (revision 0da7e06131f64dcdd2d17f53a395d392d89eb593)
+++ b/docs/src/components/ChatWidget/index.tsx (date 1756825080011)
@@ -5,7 +5,7 @@
useEffect(() => {
if (!document.querySelector('script[src*="langbuilder-embedded-chat"]')) {
const script = document.createElement('script');
- script.src = 'https://cdn.jsdelivr.net/gh/langbuilder-ai/langbuilder-embedded-chat@main/dist/build/static/js/bundle.min.js';
+ script.src = 'https://cdn.jsdelivr.net/gh/cloudgeometry/langbuilder-embedded-chat@main/dist/build/static/js/bundle.min.js';
script.async = true;
document.body.appendChild(script);
}
@@ -32,4 +32,4 @@
></langbuilder-chat>
</div>
);
- }
\ No newline at end of file
+ }
Index: docs/docs/Contributing/contributing-github-issues.mdx
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/docs/docs/Contributing/contributing-github-issues.mdx b/docs/docs/Contributing/contributing-github-issues.mdx
--- a/docs/docs/Contributing/contributing-github-issues.mdx (revision 0da7e06131f64dcdd2d17f53a395d392d89eb593)
+++ b/docs/docs/Contributing/contributing-github-issues.mdx (date 1756823603541)
@@ -9,19 +9,19 @@
## GitHub issues
-The [Issues page in the Langbuilder repository](https://github.com/langbuilder-ai/langbuilder/issues) is actively updated with bugs and feature requests.
+The [Issues page in the Langbuilder repository](https://github.com/cloudgeometry/langbuilder/issues) is actively updated with bugs and feature requests.
:::tip
The best way to promote a request or bug is to comment on an existing issue.
Highly active issues are more likely to receive attention from contributors.
Before you report a bug or submit a feature request, search for existing similar issues.
-Use the [Langbuilder repository's labels](https://github.com/langbuilder-ai/langbuilder/labels) to help filter your search.
+Use the [Langbuilder repository's labels](https://github.com/cloudgeometry/langbuilder/labels) to help filter your search.
:::
## GitHub discussions
-If you need help with your code or Langbuilder in general, you can visit the [Langbuilder GitHub Discussions page](https://github.com/langbuilder-ai/langbuilder/discussions) or reach out through other [Langbuilder community](/contributing-community) channels.
+If you need help with your code or Langbuilder in general, you can visit the [Langbuilder GitHub Discussions page](https://github.com/cloudgeometry/langbuilder/discussions) or reach out through other [Langbuilder community](/contributing-community) channels.
The Langbuilder team doesn't provide individual support over email, and the team believes that public discussions help more users by virtue of their discoverability.
@@ -38,4 +38,4 @@
* **Omit sensitive information**: Other than the information available on your public GitHub profile, don't include sensitive or personally identifying data, such as security keys, full names, personal identification numbers, addresses, and phone numbers.
* **Be kind**: Although bugs can be frustrating with any software, remember that your messages are read by real people who want to help. While you don't have to be saccharine, there's no need to be rude to get support.
* Your issues and discussions are attached to your GitHub account, and they can be read by anyone on the internet, including current and potential employers and colleagues.
- * The Langlow repository is a public GitHub repository and, therefore, subject to the [GitHub Code of Conduct](https://docs.github.com/en/site-policy/github-terms/github-community-code-of-conduct).
\ No newline at end of file
+ * The Langlow repository is a public GitHub repository and, therefore, subject to the [GitHub Code of Conduct](https://docs.github.com/en/site-policy/github-terms/github-community-code-of-conduct).
Index: docs/docs/Contributing/contributing-how-to-contribute.mdx
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/docs/docs/Contributing/contributing-how-to-contribute.mdx b/docs/docs/Contributing/contributing-how-to-contribute.mdx
--- a/docs/docs/Contributing/contributing-how-to-contribute.mdx (revision 0da7e06131f64dcdd2d17f53a395d392d89eb593)
+++ b/docs/docs/Contributing/contributing-how-to-contribute.mdx (date 1756823603730)
@@ -23,7 +23,7 @@
### Clone the Langbuilder repository
-1. Fork the [Langbuilder GitHub repository](https://github.com/langbuilder-ai/langbuilder).
+1. Fork the [Langbuilder GitHub repository](https://github.com/cloudgeometry/langbuilder).
2. Add the new remote to your local repository on your local machine:
```bash
@@ -206,7 +206,7 @@
1. Install [Node.js](https://nodejs.org/en/download/package-manager) and [Yarn](https://yarnpkg.com/)
-2. Fork the [Langbuilder GitHub repository](https://github.com/langbuilder-ai/langbuilder).
+2. Fork the [Langbuilder GitHub repository](https://github.com/cloudgeometry/langbuilder).
3. Add the new remote to your local repository on your local machine:
@@ -260,4 +260,4 @@
3. A Langbuilder maintainer will review your pull request and may request changes, so ensure you pay attention to your PRs. Thanks for your contribution!
-For more information, see the [Python Developer's Guide](https://devguide.python.org/getting-started/pull-request-lifecycle/index.html#making-good-commits).
\ No newline at end of file
+For more information, see the [Python Developer's Guide](https://devguide.python.org/getting-started/pull-request-lifecycle/index.html#making-good-commits).
Index: src/backend/base/pyproject.toml
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/src/backend/base/pyproject.toml b/src/backend/base/pyproject.toml
--- a/src/backend/base/pyproject.toml (revision 0da7e06131f64dcdd2d17f53a395d392d89eb593)
+++ b/src/backend/base/pyproject.toml (date 1756823603650)
@@ -226,7 +226,7 @@
[project.urls]
-Repository = "https://github.com/langbuilder-ai/langbuilder"
+Repository = "https://github.com/cloudgeometry/langbuilder"
Documentation = "https://docs.langbuilder.org"
# Optional dependencies for uv
Index: docs/docs/Contributing/contributing-bundles.mdx
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/docs/docs/Contributing/contributing-bundles.mdx b/docs/docs/Contributing/contributing-bundles.mdx
--- a/docs/docs/Contributing/contributing-bundles.mdx (revision 0da7e06131f64dcdd2d17f53a395d392d89eb593)
+++ b/docs/docs/Contributing/contributing-bundles.mdx (date 1756823603509)
@@ -13,21 +13,21 @@
1. Navigate to the backend directory in the Langbuilder repository and create a new folder for your bundle.
The path for your new component is `src > backend > base > langbuilder > components > darth_vader`.
-You can view the [components folder](https://github.com/langbuilder-ai/langbuilder/tree/main/src/backend/base/langbuilder/components) in the Langbuilder repository.
+You can view the [components folder](https://github.com/cloudgeometry/langbuilder/tree/main/src/backend/base/langbuilder/components) in the Langbuilder repository.
2. Within the newly created `darth_vader` folder, add the following files:
* `darth_vader_component.py` — This file contains the backend logic for the new bundle. Create multiple `.py` files for multiple components.
* `__init__.py` — This file initializes the bundle components. You can use any existing `__init__.py` as an example to see how it should be structured.
-For an example of adding multiple components in a bundle, see the [Notion](https://github.com/langbuilder-ai/langbuilder/tree/main/src/backend/base/langbuilder/components/Notion) bundle.
+For an example of adding multiple components in a bundle, see the [Notion](https://github.com/cloudgeometry/langbuilder/tree/main/src/backend/base/langbuilder/components/Notion) bundle.
## Add the bundle to the frontend folder
1. Navigate to the frontend directory in the Langbuilder repository to add your bundle's icon.
The path for your new component icon is `src > frontend > src > icons > DarthVader`
-You can view the [icons folder](https://github.com/langbuilder-ai/langbuilder/tree/main/src/frontend/src/icons) in the Langbuilder repository.
+You can view the [icons folder](https://github.com/cloudgeometry/langbuilder/tree/main/src/frontend/src/icons) in the Langbuilder repository.
To add your icon, create **three** files inside the `icons/darth_vader` folder.
2. In the `icons/darth_vader` folder, add the raw SVG file of your icon, such as `darth_vader-icon.svg`.
@@ -84,7 +84,7 @@
```
6. To link your new bundle to the frontend, open `/src/frontend/src/icons/lazyIconImports.ts`.
-You can view the [lazyIconImports.ts](https://github.com/langbuilder-ai/langbuilder/blob/main/src/frontend/src/icons/lazyIconImports.ts) in the Langbuilder repository.
+You can view the [lazyIconImports.ts](https://github.com/cloudgeometry/langbuilder/blob/main/src/frontend/src/icons/lazyIconImports.ts) in the Langbuilder repository.
7. Add the name of your icon, which should match the icon name you used in the `.tsx` file.
For example:
```typescript
@@ -97,7 +97,7 @@
```
8. To update the **Bundles** section in the **Components** menu, add the new icon to the `SIDEBAR_BUNDLES` array in `src > frontend > src > utils > styleUtils.ts`.
-You can view the [SIDEBAR_BUNDLES array](https://github.com/langbuilder-ai/langbuilder/blob/main/src/frontend/src/utils/styleUtils.ts#L231) in the Langbuilder repository.\
+You can view the [SIDEBAR_BUNDLES array](https://github.com/cloudgeometry/langbuilder/blob/main/src/frontend/src/utils/styleUtils.ts#L231) in the Langbuilder repository.\
The `name` must point to the folder you created within the `src > backend > base > langbuilder > components` directory.
For example:
```typescript
@@ -126,4 +126,4 @@
1. To rebuild the backend and frontend, run `make install_frontend && make build_frontend && make install_backend && uv run langbuilder run --port 7860`.
2. Refresh the frontend application.
-Your new bundle called `DarthVader` is available in the **Components** menu in the visual editor.
\ No newline at end of file
+Your new bundle called `DarthVader` is available in the **Components** menu in the visual editor.
Index: .github/workflows/nightly_build.yml
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP