-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathfeed.rss
1400 lines (1398 loc) · 113 KB
/
feed.rss
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
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
xmlns:rawvoice="http://www.rawvoice.com/rawvoiceRssModule/"
xmlns:googleplay="http://www.google.com/schemas/play-podcasts/1.0">
<channel>
<title>Jina AI</title>
<link>https://jina.ai</link>
<description>The official newsroom of Jina AI</description>
<language>en</language>
<copyright>Jina AI Copyright 2025</copyright>
<atom:link href="https://jina.ai/feed.rss" rel="self" type="application/rss+xml"/>
<lastBuildDate>Wed, 08 Jan 2025 06:08:38 +0100</lastBuildDate>
<item>
<title>Text-Image Global Contrastive Alignment and Token-Patch Local Alignment</title>
<link>https://jina.ai/news/text-image-global-contrastive-alignment-and-token-patch-local-alignment/</link>
<pubDate>Tue, 07 Jan 2025 12:23:50 +0100</pubDate>
<guid isPermaLink="false">677be55d2defad0001fb5e13</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>CLIP can visualize token-patch similarities, however, it’s more of a post-hoc interpretability trick than a robust or official "attention" from the model. Here's why.</description>
</item>
<item>
<title>Text Embeddings Fail to Capture Word Order and How to Fix It</title>
<link>https://jina.ai/news/text-embeddings-fail-to-capture-word-order-and-how-to-fix-it/</link>
<pubDate>Tue, 17 Dec 2024 16:30:27 +0100</pubDate>
<guid isPermaLink="false">6761676f2defad0001fb5d8a</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Text embedding models struggle with capturing subtle linguistic nuances like word order, directional relationships, temporal sequences, causal connections, comparisons, and negation. Understanding these challenges is key to improving model performance.</description>
</item>
<item>
<title>Re·Search: Order 2024 Yearbook of Search Foundation Advances</title>
<link>https://jina.ai/news/re-search-order-2024-yearbook-of-search-foundation-advances/</link>
<pubDate>Mon, 16 Dec 2024 15:35:49 +0100</pubDate>
<guid isPermaLink="false">675f75780ce9930001b870a7</guid>
<category><![CDATA[ Press ]]></category>
<description>Discover Re·Search, our premium yearbook showcasing our best research articles and search foundation models in 2024. Featuring spot UV-coated hardcover, 160 full-color pages, and meticulous design throughout. Available worldwide at $35, shipping included.</description>
</item>
<item>
<title>Scaling Test-Time Compute For Embedding Models</title>
<link>https://jina.ai/news/scaling-test-time-compute-for-embedding-models/</link>
<pubDate>Thu, 12 Dec 2024 17:54:17 +0100</pubDate>
<guid isPermaLink="false">675a84f80ce9930001b86f09</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Better results scale with compute—more on learning, more on search. A good pretrained model takes you far, but test-time compute takes you further. It's time to recognize this paradigm of test-time compute, even for embedding models.</description>
</item>
<item>
<title>Still Need Chunking When Long-Context Models Can Do It All?</title>
<link>https://jina.ai/news/still-need-chunking-when-long-context-models-can-do-it-all/</link>
<pubDate>Thu, 05 Dec 2024 00:55:21 +0100</pubDate>
<guid isPermaLink="false">674f1a8eb3efb50001df0e4e</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Comparing how long-context embedding models perform with different chunking strategies to find the optimal approach for your needs.</description>
</item>
<item>
<title>Watermarking Text with Embedding Models to Protect Against Content Theft</title>
<link>https://jina.ai/news/watermarking-text-with-embedding-models-to-protect-against-content-theft/</link>
<pubDate>Wed, 27 Nov 2024 03:21:28 +0100</pubDate>
<guid isPermaLink="false">674164338845620001704a96</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>You use our embedding models to do what? This might be the most "out-of-domain" applications of embeddings we learned at EMNLP 2024.</description>
</item>
<item>
<title>Jina CLIP v2: Multilingual Multimodal Embeddings for Text and Images</title>
<link>https://jina.ai/news/jina-clip-v2-multilingual-multimodal-embeddings-for-text-and-images/</link>
<pubDate>Thu, 21 Nov 2024 17:29:45 +0100</pubDate>
<guid isPermaLink="false">673cc4a7a7c46d00015cf1f5</guid>
<category><![CDATA[ Press ]]></category>
<description>Jina-CLIP v2, a 0.9B multimodal embedding model with multilingual support of 89 languages, high image resolution at 512x512, and Matryoshka representations.</description>
</item>
<item>
<title>Meta-Prompt for Better Jina API Integration and CodeGen</title>
<link>https://jina.ai/news/meta-prompt-for-better-jina-api-integration-and-codegen/</link>
<pubDate>Tue, 19 Nov 2024 23:03:02 +0100</pubDate>
<guid isPermaLink="false">67331de8a0c24200013a003c</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Is Meta-Prompt the new norm for API specs? Feed it to LLMs and generate integration code that reliably integrates Jina's APIs, saving you from the usual trial-and-error process.</description>
</item>
<item>
<title>Call for Participants: EMNLP 2024 BoF on Embeddings, Reranker & Small LMs for Better Search</title>
<link>https://jina.ai/news/call-for-participants-emnlp-2024-bof-on-embeddings-reranker-small-lms-for-better-search/</link>
<pubDate>Tue, 05 Nov 2024 15:16:19 +0100</pubDate>
<guid isPermaLink="false">672a11852798ce0001057fcf</guid>
<category><![CDATA[ Events ]]></category>
<description>At EMNLP 2024 Miami? Join us for a Birds of a Feather session focusing on embeddings, rerankers, and small LMs for better search.</description>
</item>
<item>
<title>Beyond CLIP: How Jina-CLIP Advances Multimodal Search</title>
<link>https://jina.ai/news/beyond-clip-how-jina-clip-advances-multimodal-search/</link>
<pubDate>Tue, 29 Oct 2024 11:51:40 +0100</pubDate>
<guid isPermaLink="false">671b96784821eb000165d2de</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Learn how Jina-CLIP enhances OpenAI's CLIP with better retrieval accuracy and more diverse results through unified text-image embeddings.</description>
</item>
<item>
<title>Finding Optimal Breakpoints in Long Documents Using Small Language Models</title>
<link>https://jina.ai/news/finding-optimal-breakpoints-in-long-documents-using-small-language-models/</link>
<pubDate>Fri, 25 Oct 2024 10:35:07 +0200</pubDate>
<guid isPermaLink="false">67126986708dbe00019249f2</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>We trained three small language models to better segment long documents into chunks, and here are the key lessons we learned.</description>
</item>
<item>
<title>Jina Classifier API for High Performance Zero-Shot and Few-Shot Classification</title>
<link>https://jina.ai/news/jina-classifier-for-high-performance-zero-shot-and-few-shot-classification/</link>
<pubDate>Tue, 22 Oct 2024 10:57:15 +0200</pubDate>
<guid isPermaLink="false">6711fbbd708dbe0001924974</guid>
<category><![CDATA[ Press ]]></category>
<description>New Classifier API offers zero-shot and few-shot classification for text and images. Start classifying content instantly or train it with your own examples.</description>
</item>
<item>
<title>Fact-Checking with New Grounding API in Jina Reader</title>
<link>https://jina.ai/news/fact-checking-with-new-grounding-api-in-jina-reader/</link>
<pubDate>Tue, 15 Oct 2024 10:08:02 +0200</pubDate>
<guid isPermaLink="false">670cd94952567c0001d0f33e</guid>
<category><![CDATA[ Press ]]></category>
<description>With the new g.jina.ai, you can easily ground statements to reduce LLM hallucinations or improve the integrity of human-written content.</description>
</item>
<item>
<title>Bridging Language Gaps in Multilingual Embeddings via Contrastive Learning</title>
<link>https://jina.ai/news/bridging-language-gaps-in-multilingual-embeddings-via-contrastive-learning/</link>
<pubDate>Wed, 09 Oct 2024 14:42:22 +0200</pubDate>
<guid isPermaLink="false">67066bd652567c0001d0f2cd</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Multilingual models often face a "language gap," where similar phrases in different languages don't align. We show how contrastive learning can bridge this gap, enhancing cross-language performance.</description>
</item>
<item>
<title>What Late Chunking Really Is & What It’s Not: Part II</title>
<link>https://jina.ai/news/what-late-chunking-really-is-and-what-its-not-part-ii/</link>
<pubDate>Thu, 03 Oct 2024 19:19:16 +0200</pubDate>
<guid isPermaLink="false">66fe70236ca44300014cabe4</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Part 2 of our exploration of Late Chunking, a deep dive into why it is the best method for chunk embeddings and improving search/RAG performance.</description>
</item>
<item>
<title>Migration From Jina Embeddings v2 to v3</title>
<link>https://jina.ai/news/migration-from-jina-embeddings-v2-to-v3/</link>
<pubDate>Fri, 27 Sep 2024 17:32:59 +0200</pubDate>
<guid isPermaLink="false">66f3d0e34b7bde000124bbdb</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>We collected some tips to help you migrate from Jina Embeddings v2 to v3.</description>
</item>
<item>
<title>Jina Embeddings v3: A Frontier Multilingual Embedding Model</title>
<link>https://jina.ai/news/jina-embeddings-v3-a-frontier-multilingual-embedding-model/</link>
<pubDate>Wed, 18 Sep 2024 10:37:31 +0200</pubDate>
<guid isPermaLink="false">66ea352ab0c14d00013bc7f1</guid>
<category><![CDATA[ Press ]]></category>
<description>jina-embeddings-v3 is a frontier multilingual text embedding model with 570M parameters and 8192 token-length, outperforming the latest proprietary embeddings from OpenAI and Cohere on MTEB.</description>
</item>
<item>
<title>Reader-LM: Small Language Models for Cleaning and Converting HTML to Markdown</title>
<link>https://jina.ai/news/reader-lm-small-language-models-for-cleaning-and-converting-html-to-markdown/</link>
<pubDate>Wed, 11 Sep 2024 12:25:03 +0200</pubDate>
<guid isPermaLink="false">66dff7eba241f5000155d851</guid>
<category><![CDATA[ Press ]]></category>
<description>Reader-LM-0.5B and Reader-LM-1.5B are two novel small language models inspired by Jina Reader, designed to convert raw, noisy HTML from the open web into clean markdown.</description>
</item>
<item>
<title>Jina ColBERT v2: Multilingual Late Interaction Retriever for Embedding and Reranking</title>
<link>https://jina.ai/news/jina-colbert-v2-multilingual-late-interaction-retriever-for-embedding-and-reranking/</link>
<pubDate>Fri, 30 Aug 2024 09:19:58 +0200</pubDate>
<guid isPermaLink="false">66cd8fc6e84873000133d63d</guid>
<category><![CDATA[ Press ]]></category>
<description>Jina ColBERT v2 supports 89 languages with superior retrieval performance, user-controlled output dimensions, and 8192 token-length. </description>
</item>
<item>
<title>The What and Why of Text-Image Modality Gap in CLIP Models</title>
<link>https://jina.ai/news/the-what-and-why-of-text-image-modality-gap-in-clip-models/</link>
<pubDate>Mon, 26 Aug 2024 15:56:36 +0200</pubDate>
<guid isPermaLink="false">66c8431bda9a33000146d97d</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>You can't just use a CLIP model to retrieve text and images and sort the results by score. Why? Because of the modality gap. What is it, and where does it come from?</description>
</item>
<item>
<title>Late Chunking in Long-Context Embedding Models</title>
<link>https://jina.ai/news/late-chunking-in-long-context-embedding-models/</link>
<pubDate>Thu, 22 Aug 2024 17:06:17 +0200</pubDate>
<guid isPermaLink="false">66c72e30da9a33000146d836</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Chunking long documents while preserving contextual information is challenging. We introduce the "Late Chunking" that leverages long-context embedding models to generate contextual chunk embeddings for better retrieval applications.</description>
</item>
<item>
<title>By Hoovering Up the Web, AI Is Poisoning Itself</title>
<link>https://jina.ai/news/by-hoovering-up-the-web-ai-is-poisoning-itself/</link>
<pubDate>Wed, 14 Aug 2024 22:44:46 +0200</pubDate>
<guid isPermaLink="false">66acf331864a9b0001745edc</guid>
<category><![CDATA[ Insights ]]></category>
<description>What does it mean for LLMs when the web has been strip-mined clean, content providers have locked their doors, and there’s barely a trickle of new data to scrape? </description>
</item>
<item>
<title>What We Learned at ICML2024 ft. PLaG, XRM, tinyBenchmark, MagicLens, Prompt Sketching etc.</title>
<link>https://jina.ai/news/what-we-learned-at-icml2024-ft-plag-xrm-tinybenchmark-magiclens-prompt-sketching-etc/</link>
<pubDate>Wed, 07 Aug 2024 19:09:51 +0200</pubDate>
<guid isPermaLink="false">66b38ec355fd850001d38602</guid>
<category><![CDATA[ Events ]]></category>
<description>We had a blast at ICML 2024 in Vienna, and we want to share with you everything we said, saw, and learned.</description>
</item>
<item>
<title>Rephrased Labels Improve Zero-Shot Text Classification by 30%</title>
<link>https://jina.ai/news/rephrased-labels-improve-zero-shot-text-classification-30/</link>
<pubDate>Wed, 31 Jul 2024 23:46:52 +0200</pubDate>
<guid isPermaLink="false">66aa6b92864a9b0001745cdd</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>When using embedding models for zero-shot classification, rephrasing the class label to "This is seriously about 'LABEL'" gives higher accuracy vs. using LABEL alone. But how, and why?</description>
</item>
<item>
<title>Can Embedding/Reranker Models Compare Numbers?</title>
<link>https://jina.ai/news/can-embedding-reranker-models-compare-numbers/</link>
<pubDate>Thu, 25 Jul 2024 00:42:49 +0200</pubDate>
<guid isPermaLink="false">66a15523ac62ce0001aa02c8</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>A lot of LLMs can't figure out that 9.11 is actually smaller than 9.9. Can our embedding and reranker models do any better?</description>
</item>
<item>
<title>Is Romance Generative AI's Killer App? We Hope Not</title>
<link>https://jina.ai/news/is-romance-generative-ai-s-killer-app-we-hope-not/</link>
<pubDate>Fri, 19 Jul 2024 15:17:04 +0200</pubDate>
<guid isPermaLink="false">6699067bf8099100010d3c4b</guid>
<category><![CDATA[ Insights ]]></category>
<description>Are AI boyfriends and girlfriends GenAI's killer app? AI romance is no Jane Austen novel, but "social chatbots" are one of the few generative AI businesses with a clear path to profit. Take an up-close and personal look with us.</description>
</item>
<item>
<title>No. You Can't Use Reranker to Improve SEO</title>
<link>https://jina.ai/news/no-you-cant-use-reranker-to-improve-seo/</link>
<pubDate>Thu, 18 Jul 2024 21:50:52 +0200</pubDate>
<guid isPermaLink="false">669944faf8099100010d3ddb</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>But if you work in SEO, it could be interesting to see things from the other side of the table; understand how embeddings and rerankers play their roles in modern search systems. </description>
</item>
<item>
<title>Handcrafting Image Prompts Is Dead: Reverse Engineer Midjourney-style Images with PromptPerfect</title>
<link>https://jina.ai/news/handcrafting-image-prompts-is-dead-reverse-engineer-midjourney-style-images-with-promptperfect/</link>
<pubDate>Fri, 28 Jun 2024 16:00:16 +0200</pubDate>
<guid isPermaLink="false">667c287c1954df000135bf65</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>From Punk Einstein to Turbo Pigeons: Use PromptPerfect Interactive to reverse engineer prompts from pictures and generate Midjourney-style images with real-time feedback.</description>
</item>
<item>
<title>Jina Reranker v2 for Agentic RAG: Ultra-Fast, Multilingual, Function-Calling & Code Search</title>
<link>https://jina.ai/news/jina-reranker-v2-for-agentic-rag-ultra-fast-multilingual-function-calling-and-code-search/</link>
<pubDate>Tue, 25 Jun 2024 14:15:37 +0200</pubDate>
<guid isPermaLink="false">6679720d1954df000135bc79</guid>
<category><![CDATA[ Press ]]></category>
<description>Jina Reranker v2 is the best-in-class reranker built for Agentic RAG. It features function-calling support, multilingual retrieval for over 100 languages, code search capabilities, and offers a 6x speedup over v1.</description>
</item>
<item>
<title>AI Explainability Made Easy: How Late Interaction Makes Jina-ColBERT Transparent</title>
<link>https://jina.ai/news/ai-explainability-made-easy-how-late-interaction-makes-jina-colbert-transparent/</link>
<pubDate>Wed, 19 Jun 2024 16:01:36 +0200</pubDate>
<guid isPermaLink="false">6672af263ce1950001eed6a7</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>AI explainability and transparency are hot topics. How can we trust AI if we can't see how it works? Jina-ColBERT shows you how, with the right model architecture, you can easily make your AI spill its secrets.</description>
</item>
<item>
<title>Jina CLIP v1: A Truly Multimodal Embeddings Model for Text and Image</title>
<link>https://jina.ai/news/jina-clip-v1-a-truly-multimodal-embeddings-model-for-text-and-image/</link>
<pubDate>Wed, 05 Jun 2024 11:42:02 +0200</pubDate>
<guid isPermaLink="false">665f1ccd4b4b4c0001ba1c98</guid>
<category><![CDATA[ Press ]]></category>
<description>Jina AI's new multimodal embedding model not only outperforms OpenAI CLIP in text-image retrieval, it's a solid image embedding model and state-of-the-art text embedding model at the same time. You don't need different models for different modalities any more.</description>
</item>
<item>
<title>Implementing a Chat History RAG with Jina AI and Milvus Lite</title>
<link>https://jina.ai/news/implementing-a-chat-history-rag-with-jina-ai-and-milvus-lite/</link>
<pubDate>Mon, 03 Jun 2024 16:09:33 +0200</pubDate>
<guid isPermaLink="false">665d76034b4b4c0001ba1bb3</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Enhance your search applications in Python with Jina Embeddings and Reranker and lightweight, easy-to-deploy Milvus Lite.
</description>
</item>
<item>
<title>RAG is Dead, Again?</title>
<link>https://jina.ai/news/rag-is-dead-again/</link>
<pubDate>Fri, 24 May 2024 12:37:18 +0200</pubDate>
<guid isPermaLink="false">66505b6384f9e40001a6daf9</guid>
<category><![CDATA[ Insights ]]></category>
<description>RAG is just one algorithmic pattern you can use. But if you make it *the* algorithm and idolize it, then you are living in a bubble you created, and the bubble will burst.</description>
</item>
<item>
<title>Bypass Limitations with PromptPerfect: Generate the Images the Models Don’t Want You to See</title>
<link>https://jina.ai/news/bypass-limitations-with-promptperfect-generate-the-images-the-models-dont-want-you-to-see/</link>
<pubDate>Wed, 22 May 2024 16:00:56 +0200</pubDate>
<guid isPermaLink="false">664c736084f9e40001a6d975</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>See how PromptPerfect overcomes restrictions and limitations of image generation models like Stable Diffusion XL and DALL-E 3.</description>
</item>
<item>
<title>AIR-Bench: Better Metrics for Better Search Foundation</title>
<link>https://jina.ai/news/air-bench-better-metrics-for-better-search-foundation/</link>
<pubDate>Tue, 21 May 2024 16:26:11 +0200</pubDate>
<guid isPermaLink="false">664c53c684f9e40001a6d96c</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>AIR-Bench is a new approach to AI metrics that uses generative AI to make more realistic and flexible benchmarks. With AIR-Bench, you can create your own benchmarks for your own domain, and know that benchmarks data hasn't leaked into model training data.</description>
</item>
<item>
<title>Binary Embeddings: All the AI, 3.125% of the Fat</title>
<link>https://jina.ai/news/binary-embeddings-all-the-ai-3125-of-the-fat/</link>
<pubDate>Wed, 15 May 2024 16:00:57 +0200</pubDate>
<guid isPermaLink="false">662665537f510100015daa2d</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>32-bits is a lot of precision for something as robust and inexact as an AI model. So we got rid of 31 of them! Binary embeddings are smaller, faster and highly performant.</description>
</item>
<item>
<title>Jina Reader for Search Grounding to Improve Factuality of LLMs</title>
<link>https://jina.ai/news/jina-reader-for-search-grounding-to-improve-factuality-of-llms/</link>
<pubDate>Tue, 14 May 2024 18:06:37 +0200</pubDate>
<guid isPermaLink="false">664381073883a50001b2110d</guid>
<category><![CDATA[ Press ]]></category>
<description>Grounding is essential for GenAI apps. Our new https://s.jina.ai/ allows LLMs to access the latest knowledge from the web, enabling search grounding and making responses more trustworthy.</description>
</item>
<item>
<title>Albus by Springworks: Empowering Employees with Enterprise Search</title>
<link>https://jina.ai/news/albus-by-springworks-empowering-employees-with-enterprise-search/</link>
<pubDate>Mon, 13 May 2024 11:00:14 +0200</pubDate>
<guid isPermaLink="false">663a0e18af8f52000115bef2</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Learn how a leading HR-tech startup uses Jina AI’s models to talk with structured and unstructured data.</description>
</item>
<item>
<title>What's Interesting in ICLR2024</title>
<link>https://jina.ai/news/whats-interesting-in-iclr2024/</link>
<pubDate>Fri, 10 May 2024 22:47:22 +0200</pubDate>
<guid isPermaLink="false">663e6a933883a50001b20f21</guid>
<category><![CDATA[ Events ]]></category>
<description>With nearly 6000 in-person attendees, ICLR 2024 was easily the best and largest AI conference I've attended recently! Join me as I share my top picks—both the cherries and lemons—of prompt-related and model-related work from those top AI researchers.</description>
</item>
<item>
<title>When AI Makes AI: Synthetic Data, Model Distillation, And Model Collapse</title>
<link>https://jina.ai/news/when-ai-makes-ai-synthetic-data-model-distillation-and-model-collapse/</link>
<pubDate>Tue, 07 May 2024 16:00:26 +0200</pubDate>
<guid isPermaLink="false">6639e8e1af8f52000115be49</guid>
<category><![CDATA[ Insights ]]></category>
<description>AI creating AI! Is it the end of the world? Or just another tool to make models do value-adding work? Let’s find out!</description>
</item>
<item>
<title>Create Your Personalized Podcast With Jina Reader and PromptPerfect</title>
<link>https://jina.ai/news/create-your-personalized-podcast-with-jina-reader-and-promptperfect/</link>
<pubDate>Mon, 29 Apr 2024 18:00:33 +0200</pubDate>
<guid isPermaLink="false">662b5433da339c0001574150</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Use Jina Reader and PromptPerfect to generate your custom news podcast with RSS feeds, article extraction, LLMs, and Text-to-Speech.</description>
</item>
<item>
<title>Jina Embeddings and Reranker on Azure: Scalable Business-Ready AI Solutions</title>
<link>https://jina.ai/news/jina-embeddings-and-reranker-on-azure-scalable-business-ready-ai-solutions/</link>
<pubDate>Mon, 29 Apr 2024 16:00:30 +0200</pubDate>
<guid isPermaLink="false">662f563fda339c0001574205</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Jina Embeddings and Rerankers are now available on Azure Marketplace. Enterprises that prioritize privacy and security can now easily integrate Jina AI's state-of-the-art models right in their existing Azure ecosystem.</description>
</item>
<item>
<title>Having It Both Ways: Combining BM25 with AI Reranking</title>
<link>https://jina.ai/news/having-it-both-ways-combining-bm25-with-ai-reranking/</link>
<pubDate>Wed, 24 Apr 2024 15:38:08 +0200</pubDate>
<guid isPermaLink="false">6628fe61da339c00015740b9</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Learn how to integrate Jina Reranker with lexical search engines to take advantage of superior semantic understanding while avoiding the downsides of migrating to a fully-fledged vector search infrastructure.</description>
</item>
<item>
<title>Smaller, Faster, Cheaper: Introducing Jina Rerankers Turbo and Tiny</title>
<link>https://jina.ai/news/smaller-faster-cheaper-jina-rerankers-turbo-and-tiny/</link>
<pubDate>Thu, 18 Apr 2024 16:00:26 +0200</pubDate>
<guid isPermaLink="false">662109d27f510100015da961</guid>
<category><![CDATA[ Press ]]></category>
<description>Jina AI announces new reranker models: Jina Rerankers Turbo (jina-reranker-v1-turbo-en) and Tiny (jina-reranker-v1-tiny-en), now available on AWS Sagemaker and Hugging Face, offering faster, memory-efficient, high-performance reranking.</description>
</item>
<item>
<title>Improving Search Quality with Reranker API in MyScale</title>
<link>https://jina.ai/news/enhancing-search-results-with-jina-ais-reranker-api-in-myscale/</link>
<pubDate>Tue, 16 Apr 2024 16:19:47 +0200</pubDate>
<guid isPermaLink="false">661e5cf7797dcd00012e7de0</guid>
<category><![CDATA[ Knowledge Base ]]></category>
<description>With full integration of Jina Reranker, you can now bring Jina AI's state-of-the-art technology to SQL retrieval.</description>
</item>
<item>
<title>Retrieve Jira Tickets with Jina Reranker and Haystack 2.0</title>
<link>https://jina.ai/news/retrieve-jira-tickets-with-jina-reranker-and-haystack-20/</link>
<pubDate>Wed, 10 Apr 2024 16:00:49 +0200</pubDate>
<guid isPermaLink="false">661543ffd6a1020001681e99</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Learn how to use Jina Reranker and Embeddings with Haystack to create your own Jira ticket search engine, streamlining your operations and never again waste time creating duplicate issues.</description>
</item>
<item>
<title>DSPy: Not Your Average Prompt Engineering</title>
<link>https://jina.ai/news/dspy-not-your-average-prompt-engineering/</link>
<pubDate>Sat, 30 Mar 2024 06:22:42 +0100</pubDate>
<guid isPermaLink="false">66077bf0a5c39b0001044181</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Heads up, Bay Area guys ditched their AVP already and buzz about DSPy now. Could DSPy be the new go-to framework for prompt engineering after LangChain and LlamaIndex?</description>
</item>
<item>
<title>Elevating YouTube Scripts with PromptPerfect: AI Mastery for Video Content Creators</title>
<link>https://jina.ai/news/elevating-youtube-scripts-with-promptperfect-ai-mastery-for-video-content-creators/</link>
<pubDate>Tue, 26 Mar 2024 16:00:44 +0100</pubDate>
<guid isPermaLink="false">66016ffe3f488f00013e6c16</guid>
<category><![CDATA[ Knowledge Base ]]></category>
<description>See how PromptPerfect Interactive is revolutionizing YouTube content creation with AI-powered storytelling. Elevate your videos and connect with audiences like never before.</description>
</item>
<item>
<title>Next-Level Cloud AI: Jina Embeddings and Rerankers on Amazon SageMaker</title>
<link>https://jina.ai/news/next-level-cloud-ai-jina-embeddings-and-rerankers-on-amazon-sagemaker/</link>
<pubDate>Mon, 25 Mar 2024 16:00:51 +0100</pubDate>
<guid isPermaLink="false">65fabb91502fd000011c667e</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Learn to use Jina Embeddings and Reranking models in a full-stack AI application on AWS, using only components available in Amazon SageMaker and the AWS Marketplace.</description>
</item>
<item>
<title>Click-Worthy Content with PromptPerfect: AI Marketing for Newsletters and Social Media</title>
<link>https://jina.ai/news/click-worthy-content-with-promptperfect-ai-marketing-for-newsletters-and-social-media/</link>
<pubDate>Wed, 20 Mar 2024 16:00:42 +0100</pubDate>
<guid isPermaLink="false">65facf57502fd000011c66d5</guid>
<category><![CDATA[ Knowledge Base ]]></category>
<description>See how PromptPerfect can level up your LLM prompting and optimize your email and social media marketing campaigns.</description>
</item>
<item>
<title>Get More with PromptPerfect: Improved Subscription Choices & Cutting-Edge Interactive Optimizer</title>
<link>https://jina.ai/news/get-more-with-promptperfect-improved-subscription-choices-cutting-edge-interactive-optimizer/</link>
<pubDate>Mon, 18 Mar 2024 16:00:23 +0100</pubDate>
<guid isPermaLink="false">65f81e478ff065000146dbfd</guid>
<category><![CDATA[ Releases ]]></category>
<description>More cost-effective monthly subscription models and brand new interactive optimizer in PromptPerfect's latest release.</description>
</item>
<item>
<title>How to Build Article Recommendations with Jina Reranker API Only</title>
<link>https://jina.ai/news/how-to-build-article-recommendations-with-jina-reranker-api-only/</link>
<pubDate>Sun, 17 Mar 2024 06:38:36 +0100</pubDate>
<guid isPermaLink="false">65f53dc48ff065000146db23</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>You can build an article recommendation system with just the Jina Reranker API—no pipeline, no embeddings, no vector search, only reranking. Find out how in 20 lines of code.</description>
</item>
<item>
<title>Building RAG with Jina AI and SuperDuperDB</title>
<link>https://jina.ai/news/building-rag-with-jina-ai-and-superduperdb/</link>
<pubDate>Wed, 13 Mar 2024 16:00:44 +0100</pubDate>
<guid isPermaLink="false">65f04e788ff065000146da94</guid>
<category><![CDATA[ Knowledge Base ]]></category>
<description>Jina Embeddings v2 are now integrated directly into SuperDuperDB, letting you skip the complexity of AI operations in your data-driven applications.</description>
</item>
<item>
<title>Precise RAG with Jina Reranker and LlamaIndex</title>
<link>https://jina.ai/news/precise-rag-with-jina-reranker-and-llamaindex/</link>
<pubDate>Thu, 07 Mar 2024 15:00:01 +0100</pubDate>
<guid isPermaLink="false">65e97909b22368000152a4c7</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Just Rerank It! Jina Reranker and LlamaIndex take your RAG up to the next level.</description>
</item>
<item>
<title>Build a RAG system with Jina Embeddings and Qdrant</title>
<link>https://jina.ai/news/build-a-rag-system-with-jina-embeddings-and-qdrant/</link>
<pubDate>Mon, 04 Mar 2024 16:00:13 +0100</pubDate>
<guid isPermaLink="false">65ddadd039a5b70001810ea3</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Create a RAG system with Jina Embeddings v2, Qdrant vector database, LlamaIndex, and Mistral LLM.</description>
</item>
<item>
<title>Maximizing Search Relevance and RAG Accuracy with Jina Reranker</title>
<link>https://jina.ai/news/maximizing-search-relevancy-and-rag-accuracy-with-jina-reranker/</link>
<pubDate>Thu, 29 Feb 2024 09:30:10 +0100</pubDate>
<guid isPermaLink="false">65dfb0f7b22368000152a205</guid>
<category><![CDATA[ Press ]]></category>
<description>Boost your search and RAG accuracy with Jina Reranker. Our new model improves the accuracy and relevance by 20% over simple vector search. Try it now for free!</description>
</item>
<item>
<title>Revolutionizing Bilingual Text Embeddings with Multi-Task Contrastive Learning</title>
<link>https://jina.ai/news/revolutionizing-bilingual-text-embeddings-with-multi-task-contrastive-learning/</link>
<pubDate>Wed, 28 Feb 2024 16:00:41 +0100</pubDate>
<guid isPermaLink="false">65df105ab22368000152a1b9</guid>
<category><![CDATA[ Press ]]></category>
<description>Our new paper explores how our Spanish-English and German-English models use multi-task contrastive learning and a sophisticated data pipeline to master language understanding and cross-lingual efficiency for texts up to 8192 tokens</description>
</item>
<item>
<title>What is ColBERT and Late Interaction and Why They Matter in Search?</title>
<link>https://jina.ai/news/what-is-colbert-and-late-interaction-and-why-they-matter-in-search/</link>
<pubDate>Tue, 20 Feb 2024 02:19:04 +0100</pubDate>
<guid isPermaLink="false">65d3a2134a32310001f5b71b</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Jina AI's ColBERT on Hugging Face has set Twitter abuzz, bringing a fresh perspective to search with its 8192-token capability. This article unpacks the nuances of ColBERT and ColBERTv2, showcasing their innovative designs and why their late interaction feature is a game-changer for search.</description>
</item>
<item>
<title>Aquí Se Habla Español: Top-Quality Spanish-English Embeddings and 8k Context</title>
<link>https://jina.ai/news/aqui-se-habla-espanol-top-quality-spanish-english-embeddings-and-8k-context/</link>
<pubDate>Wed, 14 Feb 2024 16:30:36 +0100</pubDate>
<guid isPermaLink="false">65cc8e2f4a32310001f5b5f1</guid>
<category><![CDATA[ Press ]]></category>
<description>Jina AI's new bilingual Spanish-English embedding model brings the state-of-the-art in AI to half a billion Spanish speakers.</description>
</item>
<item>
<title>SceneXplain: Alt Text and Better SEO for Your Ghost Blog With One Command</title>
<link>https://jina.ai/news/scenexplain-alt-text-and-better-seo-for-your-ghost-blog-with-just-one-command/</link>
<pubDate>Tue, 06 Feb 2024 16:00:07 +0100</pubDate>
<guid isPermaLink="false">65c20d31aa949b00016cf15f</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Supercharge your Ghost blog's SEO and accessibility by automatically generating alt texts. All it takes is one command. WordPress/WooCommerce support coming soon!</description>
</item>
<item>
<title>Elevate Your Code Search with New Jina Code Embeddings</title>
<link>https://jina.ai/news/elevate-your-code-search-with-new-jina-code-embeddings/</link>
<pubDate>Mon, 05 Feb 2024 18:46:33 +0100</pubDate>
<guid isPermaLink="false">65c0fa40aa949b00016cf07d</guid>
<category><![CDATA[ Press ]]></category>
<description>New 𝗷𝗶𝗻𝗮-𝗲𝗺𝗯𝗲𝗱𝗱𝗶𝗻𝗴𝘀-𝘃𝟮-𝗯𝗮𝘀𝗲-𝗰𝗼𝗱𝗲 is optimized for code & docstring search. This powerful model supports searches between English and 30 widely-used programming languages, all with 8192 context length and SOTA performance.</description>
</item>
<item>
<title>A Deep Dive into Tokenization</title>
<link>https://jina.ai/news/a-deep-dive-into-tokenization/</link>
<pubDate>Wed, 31 Jan 2024 16:10:14 +0100</pubDate>
<guid isPermaLink="false">65afb3ee8da8040001e17061</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Tokenization, in LLMs, means chopping input texts up into smaller parts for processing. So why are embeddings billed by the token?</description>
</item>
<item>
<title>MyScale & Jina AI: Unleashing Great Potential for Your AI Applications</title>
<link>https://jina.ai/news/myscale-jina-ai-unleashing-great-potential-for-your-ai-applications/</link>
<pubDate>Mon, 29 Jan 2024 16:00:29 +0100</pubDate>
<guid isPermaLink="false">65b785a3c38742000104062a</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>With full integration of Jina Embeddings v2 models, MyScale allows users to harness the capabilities of Jina AI within an SQL database.</description>
</item>
<item>
<title>Jina Embeddings v2 Bilingual Models Are Now Open-Source On Hugging Face</title>
<link>https://jina.ai/news/jina-embeddings-v2-bilingual-models-are-now-open-source-on-hugging-face/</link>
<pubDate>Fri, 26 Jan 2024 17:14:56 +0100</pubDate>
<guid isPermaLink="false">65b3adb510ff9f0001c50c4d</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Jina AI's open-source bilingual embedding models for German-English and Chinese-English are now on Hugging Face.
We’re going to walk through installation and cross-language retrieval.</description>
</item>
<item>
<title>Making Accessibility Accessible: Create Alt Text with SceneXplain's API</title>
<link>https://jina.ai/news/make-accessibility-accessible-generate-alt-text-with-scenexplain/</link>
<pubDate>Tue, 23 Jan 2024 16:00:18 +0100</pubDate>
<guid isPermaLink="false">65af909b8da8040001e16fbb</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>SceneXplain is your accessibility ally, making it easy to generate image alt texts to aid visually-impaired users and improve SEO</description>
</item>
<item>
<title>Does Subspace Cosine Similarity Imply High-Dimensional Cosine Similarity?</title>
<link>https://jina.ai/news/does-subspace-cosine-similarity-imply-high-dimensional-cosine-similarity/</link>
<pubDate>Tue, 23 Jan 2024 12:22:57 +0100</pubDate>
<guid isPermaLink="false">65af98d28da8040001e17008</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Does high similarity in subspace assure a high overall similarity between vectors? This post examines the theory and practical implications of subspace similarity. </description>
</item>
<item>
<title>Using Jina Embeddings v2 with Haystack Pipelines</title>
<link>https://jina.ai/news/jina-embeddings-v2-and-deepset-haystack/</link>
<pubDate>Fri, 19 Jan 2024 16:00:07 +0100</pubDate>
<guid isPermaLink="false">65a916c40bab3100012d2e8c</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Access Jina AI's state-of-the-art open-source embedding models in your Haystack application pipeline.</description>
</item>
<item>
<title>Ich bin ein Berliner: German-English Bilingual Embeddings with 8K Token Length</title>
<link>https://jina.ai/news/ich-bin-ein-berliner-german-english-bilingual-embeddings-with-8k-token-length/</link>
<pubDate>Mon, 15 Jan 2024 17:28:14 +0100</pubDate>
<guid isPermaLink="false">65a542040bab3100012d2d79</guid>
<category><![CDATA[ Press ]]></category>
<description>Jina AI introduces a German/English bilingual embedding model, featuring an extensive 8,192-token length, specifically designed to support German businesses thriving in the U.S. market.</description>
</item>
<item>
<title>8K Token-Length Bilingual Embeddings Break Language Barriers in Chinese and English</title>
<link>https://jina.ai/news/8k-token-length-bilingual-embeddings-break-language-barriers-in-chinese-and-english/</link>
<pubDate>Tue, 09 Jan 2024 19:58:20 +0100</pubDate>
<guid isPermaLink="false">659d729f0bab3100012d2c85</guid>
<category><![CDATA[ Press ]]></category>
<description>The first bilingual Chinese-English embedding model with 8192 token-length.</description>
</item>
<item>
<title>The 1950-2024 Text Embeddings Evolution Poster</title>
<link>https://jina.ai/news/the-1950-2024-text-embeddings-evolution-poster/</link>
<pubDate>Tue, 09 Jan 2024 12:07:23 +0100</pubDate>
<guid isPermaLink="false">659d02a00bab3100012d2bff</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Take part in celebrating the achievements of text embeddings and carry a piece of its legacy with you.</description>
</item>
<item>
<title>Words + JSON + Images = SceneXplain's new JSON Schema Builder</title>
<link>https://jina.ai/news/words-json-images-scenexplains-new-json-schema-builder/</link>
<pubDate>Thu, 04 Jan 2024 16:00:17 +0100</pubDate>
<guid isPermaLink="false">65958ec70bab3100012d2bbc</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Effortlessly create JSON Schemas with SceneXplain: Describe your needs in natural language, and get the perfect schema for extracting JSON from your images!</description>
</item>
<item>
<title>Full-stack RAG with Jina Embeddings v2 and LlamaIndex</title>
<link>https://jina.ai/news/full-stack-rag-with-jina-embeddings-v2-and-llamaindex/</link>
<pubDate>Fri, 22 Dec 2023 14:00:07 +0100</pubDate>
<guid isPermaLink="false">6583fe510bab3100012d29f2</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>You can build your own RAG chatbot in a matter of minutes with Jina Embeddings, LlamaIndex and Mixtral Instruct. We'll show you how to get up and running right now.</description>
</item>
<item>
<title>A Magic Carpet Ride: Building Vivid Product Stories with SceneXplain</title>
<link>https://jina.ai/news/a-magic-carpet-ride-building-vivid-product-stories-with-scenexplain/</link>
<pubDate>Thu, 21 Dec 2023 16:00:26 +0100</pubDate>
<guid isPermaLink="false">658198e20bab3100012d2999</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>See how companies are integrating SceneXplain with their existing infrastructure to power their product descriptions and storytelling</description>
</item>
<item>
<title>Multi-Agent Simulations in PromptPerfect: 𝑛 Heads Are Better Than One</title>
<link>https://jina.ai/news/multi-agent-simulations-in-promptperfect-n-heads-are-better-than-one/</link>
<pubDate>Tue, 19 Dec 2023 16:00:58 +0100</pubDate>
<guid isPermaLink="false">658177280bab3100012d296d</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Discover the real-world impact of multi-agent simulations and see practical examples of systems uniting individual strengths to tackle complex tasks, offering efficient and tailored solutions across various domains</description>
</item>
<item>
<title>A Tale of Two Worlds: EMNLP 2023 at Sentosa</title>
<link>https://jina.ai/news/a-tale-of-two-worlds-emnlp-2023-at-sentosa/</link>
<pubDate>Sat, 16 Dec 2023 08:03:15 +0100</pubDate>
<guid isPermaLink="false">657c3d130bab3100012d2878</guid>
<category><![CDATA[ Events ]]></category>
<description>Just back from EMNLP2023 and my mind's still reeling! Witnessed NLP's seismic shift firsthand through daring papers and provocative posters that are challenging everything we thought we knew. Check out my take on the conference's boldest ideas.</description>
</item>
<item>
<title>There's a Time and a Place: Unleashing Dynamic Variables in PromptPerfect</title>
<link>https://jina.ai/news/theres-a-time-and-a-place-unleashing-dynamic-variables-in-promptperfect/</link>
<pubDate>Thu, 07 Dec 2023 15:59:42 +0100</pubDate>
<guid isPermaLink="false">6571be77782cc90001042c6f</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Incorporate users' time, date and location into your prompts. Plus contents of other websites, and outputs of other prompts themselves!</description>
</item>
<item>
<title>Dify.AI integrates Jina Embeddings for RAG</title>
<link>https://jina.ai/news/dify-ai-integrates-jina-embeddings-for-rag/</link>
<pubDate>Wed, 06 Dec 2023 16:00:31 +0100</pubDate>
<guid isPermaLink="false">65703e6d782cc90001042bca</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Dify.AI, a leading open-source platform specialized in creating generative AI applications, is now leveraging Jina Embeddings v2! </description>
</item>
<item>
<title>Jina Embeddings v2 and MongoDB Atlas</title>
<link>https://jina.ai/news/jina-embeddings-v2-and-mongodb-atlas/</link>
<pubDate>Wed, 06 Dec 2023 10:49:40 +0100</pubDate>
<guid isPermaLink="false">6570380d782cc90001042bac</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Supercharge MongoDB Atlas multi-cloud vector search solutions with Jina AI’s industry-leading embeddings!</description>
</item>
<item>
<title>Discover the Latest in Embeddings at EMNLP 2023 In-Person BoF Session</title>
<link>https://jina.ai/news/discover-the-latest-in-embeddings-at-emnlp-2023-in-person-bof-session/</link>
<pubDate>Fri, 01 Dec 2023 15:25:49 +0100</pubDate>
<guid isPermaLink="false">6569dc2e66eb300001a28a4b</guid>
<category><![CDATA[ Events ]]></category>
<description>Mark your calendars for an immersive BoF session on Embeddings at EMNLP 2023. Join us on December 9th from 11:00 AM to 12:30 PM, Singapore time, in the 'Aquarius 1' room for a deep dive into the latest embeddings.</description>
</item>
<item>
<title>SceneXplain's JSON Schema Store: Automate Your Alt-Text, and More!</title>
<link>https://jina.ai/news/scenexplains-json-schema-store-automate-your-alt-text-and-more/</link>
<pubDate>Mon, 27 Nov 2023 16:00:14 +0100</pubDate>
<guid isPermaLink="false">655f48ed14230d0001313816</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Take the hassle out of extracting data from images with SceneXplain's new JSON Schema Store. Discover and share reusable JSON schemas. Create, contribute, and access schemas easily through GUI or API</description>
</item>
<item>
<title>Artificial General Intelligence is Cursed, And Science Fiction isn't Helping</title>
<link>https://jina.ai/news/artificial-general-intelligence-is-cursed-and-science-fiction-isnt-helping/</link>
<pubDate>Mon, 20 Nov 2023 16:22:02 +0100</pubDate>
<guid isPermaLink="false">655b2361bb728c000101beaa</guid>
<category><![CDATA[ Insights ]]></category>
<description>AI is cursed by intellectual hubris, moving goalposts, bad incentives, and science fiction. Recent talk about Artificial General Intelligence only highlights those curses.</description>
</item>
<item>
<title>Jina AI’s 8K Embedding Models Hit AWS Marketplace for On-Prem Deployment</title>
<link>https://jina.ai/news/jina-ai-8k-embedding-models-hit-aws-marketplace-for-on-prem-deployment/</link>
<pubDate>Mon, 20 Nov 2023 15:32:57 +0100</pubDate>
<guid isPermaLink="false">65577ae1bb728c000101be6c</guid>
<category><![CDATA[ Press ]]></category>
<description>Jina AI launches 8K token length embedding v2 models on AWS marketplace, elevating enterprise AI deployments with EU-engineered innovation and a commitment to data sovereignty.</description>
</item>
<item>
<title>SceneXplain's OCR beats GPT-4V hands down: Chinese, Japanese, Korean, Arabic, Hindi, and more!</title>
<link>https://jina.ai/news/scenexplains-ocr-beats-gpt-4v-hands-down-chinese-japanese-korean-arabic-hindi-and-more/</link>
<pubDate>Thu, 16 Nov 2023 16:00:20 +0100</pubDate>
<guid isPermaLink="false">65537bd2c2c1f30001ea4816</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>SceneXplain beats GPT-4V by going beyond English, offering multilingual OCR for Chinese, Japanese, Korean, Arabic, Hindi and more</description>
</item>
<item>
<title>Embeddings in Depth</title>
<link>https://jina.ai/news/embeddings-in-depth/</link>
<pubDate>Wed, 15 Nov 2023 16:00:38 +0100</pubDate>
<guid isPermaLink="false">65535d16173d1400018405a8</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>This second article in our series on embedding technology is much more concrete. It explains where embeddings come from and how they are used.</description>
</item>
<item>
<title>Look, Up in the Sky! Using SceneXplain To Classify Land Use From Satellite Data</title>
<link>https://jina.ai/news/look-up-in-the-sky-using-scenexplain-to-classify-land-use-from-satellite-data/</link>
<pubDate>Mon, 06 Nov 2023 16:00:55 +0100</pubDate>
<guid isPermaLink="false">6544c26c2305600001855879</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Unlock the Secrets of the Satellites: Leverage SceneXplain's powerful 'Extract JSON from Image' feature for land use classification</description>
</item>
<item>
<title>Jina Embeddings 2: The Best Solution for Embedding Long Documents</title>
<link>https://jina.ai/news/jina-embeddings-2-the-best-solution-for-embedding-long-documents/</link>
<pubDate>Thu, 02 Nov 2023 16:00:06 +0100</pubDate>
<guid isPermaLink="false">65425e91d9dd650001cdb1b6</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>With Jina Embeddings 2 models you get high-quality embeddings from an open-source, downloadable model with an input size of 8,192 tokens.</description>
</item>
<item>
<title>Case Study: Revolutionizing E-Commerce User Experience And Streamlining Search With SceneXplain</title>
<link>https://jina.ai/news/case-study-revolutionizing-e-commerce-user-experience-and-streamlining-search-with-scenexplain/</link>
<pubDate>Mon, 30 Oct 2023 14:00:20 +0100</pubDate>
<guid isPermaLink="false">6537c300dcdd090001c7d12b</guid>
<category><![CDATA[ Knowledge Base ]]></category>
<description>See how SceneXplain enhanced search quality, and enriched user experience for a top European e-commerce platform.</description>
</item>
<item>
<title>How to Caption Image Segments with SceneXplain: Introducing Crop'n Explain</title>
<link>https://jina.ai/news/how-to-caption-image-segments-with-scenexplain-introducing-cropn-explain/</link>
<pubDate>Fri, 27 Oct 2023 16:00:37 +0200</pubDate>
<guid isPermaLink="false">65391d7fdcdd090001c7d24b</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>SceneXplain: Precise image insights, webcam uploads, multi-API keys, and more user-friendly updates.</description>
</item>
<item>
<title>Are you ready for this Jelly? SceneXplain’s new algo kills hallucinations dead</title>
<link>https://jina.ai/news/are-you-ready-for-this-jelly-scenexplains-new-algo-kills-hallucinations-dead/</link>
<pubDate>Wed, 25 Oct 2023 16:00:42 +0200</pubDate>
<guid isPermaLink="false">65366f5e6930100001517b53</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>SceneXplain's state-of-the-art Jelly algorithm is more concise, readable and accurate than ever before, while killing hallucinations.</description>
</item>
<item>
<title>Jina AI Launches World's First Open-Source 8K Text Embedding, Rivaling OpenAI</title>
<link>https://jina.ai/news/jina-ai-launches-worlds-first-open-source-8k-text-embedding-rivaling-openai/</link>
<pubDate>Wed, 25 Oct 2023 07:43:17 +0200</pubDate>
<guid isPermaLink="false">6538999ddcdd090001c7d17f</guid>
<category><![CDATA[ Press ]]></category>
<description>Jina AI introduces jina-embeddings-v2, the world's first open-source model boasting an 8K context length. Matching the prowess of OpenAI's proprietary models, this innovation is now publicly accessible on Huggingface, signaling a significant milestone in the landscape of text embeddings.</description>
</item>
<item>
<title>How Embeddings Drive AI: A Comprehensive Presentation</title>
<link>https://jina.ai/news/how-embeddings-drive-ai-a-guide/</link>
<pubDate>Thu, 19 Oct 2023 15:00:24 +0200</pubDate>
<guid isPermaLink="false">652fe2c6bd6ec2000125ee5c</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Embeddings are a core concept and technology in AI, present in some form across the spectrum of AI applications. Properly understanding and mastering this technology positions you to leverage AI models to add the most value to your business.</description>
</item>
<item>
<title>SceneXplain vs. GPT-4 Vision: The Best Image Captioning Tool in 2023?</title>
<link>https://jina.ai/news/scenexplain-vs-gpt-4-vision-the-best-image-captioning-tool-in-2023/</link>
<pubDate>Thu, 28 Sep 2023 16:29:26 +0200</pubDate>
<guid isPermaLink="false">65158235545c930001d5bcce</guid>
<category><![CDATA[ Knowledge Base ]]></category>
<description>Discover the future of visual comprehension with SceneXplain, the leading image captioning tool of 2023. Dive deep into its transformative features, real-world applications, and see how it stands tall against GPT-4 Vision. </description>
</item>
<item>
<title>SceneXplain's Image-to-JSON: Extract Structured Data from Images with Precision</title>
<link>https://jina.ai/news/scenexplains-image-json-extract-structured-data-images-precision/</link>
<pubDate>Thu, 14 Sep 2023 15:33:31 +0200</pubDate>
<guid isPermaLink="false">6502e68d602cba00018fe0b6</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Pushing the boundaries of visual AI, we're thrilled to unveil SceneXplain's Image-to-JSON feature. Dive into a world where images aren't just seen, but deeply understood, translating visuals into structured data with unparalleled precision.</description>
</item>
<item>
<title>Embeddings: The Swiss Army Knife of AI</title>
<link>https://jina.ai/news/embeddings-the-swiss-army-knife-of-ai/</link>
<pubDate>Wed, 13 Sep 2023 15:17:26 +0200</pubDate>
<guid isPermaLink="false">65002f0e5fa9490001805f9d</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Embeddings are an essential technology for modern AI. This article explains what they are and how they work.</description>
</item>
<item>
<title>PromptPerfect's LLM-as-a-Database is Blurring the Boundaries of Search vs. Generation</title>
<link>https://jina.ai/news/promptperfects-llm-database-blurring-boundaries-search-vs-generation/</link>
<pubDate>Mon, 11 Sep 2023 17:36:10 +0200</pubDate>
<guid isPermaLink="false">64ff24465fa9490001805ec5</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Diving into PromptPerfect's LLM-as-a-database: a middle ground between few-shot prompts and RAG. Its nuanced approach outshines GPT-4 in complex queries. Evolution in action.</description>
</item>
<item>
<title>Distilled AI: Using Large Models to Teach Smaller Ones</title>
<link>https://jina.ai/news/distilled-ai-using-large-models-to-teach-smaller-ones/</link>
<pubDate>Thu, 07 Sep 2023 15:31:38 +0200</pubDate>
<guid isPermaLink="false">64f88a2a5fa9490001805c0c</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Better AI with smaller models and cheaper data costs! But only if you use AI to train AI.</description>
</item>
<item>
<title>Do You Truly Need a Dedicated Vector Store?</title>
<link>https://jina.ai/news/do-you-truly-need-a-dedicated-vector-store/</link>
<pubDate>Fri, 01 Sep 2023 12:15:20 +0200</pubDate>
<guid isPermaLink="false">64f19fa38494b100010b84bb</guid>
<category><![CDATA[ Insights ]]></category>
<description>Unraveling vector search spaghetti: Lucene's charm vs. shiny vector stores. Navigating enterprise mazes & startup vibes. Where's search headed next?</description>
</item>
<item>
<title>How SceneXplain Solved Video-to-Text Comprehension</title>
<link>https://jina.ai/news/how-scenexplain-solves-video-to-text-comprehension/</link>
<pubDate>Wed, 30 Aug 2023 17:30:18 +0200</pubDate>
<guid isPermaLink="false">64ef42398494b100010b83d2</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Pushing the boundaries of video-to-text comprehension, SceneXplain unveils the Inception algorithm: decoding narratives, acknowledging challenges, and inviting firsthand exploration. Dive into the next frontier of video comprehension.</description>
</item>
<item>
<title>Graph Embedding 101: Unraveling the Magic of Relational Data</title>
<link>https://jina.ai/news/graph-embedding-101-unraveling-the-magic-of-relational-data/</link>
<pubDate>Tue, 29 Aug 2023 17:25:14 +0200</pubDate>
<guid isPermaLink="false">64edf4a71f253d0001ecf724</guid>
<category><![CDATA[ Knowledge Base ]]></category>
<description>Graphs → everywhere. Social. Knowledge. Molecular. Critical infrastructure. Complex hairy ball visuals. Hard for machines.
Now graph embeddings vectorize nodes. Distill graphs into geometry. Embeddings work magic. AI devours graphs.</description>
</item>
<item>
<title>Fine-Tuning GPT-3.5 Turbo: A Costly Mirage?</title>
<link>https://jina.ai/news/fine-tuning-gpt-3-5-turbo-a-costly-mirage/</link>
<pubDate>Fri, 25 Aug 2023 12:28:26 +0200</pubDate>
<guid isPermaLink="false">64e8757e1f253d0001ecf661</guid>
<category><![CDATA[ Insights ]]></category>
<description>Dissecting the allure of GPT-3.5 Turbo's fine-tuning: is it the next AI frontier or a costly endeavor? Dive into the delicate interplay of prompt engineering versus precise fine-tuning, and weigh the balance of promise against price.</description>
</item>
<item>
<title>Beyond Sheer Scale: Navigating AI Alignment Odyssey</title>
<link>https://jina.ai/news/the-boundless-horizon-of-ai-its-not-just-about-the-size/</link>
<pubDate>Thu, 24 Aug 2023 11:42:39 +0200</pubDate>
<guid isPermaLink="false">64e717a21f253d0001ecf5c3</guid>
<category><![CDATA[ Insights ]]></category>
<description>AI’s march forward isn't just about bigger models, but ensuring they harmonize with human values. Journey with us through the challenges, revelations, and aspirations at the forefront of AI safety and ethics.</description>
</item>
<item>
<title>Building a Streaming API for Llama 2: Real-time AI with Jina and DocArray</title>
<link>https://jina.ai/news/building-a-streaming-api-for-llama-2-real-time-ai-with-jina-and-docarray/</link>
<pubDate>Wed, 23 Aug 2023 15:50:54 +0200</pubDate>
<guid isPermaLink="false">64e4cf313b20ce0001bc63b4</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Tired of paying for ChatGPT? Want to have your own streaming AI chatbot, with your own engineered prompts running on your own servers or cloud? With Llama2, DocArray, and Jina, you can set it up in a few minutes!</description>
</item>
<item>
<title>Training Smarter, Not Harder: Slimming Down Sentence Embeddings</title>
<link>https://jina.ai/news/training-smarter-not-harder-slimming-sentence-embeddings/</link>
<pubDate>Wed, 23 Aug 2023 15:37:37 +0200</pubDate>
<guid isPermaLink="false">64e606e21f253d0001ecf533</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Jina AI trains top-tier sentence embeddings with 20% of the data. How? Maniacal filtering and shrewd sampling unmask the waste in Big Tech's data-hungry doctrine. Our streamlined embeddings rival titans' with meticulous curation, not mindless consumption. Technical ingenuity, not gluttony.</description>
</item>
<item>
<title>Beyond Pixels to Prose: SceneXplain's New Algorithm Breathes Audible Life into Images</title>
<link>https://jina.ai/news/beyond-pixels-to-prose-scenexplains-hearth-algorithm-breathes-audible-life-into-images/</link>
<pubDate>Mon, 21 Aug 2023 17:31:03 +0200</pubDate>
<guid isPermaLink="false">64e357cdfe64950001b0e275</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Discover the power of SceneXplain's Hearth Algorithm: turning images into captivating narratives. Dive deep into the tech behind it, explore real-world examples, and grasp its potential. Journey beyond pixels to stories at SceneXplain!</description>
</item>
<item>
<title>What's New in PromptPerfect? New Optimizer, Streaming and Bulk Optimization</title>
<link>https://jina.ai/news/whats-new-in-promptperfect-new-optimizer-streaming-bulk-optimization/</link>
<pubDate>Wed, 16 Aug 2023 16:00:00 +0200</pubDate>
<guid isPermaLink="false">64dcc100fe64950001b0e141</guid>
<category><![CDATA[ Releases ]]></category>
<description>PromptPerfect's brand new features are fresh out of the oven - try our new optimizer, streaming from Prompt-as-Service, and bulk prompt optimization</description>
</item>
<item>
<title>BestBanner 0.6: Unleash the Power of Social Marketing with Stunning Banners & Titles</title>
<link>https://jina.ai/news/bestbanner-0-6-unleash-the-power-of-social-marketing-with-these-stunning-banners-and-titles/</link>
<pubDate>Mon, 14 Aug 2023 13:01:55 +0200</pubDate>
<guid isPermaLink="false">64d348f0d093db00013b4b43</guid>
<category><![CDATA[ Releases ]]></category>
<description>The latest BestBanner release will transform your banner generation experience! Just paste in your content, and let BestBanner surprise you.</description>
</item>
<item>
<title>From Words to Art: Create Your Dream Stickers with Stable Diffusion</title>
<link>https://jina.ai/news/from-words-to-art-create-your-dream-stickers-with-stable-diffusion/</link>
<pubDate>Mon, 07 Aug 2023 15:30:59 +0200</pubDate>
<guid isPermaLink="false">64c8ed6a180f110001883c41</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Dive into the world of Stable Diffusion and Prompt Engineering by fine-tuning your own LoRA, converting your words into stunning art and bringing your dream stickers to life.</description>
</item>
<item>
<title>A Guide for Super-Resolution- Ordinary to Extraordinary with Inference</title>
<link>https://jina.ai/news/a-guide-for-super-resolution-ordinary-to-extraordinary-with-inference/</link>
<pubDate>Thu, 03 Aug 2023 14:00:58 +0200</pubDate>
<guid isPermaLink="false">64ca0eb6376e6300014fca49</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Dive into the realm of generative AI as we unravel, compare, and implement super-resolution models for image upscaling on Jina AI Cloud.</description>
</item>
<item>
<title>Taming OpenAI's Function Call: A Dive into PromptPerfect's Function Debugger</title>
<link>https://jina.ai/news/taming-openais-function-call-a-dive-into-promptperfects-function-debugger/</link>
<pubDate>Tue, 01 Aug 2023 20:36:52 +0200</pubDate>
<guid isPermaLink="false">64c8fb7a180f110001883ccf</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Discover how PromptPerfect simplifies function calls in OpenAI's language models, offering auto JSON Schema generation, advanced debugging, and more.</description>
</item>
<item>
<title>Fine-Tuning Falcon40b for Code Generation</title>
<link>https://jina.ai/news/fine-tuning-falcon40b-for-code-generation/</link>
<pubDate>Mon, 24 Jul 2023 13:19:48 +0200</pubDate>
<guid isPermaLink="false">64b8e83f36cabc00013ceb56</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Falcon40b is an open-source commercial-use friendly large language model. We've trained it to write code.</description>
</item>
<item>
<title>Read My Pics: SceneXplain Puts OCR in Your Visual Question Answering!</title>
<link>https://jina.ai/news/read-my-pics-you-got-ocr-in-my-visual-question-answering/</link>
<pubDate>Thu, 20 Jul 2023 15:30:58 +0200</pubDate>
<guid isPermaLink="false">64b7d2560433c700015c3190</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>We're turbocharging SceneXplain's visual question answering with an OCR upgrade, making it easier than ever to get answers out of your images</description>
</item>
<item>
<title>VectorDB: a Python vector database you just need - no more, no less</title>
<link>https://jina.ai/news/vectordb-a-python-vector-database-you-just-need-no-more-no-less/</link>
<pubDate>Fri, 14 Jul 2023 13:22:20 +0200</pubDate>
<guid isPermaLink="false">64b129246b8a06000104b0d5</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>VectorDB is a Pythonic vector database offers a comprehensive suite of CRUD operations and robust scalability options, including sharding and replication. It's readily deployable in a variety of environments, from local to on-premise and cloud. vectordb delivers exactly what you need.</description>
</item>
<item>
<title>Redefining Text-to-Image: How BestBanner Outperforms Midjourney and Stable Diffusion - A Benchmark Analysis</title>
<link>https://jina.ai/news/redefining-text-to-image-how-bestbanner-outperforms-midjourney-and-stable-diffusion-a-benchmark-analysis/</link>
<pubDate>Wed, 12 Jul 2023 15:30:14 +0200</pubDate>
<guid isPermaLink="false">64ad663b733bc60001949b6f</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>BestBanner is an AI-powered text-to-image generation system. It takes article text as input and generates high-quality social media banners. This saves you from the task of crafting images and lets you focus on creating content.</description>
</item>
<item>
<title>LangChain-serve: Powering your Slack with LangChain</title>
<link>https://jina.ai/news/langchain-serve-powering-your-slack-with-langchain/</link>
<pubDate>Thu, 06 Jul 2023 14:53:11 +0200</pubDate>
<guid isPermaLink="false">64a67145d6e67d0001bb52ae</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Langchain-serve makes deployment and delivery of LangChain apps simple, taking one less hassle out of producing your AI applications.</description>
</item>
<item>
<title>DocArray and the Otter Model: Native multi-modal AI meets native multi-modal data structures</title>
<link>https://jina.ai/news/docarray-and-the-otter-model-native-multi-modal-ai-meets-native-multi-modal-data-structures/</link>
<pubDate>Tue, 04 Jul 2023 16:15:52 +0200</pubDate>
<guid isPermaLink="false">64a405b28b88230001c7deb5</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>We all love when a perfect couple finds each other, like DocArray and Otter.</description>
</item>
<item>
<title>Brand Engagement Reimagined: AI-Powered Sentiment Analysis with SceneXplain</title>
<link>https://jina.ai/news/brand-engagement-reimagined-ai-powered-sentiment-analysis-with-scenexplain/</link>
<pubDate>Mon, 03 Jul 2023 15:30:43 +0200</pubDate>
<guid isPermaLink="false">649a9858abbd1d0001f4eb96</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Digging deep into images to uncover sentiment and brand can be a wild ride. Tackle it with SceneXplain, and you've got yourself a business power-up, ready to take the market by storm</description>
</item>
<item>
<title>Making Visuals Vocal: SceneXplain's Impact on Product Image Accessibility</title>
<link>https://jina.ai/news/making-visuals-vocal-scenexplains-impact-on-product-image-accessibility/</link>
<pubDate>Thu, 29 Jun 2023 16:00:18 +0200</pubDate>
<guid isPermaLink="false">649d5d5a30b65b0001166dbf</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>SceneXplain transforms product images into audio descriptions, ensuring visual content isn't just seen, but also heard and understood. It's a step forward in creating an inclusive digital world for everyone</description>
</item>
<item>
<title>Don’t Build the Thing, Build the Thing that Builds the Thing!</title>
<link>https://jina.ai/news/dont-build-the-thing-build-the-thing-that-builds-the-thing/</link>
<pubDate>Wed, 28 Jun 2023 14:25:21 +0200</pubDate>
<guid isPermaLink="false">649be65730b65b0001166c84</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Dev-GPT is a tool that uses LLMs to build custom microservices, replacing the traditional software development process with AI. Just describe a service in natural language and a virtual development team will generate, debug, and deploy it for you.</description>
</item>
<item>
<title>Langchain-serve: Bringing LangChain Apps Closer to Your Users</title>
<link>https://jina.ai/news/langchain-serve-bringing-langchain-apps-closer-to-your-users/</link>
<pubDate>Tue, 27 Jun 2023 16:13:21 +0200</pubDate>
<guid isPermaLink="false">649ad32f30b65b0001166aa0</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Langchain-serve makes deployment and delivery of LangChain apps simple, taking one less hassle out of producing your AI applications.</description>
</item>
<item>
<title>What's Next for Prompt Engineering? PromptPerfect's Prompt as a Service!</title>
<link>https://jina.ai/news/whats-next-for-prompt-engineering-prompts-as-a-service/</link>
<pubDate>Thu, 22 Jun 2023 16:00:50 +0200</pubDate>
<guid isPermaLink="false">64940e8aabbd1d0001f4e9f9</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Deploy prompts and flexible template prompts as REST API services, and integrate them into your applications with just a few clicks</description>
</item>
<item>
<title>Traditional Prompt Engineering Is Dead. PromptPerfect is What Comes Next</title>
<link>https://jina.ai/news/traditional-prompt-engineering-is-dead-heres-what-comes-next/</link>
<pubDate>Thu, 15 Jun 2023 16:17:12 +0200</pubDate>
<guid isPermaLink="false">64897cab6334000001649153</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>AI is coming to replace even the prompt engineers. Use PromptPerfect to stay ahead of the crowd and optimize your prompts for LLMs and image generation</description>
</item>
<item>
<title>Boosting AI Model Performance: Fine-tuning with Synthetic Data for Enhanced Results</title>
<link>https://jina.ai/news/boosting-ai-model-performance-fine-tuning-with-synthetic-data-for-enhanced-results/</link>
<pubDate>Wed, 07 Jun 2023 17:11:33 +0200</pubDate>
<guid isPermaLink="false">648097219f8c8000019c70bd</guid>
<category><![CDATA[ Tech Blog ]]></category>
<description>Using Finetuner for data synthesis means that adapting your AI-powered information retrieval system to your domain is now as easy as collecting your logs.</description>
</item>
<item>
<title>Inference: How Can Jina AI Offer the Best-in-Class Model-as-a-Service So Affordably?</title>