-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.json
5312 lines (5312 loc) · 181 KB
/
demo.json
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
[
{
"Private": null,
"Client": "Straive",
"Project": "Inquiry Response",
"Description": "Customer Inquiry Response Generator uses LLM to generate positive and empathetic responses to customer inquiries.",
"Link": "https://gramener.com/customerresponse/",
"Date": 1733356800000,
"Contact": "prudhvi.krovvidi@straive.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": null,
"Function": "Customer Service",
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Straive",
"Project": "Agent Notes",
"Description": "Leverage LLMs to summarize customer interactions with concise, actionable post-call documentation.",
"Link": "https://gramener.com/agentnotes/",
"Date": 1733356800000,
"Contact": "prudhvi.krovvidi@straive.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": null,
"Function": "Customer Service",
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Straive",
"Project": "LLM Model Picker",
"Description": "Compare and select the best AI models based on features like input/output tokens, cost, and supported data types.",
"Link": "https://llmfoundry.straive.com/models",
"Date": 1733011200000,
"Contact": "s.anand@gramener.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": null,
"Function": null,
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Straive",
"Project": "Video Chat",
"Description": "Ask questions verbally to a video knowledge base. Dynamically create a video response to a question. Train using video",
"Link": "https://videochat.straive.app/",
"Date": 1732924800000,
"Contact": "s.anand@gramener.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": null,
"Function": null,
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": "Private",
"Client": "MHE",
"Project": "Student Assist",
"Description": "Allow publishers to provide guided assistance to students by answering specific queries actionably from knowledge bases.",
"Link": "https://gramener.com/docsearch/mhe/chat",
"Date": 1732665600000,
"Contact": "s.anand@gramener.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": "Publishing",
"Function": "Customer Service",
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Straive",
"Project": "Check Fraud",
"Description": "Assess check fraud risk by applying rule-based analyses on scanned checks and highlighting high-risk transactions.",
"Link": "https://checkfraud.straivedemo.com/",
"Date": 1732665600000,
"Contact": "mayank.bhatia@straive.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": "Financial services",
"Function": null,
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Straive",
"Project": "Automated Reconciliation Tool",
"Description": "Automates transaction and account reconciliation processes",
"Link": "https://reconcileai.straivedemo.com/",
"Date": 1732060800000,
"Contact": "raghav.singh@straive.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": "Investment Management",
"Function": "Analytics",
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Straive",
"Project": "ESG Topic Modeling",
"Description": "Identifies emerging ESG themes in unstructured data",
"Link": "https://uat.gramener.com/msci-docexplore/mg-analysis/",
"Date": 1732060800000,
"Contact": "deepika.gundlapalli@gramener.com",
"Username": null,
"Password": null,
"Tech": "Data Management, Analytics, Gen AI",
"Industry": "Investment Management",
"Function": null,
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Straive",
"Project": "ESG KPI Scoring",
"Description": "Scores portfolios on ESG-aligned key performance indicators",
"Link": "https://uat.gramener.com/msci-docscoring/",
"Date": 1732060800000,
"Contact": "deepika.gundlapalli@gramener.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": "Investment Management, Energy",
"Function": "ESG",
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Straive",
"Project": "Adverse Event Monitoring",
"Description": "Tracks significant risk events affecting portfolios",
"Link": "https://gramener.com/adverseevents/",
"Date": 1732060800000,
"Contact": "dharmendra.singh@straive.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": "Investment Management",
"Function": null,
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Novartis",
"Project": "Adverse Events",
"Description": "Use multi-agent workflows to accurately identify if a patient feedback is an adverse event",
"Link": "https://adverseevents.straive.app/",
"Date": 1731715200000,
"Contact": "s.anand@gramener.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": "Pharma and Life Sciences",
"Function": null,
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Straive",
"Project": "LLM Foundry Flow",
"Description": "Explore the real-time usage of LLM Foundry animating each request users in Straive make",
"Link": "https://llmfoundry.straive.com/logflow",
"Date": 1731628800000,
"Contact": "s.anand@gramener.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": null,
"Function": null,
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Straive",
"Project": "LLM Foundry Adoption",
"Description": "Explore the real-time adoption of LLM Foundry within each team in Straive visually",
"Link": "https://llmfoundry.straive.com/adoption",
"Date": 1731628800000,
"Contact": "s.anand@gramener.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": null,
"Function": null,
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Straive",
"Project": "LLM Foundry Speak",
"Description": "Convert text into speech by selecting a model, voice type, and audio format to generate high-quality audio files.",
"Link": "https://llmfoundry.straive.com/speak",
"Date": 1731196800000,
"Contact": "s.anand@gramener.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": null,
"Function": null,
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Straive",
"Project": "LLM Dialog",
"Description": "Allow LLMs to talk to each other, creating new body of knowledge",
"Link": "https://llmdialog.straive.app/",
"Date": 1730592000000,
"Contact": "s.anand@gramener.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": null,
"Function": null,
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Roche",
"Project": "Clinical Trials API Agent",
"Description": "Answer questions from relevant clinical trials from ClinicalTrials.gov using LLMs",
"Link": "https://clinicaltrialsapi.straive.app/",
"Date": 1730246400000,
"Contact": "s.anand@gramener.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": "Pharma and Life Sciences",
"Function": null,
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Straive",
"Project": "JD Matcher",
"Description": "Analyze candidate resumes against a job description using LLMs to find the best matches",
"Link": "https://jd.straive.app/",
"Date": 1730160000000,
"Contact": "prudhvi.krovvidi@straive.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": null,
"Function": null,
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "ScotiaBank",
"Project": "Incidents Analysis",
"Description": "Identify the main drivers of IT incidents among trading applications. Analyze and recommend actions using LLMs",
"Link": "https://incidents.straive.app/",
"Date": 1730160000000,
"Contact": "s.anand@gramener.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": "Financial services",
"Function": null,
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Straive",
"Project": "LinkedIn Summary",
"Description": "Generate personalized insights from LinkedIn profiles to help sales & marketing teams prepare for meetings",
"Link": "https://gramener.com/linkedinsummary/",
"Date": 1729382400000,
"Contact": "prudhvi.krovvidi@straive.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": null,
"Function": "Marketing",
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Straive",
"Project": "PDF Summary",
"Description": "Summarize and create an abstract for a PDF chapter from a book",
"Link": "https://pdfsummary.straive.app/",
"Date": 1728864000000,
"Contact": "hariharan.chandran@straive.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": "Publishing",
"Function": null,
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Straive",
"Project": "Report Gen",
"Description": "Automatically generate reports from data using templates and summarize with Gen AI",
"Link": "https://reportgen.straive.app/",
"Date": 1729036800000,
"Contact": "s.anand@gramener.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": null,
"Function": null,
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Straive",
"Project": "Prompt Evals",
"Description": "Evaluate the quality of prompts and models. Use LLMs to improve their quality systematically",
"Link": "https://promptevals.straive.app/",
"Date": 1728864000000,
"Contact": "s.anand@gramener.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": null,
"Function": null,
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Straive",
"Project": "LLM Personality",
"Description": "What personality traits to different LLMs exhibit? Explore the psychology of LLMs using the Big 5 test",
"Link": "https://llmpersonality.straive.app/",
"Date": 1728518400000,
"Contact": "s.anand@gramener.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": null,
"Function": null,
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Straive",
"Project": "Hip Surgery Videos",
"Description": "Search and answer questions from videos of hip surgery using the visuals, despite lack of audio",
"Link": "https://gramener.com/docsearch/hipreplacement/",
"Date": 1728259200000,
"Contact": "s.anand@gramener.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": "Pharma and Life Sciences",
"Function": null,
"Solution": "DocChat",
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Straive",
"Project": "Image Extract",
"Description": "Extract structured information from images across industries using LLMs",
"Link": "https://imageextract.straive.app/",
"Date": 1728000000000,
"Contact": "prudhvi.krovvidi@straive.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": "Financial services",
"Function": null,
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Straive",
"Project": "Deal News",
"Description": "Extract deal news (investor, company, deal size, PE/VC, etc.) from major deal news sites",
"Link": "https://dealnews.straive.app/",
"Date": 1726963200000,
"Contact": "s.anand@gramener.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": "Financial services",
"Function": null,
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Straive",
"Project": "Network Explorer",
"Description": "A visual interface for knowledge graphs. Upload your CSV to see a knowledge graph",
"Link": "https://network.straive.app/",
"Date": 1726617600000,
"Contact": "s.anand@gramener.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": null,
"Function": "IT",
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Straive",
"Project": "WhatsLLM",
"Description": "A WhatsApp bot that can answer author questions about manuscript status (or anything else)",
"Link": "https://wa.me/+6586452570",
"Date": 1726444800000,
"Contact": "priyanka.raju@gramener.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": "Publishing",
"Function": "IT",
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Straive",
"Project": "Status Assist",
"Description": "Status checks are ~25% of publishing support requests. This automates email replies to status checks.",
"Link": "https://paperstatus.straive.app/",
"Date": 1726272000000,
"Contact": "priyanka.raju@gramener.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": "Publishing",
"Function": "IT",
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Straive",
"Project": "IT Chat",
"Description": "Finding the status of your IT service request via a Google Chat message (or Teams, WhatsApp, etc.)",
"Link": "https://itchat.straive.app/",
"Date": 1726099200000,
"Contact": "s.anand@gramener.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": null,
"Function": "IT",
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Straive",
"Project": "DataChat v2",
"Description": "Talk to your dataset - directly in the browser. It converts text to SQL and explains the answer.",
"Link": "https://datachat.straive.app/",
"Date": 1725926400000,
"Contact": "s.anand@gramener.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": null,
"Function": "IT",
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Straive",
"Project": "Contract Redlining",
"Description": "Analyze documents for errors and redline them for edits (like track changes in Word)",
"Link": "https://gramener.com/contractredlining/",
"Date": 1725148800000,
"Contact": "s.anand@gramener.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": null,
"Function": null,
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Straive",
"Project": "aiKira Collab",
"Description": "Implement a comprehensive email management system to streamline communication, track client requests, and identify risk emails in the absence of a project manager",
"Link": "https://aikira.straive.com/",
"Date": 1724371200000,
"Contact": "aikirasupport@straive.com, balraj.balakrishnan@straive.com, sathya.narayana@straive.com,indhu.prasanna@straive.com",
"Username": "Your Email Id",
"Password": null,
"Tech": "Gen AI",
"Industry": "Publishing",
"Function": "Customer Service",
"Solution": "Email Management",
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Straive",
"Project": "Alt Text",
"Description": "Generate Alt Text from images for accessibility",
"Link": "https://space.straive.com/uploadFileForAltTextV2/gramener",
"Date": 1724025600000,
"Contact": "spacesupport@straive.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": "Publishing",
"Function": "Operations",
"Solution": "Spark.ai",
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Straive",
"Project": "Chat Assist",
"Description": "Real-time assistants for customer support that summarizes, audits and suggests responses",
"Link": "https://gramener.com/chatassist/",
"Date": 1722470400000,
"Contact": "aayush.thakur@gramener.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": null,
"Function": "Operations",
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Straive",
"Project": "Auto Loan Defaults",
"Description": "Identify key factors contributing to auto loan defaults and DPD to inform risk management and collections strategies",
"Link": "https://gramener.com/autoloaninsighttree/",
"Date": 1722470400000,
"Contact": "aayush.thakur@gramener.com",
"Username": null,
"Password": null,
"Tech": "Viz",
"Industry": "Financial services",
"Function": "Risk",
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "MBT",
"Project": "Video Search",
"Description": "Search videos with plain text. Videos were segmented at keyframes and described along with the objects.",
"Link": "https://gramener.com/docsearch/videosearch/",
"Date": 1721606400000,
"Contact": "s.anand@gramener.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": "Media",
"Function": null,
"Solution": "DocChat",
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Elsevier",
"Project": "Paper Retractions",
"Description": "Analyze the top reasons for paper retractions and the authors of paper-mill articles",
"Link": "https://gramener.com/paperretractions/",
"Date": 1719964800000,
"Contact": "aayush.thakur@gramener.com",
"Username": null,
"Password": null,
"Tech": "Viz",
"Industry": "Publishing",
"Function": null,
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "LN Tax",
"Project": "Grading Assistant",
"Description": "Automatically evaluate subjective answers based on a grading guide with feedback",
"Link": "https://gramener.com/gradingassist/",
"Date": 1719964800000,
"Contact": "jaidev.deshpande@gramener.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": "Education",
"Function": "Operations",
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Preqin ",
"Project": "News Extraction",
"Description": "Extract text/news from news articles/links",
"Link": null,
"Date": 1719878400000,
"Contact": "kruti.singhal@straive.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": null,
"Function": null,
"Solution": "Spark.ai",
"Featured": null,
"Video": "https://drive.google.com/file/d/1LxccsPxqzjomiAjsypriWjd91lM02DV_/view?usp=drive_linkk",
"Case": null
},
{
"Private": null,
"Client": "MSCI",
"Project": "Blimp",
"Description": "Extract relevant data points from 2,000 ESG documents using rule engines, ML models and LLMs",
"Link": null,
"Date": 1719878400000,
"Contact": "kruti.singhal@straive.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": null,
"Function": "ESG",
"Solution": "Spark.ai",
"Featured": null,
"Video": "https://drive.google.com/file/d/1IrLceBvSGJjmQBO_yJh9hVw0jR9chtZI/view?usp=drive_link",
"Case": null
},
{
"Private": null,
"Client": "Preqin",
"Project": "Form Extraction",
"Description": "Extract financial data from Form LP6, 5500, Capital Call & other financial forms using rule engines, ML models and LLMs",
"Link": null,
"Date": 1719878400000,
"Contact": "kruti.singhal@straive.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": null,
"Function": null,
"Solution": "Spark.ai",
"Featured": null,
"Video": "https://drive.google.com/file/d/1rCM2ZARZzI19ZijrTljSi8HOhiCX2UmN/view?usp=drive_link",
"Case": null
},
{
"Private": null,
"Client": "Internal",
"Project": "Captcha Demo",
"Description": "Extract content from websites protected by captchas",
"Link": null,
"Date": 1719878400000,
"Contact": "kayalvizhi.sundararajan@straive.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": null,
"Function": null,
"Solution": "Spark.ai",
"Featured": null,
"Video": "https://drive.google.com/file/d/1h3o36zepbYdN3ahTS2vV9J3sGVNeE7FV/view?usp=drive_link",
"Case": null
},
{
"Private": null,
"Client": "Fitch",
"Project": "Hitch Wharf",
"Description": "Extract financial data from company annual reports",
"Link": null,
"Date": 1719878400000,
"Contact": "kayalvizhi.sundararajan@straive.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": "Financial services",
"Function": null,
"Solution": "Spark.ai",
"Featured": null,
"Video": "https://drive.google.com/file/d/1vTTcnINeO5uxtHVCLWxsRlDolcJP1lv8/view?usp=drive_link",
"Case": null
},
{
"Private": null,
"Client": "IAPD",
"Project": "Web Monitor",
"Description": "Monitor IAPD website for new filings and changes to existing filings",
"Link": null,
"Date": 1719878400000,
"Contact": "kruti.singhal@straive.com",
"Username": null,
"Password": null,
"Tech": "Scraping",
"Industry": null,
"Function": null,
"Solution": "Spark.ai",
"Featured": null,
"Video": "https://drive.google.com/file/d/11yB9Cn_8Ba_Xbqm9Q-NNkOIqxJYEcgot/view?usp=drive_link",
"Case": null
},
{
"Private": null,
"Client": "PEI",
"Project": "Entity Extraction New",
"Description": "Web monitoring with subscription and entity extraction using LLM Models",
"Link": null,
"Date": 1719878400000,
"Contact": "kruti.singhal@straive.com",
"Username": null,
"Password": null,
"Tech": "Scraping",
"Industry": null,
"Function": null,
"Solution": "Spark.ai",
"Featured": null,
"Video": "https://drive.google.com/file/d/1vv2-r1NgrcENiJwPinYSP4xNJRCKpDh9/view?usp=drive_link",
"Case": null
},
{
"Private": null,
"Client": "VFS",
"Project": "Transcription",
"Description": "Transcribe call recordings and diarize them to identify call sentiment",
"Link": null,
"Date": 1719878400000,
"Contact": "kruti.singhal@straive.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": null,
"Function": null,
"Solution": "Spark.ai",
"Featured": null,
"Video": "https://drive.google.com/file/d/1fCHTjkJ34GpE-0Q6DkXU8bpx5qVfC3y6/view?usp=drive_link",
"Case": null
},
{
"Private": null,
"Client": "VFS",
"Project": "Call Emotion",
"Description": "Identify the emotion expressed by customers during a call and respond appropriately",
"Link": "https://gramener.com/callemotion/",
"Date": 1719446400000,
"Contact": "jaidev.deshpande@gramener.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": null,
"Function": "Support",
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "CBRE",
"Project": "Work Interactions",
"Description": "Explore which teams interact the most and least and plan facilities accordingly",
"Link": "https://workinteractions.straive.app/",
"Date": 1718841600000,
"Contact": "s.anand@gramener.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": null,
"Function": "HR",
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "OpenText",
"Project": "Cyber Risk Analysis",
"Description": "The Threat Research Hub allows risk analysts to explore cyber threats with advanced analysis",
"Link": "https://threatresearch.arcsight.com/analytics ",
"Date": 1718582400000,
"Contact": "shravankumar.a@gramener.com",
"Username": "Your email",
"Password": null,
"Tech": "AI-ML",
"Industry": null,
"Function": "IT",
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Loughs Agency",
"Project": "Fish Counter AI",
"Description": "Count the number of fish by species to empower sustainable marine management",
"Link": "https://uat.gramener.com/loughs-agency-fish-counter-ai/",
"Date": 1718582400000,
"Contact": "aastha.bhatia@gramener.com",
"Username": "alpha",
"Password": "alpha@09876!!",
"Tech": "AI-ML",
"Industry": "Government",
"Function": "ESG",
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "J&J",
"Project": "Distribution Cost Simulation",
"Description": "Identify where distribution cost can be reduced and what levers have most impact",
"Link": "https://jnj-scintelligence.com/",
"Date": 1718582400000,
"Contact": "arpit.srivastava@gramener.com",
"Username": "Your email",
"Password": null,
"Tech": "AI-ML",
"Industry": "Pharma and Life Sciences",
"Function": "Supply Chain",
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Novartis",
"Project": "Complaints Closure",
"Description": "Generate closure letters for customer service complaints",
"Link": "https://closurelettergen.azurewebsites.net/",
"Date": 1718582400000,
"Contact": "vamsi.suggula@gramener.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": "Pharma and Life Sciences",
"Function": "Operations",
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Novartis",
"Project": "Novasense",
"Description": "Code-first agent framework for seamlessly planning and executing data analytics tasks",
"Link": "https://novasense.azurewebsites.net/",
"Date": 1718582400000,
"Contact": "vamsi.suggula@gramener.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": "Pharma and Life Sciences",
"Function": "Operations",
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Novartis",
"Project": "Synthetic data",
"Description": "Generate synthetic data for use in anonymization in clinical trials",
"Link": "https://syntheticdatagenerate.azurewebsites.net/",
"Date": 1718582400000,
"Contact": "vamsi.suggula@gramener.com",
"Username": null,
"Password": null,
"Tech": "Gen AI",
"Industry": "Pharma and Life Sciences",
"Function": "Operations",
"Solution": null,
"Featured": null,
"Video": null,
"Case": null
},
{
"Private": null,
"Client": "Novartis",
"Project": "JD Evaluator",
"Description": "Evaluate a job description based on clarity of role, attractiveness, diversity, etc.",
"Link": "https://contentevaluation.azurewebsites.net/",
"Date": 1718582400000,
"Contact": "vamsi.suggula@gramener.com",
"Username": null,