-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.log
More file actions
2254 lines (2250 loc) Β· 110 KB
/
app.log
File metadata and controls
2254 lines (2250 loc) Β· 110 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
π Using local storage at: /Users/aaravgarg/omi-ai/Code/apps/slack
/Users/aaravgarg/omi-ai/Code/apps/slack/main.py:130: DeprecationWarning:
on_event is deprecated, use lifespan event handlers instead.
Read more about it in the
[FastAPI docs for Lifespan Events](https://fastapi.tiangolo.com/advanced/events/).
@app.on_event("startup")
/Users/aaravgarg/omi-ai/Code/apps/slack/main.py:138: DeprecationWarning:
on_event is deprecated, use lifespan event handlers instead.
Read more about it in the
[FastAPI docs for Lifespan Events](https://fastapi.tiangolo.com/advanced/events/).
@app.on_event("shutdown")
INFO: Will watch for changes in these directories: ['/Users/aaravgarg/omi-ai/Code/apps/slack']
INFO: Uvicorn running on http://0.0.0.0:8000 (Press CTRL+C to quit)
INFO: Started reloader process [5190] using StatReload
β
Loaded 1 users from storage
π¬ OMI Slack Messages Integration
==================================================
β
Using file-based storage
π Starting on 0.0.0.0:8000
==================================================
π Using local storage at: /Users/aaravgarg/omi-ai/Code/apps/slack
INFO: Started server process [5193]
INFO: Waiting for application startup.
β
Loaded 1 users from storage
β
Background timeout monitor started
π Timeout monitor started
INFO: Application startup complete.
WARNING: StatReload detected changes in 'slack_client.py'. Reloading...
INFO: Shutting down
INFO: Waiting for application shutdown.
π Background timeout monitor stopped
INFO: Application shutdown complete.
INFO: Finished server process [5193]
π Using local storage at: /Users/aaravgarg/omi-ai/Code/apps/slack
INFO: Started server process [5282]
INFO: Waiting for application startup.
β
Loaded 1 users from storage
β
Background timeout monitor started
π Timeout monitor started
INFO: Application startup complete.
π₯ Received 1 segment(s) from OMI
Segment 0: Yeah, bitte.
π Created new session: omi_session_GPW9BKkHYWMkGTv3iSndMRAPS2B2
π Session state: mode=idle, count=0
π Received: 'Yeah, bitte.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: On, you know, on his
π Session state: mode=idle, count=0
π Received: 'On, you know, on his'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 2 segment(s) from OMI
Segment 0: clone. Right?
Segment 1: He told at all public events.
π Session state: mode=idle, count=0
π Received: 'clone. Right? He told at all public events.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 2 segment(s) from OMI
Segment 0: For 1 year. Yeah.
Segment 1: That's pretty good.
π Session state: mode=idle, count=0
π Received: 'For 1 year. Yeah. That's pretty good.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: Because he's meeting like extremely extremely good people.
π Session state: mode=idle, count=0
π Received: 'Because he's meeting like extremely extremely good people.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: Third 1 is crazy equity.
π Session state: mode=idle, count=0
π Received: 'Third 1 is crazy equity.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: I just want to get it done now. Doesn't matter. It would do, like,
π Session state: mode=idle, count=0
π Received: 'I just want to get it done now. Doesn't matter. It would do, like,'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: hour later. It's like, when I was gonna mark. Yeah.
π Session state: mode=idle, count=0
π Received: 'hour later. It's like, when I was gonna mark. Yeah.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: Even but even for stuff he's doing.
π Session state: mode=idle, count=0
π Received: 'Even but even for stuff he's doing.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: True.
π Session state: mode=idle, count=0
π Received: 'True.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: America would pay
π Session state: mode=idle, count=0
π Received: 'America would pay'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 2 segment(s) from OMI
Segment 0: pay the person like him.
Segment 1: Mhmm.
π Session state: mode=idle, count=0
π Received: 'pay the person like him. Mhmm.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: Means it's exactly It's so true.
π Session state: mode=idle, count=0
π Received: 'Means it's exactly It's so true.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: Yeah. Right there?
π Session state: mode=idle, count=0
π Received: 'Yeah. Right there?'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 5 segment(s) from OMI
Segment 0: Oh. 0, so he was what was he doing?
Segment 1: Was he They were doing like personally, I
Segment 2: Or Oh, they were building a startup.
π Session state: mode=idle, count=0
π Received: 'Oh. 0, so he was what was he doing? Was he They were doing like personally, I Or Oh, they were building a startup. Shit on me. He was'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 2 segment(s) from OMI
Segment 0: Yeah.
Segment 1: Makes sense. India Point makes sense.
π Session state: mode=idle, count=0
π Received: 'Yeah. Makes sense. India Point makes sense.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: Support
π Session state: mode=idle, count=0
π Received: 'Support'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: in building India based team operations and
π Session state: mode=idle, count=0
π Received: 'in building India based team operations and'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: dedicated promotion across all my channels,
π Session state: mode=idle, count=0
π Received: 'dedicated promotion across all my channels,'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: Yeah. I think 25 percent equity hit
π Session state: mode=idle, count=0
π Received: 'Yeah. I think 25 percent equity hit'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: doesn't deserve yet.
π Session state: mode=idle, count=0
π Received: 'doesn't deserve yet.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: At least right now.
π Session state: mode=idle, count=0
π Received: 'At least right now.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: We could maybe, like, trial, like,
π Session state: mode=idle, count=0
π Received: 'We could maybe, like, trial, like,'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 2 segment(s) from OMI
Segment 0: option second Uh-huh.
Segment 1: Offer With cache? Okay.
π Session state: mode=idle, count=0
π Received: 'option second Uh-huh. Offer With cache? Okay.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: No cash. Right?
π Session state: mode=idle, count=0
π Received: 'No cash. Right?'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: 5 percent?
π Session state: mode=idle, count=0
π Received: '5 percent?'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: Yeah.
π Session state: mode=idle, count=0
π Received: 'Yeah.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: 5 percent equity, no
π Session state: mode=idle, count=0
π Received: '5 percent equity, no'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: cash. I'm curious how will vesting work in this? How does vesting work in advisory?
π Session state: mode=idle, count=0
π Received: 'cash. I'm curious how will vesting work in this? How does vesting work in advisory?'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: In advisory?
π Session state: mode=idle, count=0
π Received: 'In advisory?'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: Yeah. But what is it based on?
π Session state: mode=idle, count=0
π Received: 'Yeah. But what is it based on?'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 2 segment(s) from OMI
Segment 0: What is
Segment 1: 2 years? Months, just like every month,
π Session state: mode=idle, count=0
π Received: 'What is 2 years? Months, just like every month,'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: But like
π Session state: mode=idle, count=0
π Received: 'But like'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: example in normal vesting, if a person leaves at
π Session state: mode=idle, count=0
π Received: 'example in normal vesting, if a person leaves at'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: the vesting ends. Yes. How does it matter for it? Like, top advising.
π Session state: mode=idle, count=0
π Received: 'the vesting ends. Yes. How does it matter for it? Like, top advising.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 2 segment(s) from OMI
Segment 0: Oh. We can also stop at home.
Segment 1: Okay. So if they
π Session state: mode=idle, count=0
π Received: 'Oh. We can also stop at home. Okay. So if they'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: don't they don't stop they stop promoting it then.
π Session state: mode=idle, count=0
π Received: 'don't they don't stop they stop promoting it then.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: Oh, I'm sure.
π Session state: mode=idle, count=0
π Received: 'Oh, I'm sure.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: Do you think you'll set if we do, let's say,
π Session state: mode=idle, count=0
π Received: 'Do you think you'll set if we do, let's say,'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: 5 percent equity in all cash?
π Session state: mode=idle, count=0
π Received: '5 percent equity in all cash?'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 2 segment(s) from OMI
Segment 0: For second or third?
Segment 1: Second.
π Session state: mode=idle, count=0
π Received: 'For second or third? Second.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: Might.
π Session state: mode=idle, count=0
π Received: 'Might.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: I don't hear really. Like, not a big, like she might.
π Session state: mode=idle, count=0
π Received: 'I don't hear really. Like, not a big, like she might.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 2 segment(s) from OMI
Segment 0: Because for young Jack,
Segment 1: that much food.
π Session state: mode=idle, count=0
π Received: 'Because for young Jack, that much food.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 4 segment(s) from OMI
Segment 0: And, also, we don't pass much.
Segment 1: Yeah.
Segment 2: We're gonna need someone.
π Session state: mode=idle, count=0
π Received: 'And, also, we don't pass much. Yeah. We're gonna need someone. Yeah.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: But like But he'll be like, he'll release.
π Session state: mode=idle, count=0
π Received: 'But like But he'll be like, he'll release.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 2 segment(s) from OMI
Segment 0: You think?
Segment 1: Of course, bro.
π Session state: mode=idle, count=0
π Received: 'You think? Of course, bro.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: He has he has
π Session state: mode=idle, count=0
π Received: 'He has he has'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: drive the huge tuna sale already. We have proven. But not a huge slice.
π Session state: mode=idle, count=0
π Received: 'drive the huge tuna sale already. We have proven. But not a huge slice.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: Not like
π Session state: mode=idle, count=0
π Received: 'Not like'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: From 1 video. For us, it's huge. Yeah. In second thing, he submitted 5 videos per month.
π Session state: mode=idle, count=0
π Received: 'From 1 video. For us, it's huge. Yeah. In second thing, he submitted 5 videos per month.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: Why?
π Session state: mode=idle, count=0
π Received: 'Why?'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: Bro, scanning in events throughout the year is massive.
π Session state: mode=idle, count=0
π Received: 'Bro, scanning in events throughout the year is massive.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: Bro, he probably gives a talk every week.
π Session state: mode=idle, count=0
π Received: 'Bro, he probably gives a talk every week.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: And he's meeting like
π Session state: mode=idle, count=0
π Received: 'And he's meeting like'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: there's also like if he's wearing actually in each event I don't know how to track
π Session state: mode=idle, count=0
π Received: 'there's also like if he's wearing actually in each event I don't know how to track'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: that he's wearing it, but if he actually does it, the kind of people he's meeting, it'll also
π Session state: mode=idle, count=0
π Received: 'that he's wearing it, but if he actually does it, the kind of people he's meeting, it'll also'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: The thing with small in that and will be like
π Session state: mode=idle, count=0
π Received: 'The thing with small in that and will be like'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: in 5, at least it feels like he might might not.
π Session state: mode=idle, count=0
π Received: 'in 5, at least it feels like he might might not.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: First you know it's like less probable to take
π Session state: mode=idle, count=0
π Received: 'First you know it's like less probable to take'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: seconds, still, like, probably, I'm thinking. What do think?
π Session state: mode=idle, count=0
π Received: 'seconds, still, like, probably, I'm thinking. What do think?'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: So
π Session state: mode=idle, count=0
π Received: 'So'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: But you're gonna do for cash.
π Session state: mode=idle, count=0
π Received: 'But you're gonna do for cash.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: A no cash
π Session state: mode=idle, count=0
π Received: 'A no cash'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: It's a smaller release. So in our quarterly.
π Session state: mode=idle, count=0
π Received: 'It's a smaller release. So in our quarterly.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 4 segment(s) from OMI
Segment 0: He knows? 2 40000000 dollars.
Segment 1: In the second
Segment 2: 1?
π Session state: mode=idle, count=0
π Received: 'He knows? 2 40000000 dollars. In the second 1? In the first 1?'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 2 segment(s) from OMI
Segment 0: No.
Segment 1: No. No.
π Session state: mode=idle, count=0
π Received: 'No. No. No.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: A new valuation.
π Session state: mode=idle, count=0
π Received: 'A new valuation.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: Sorry about that. It's 1 it's evaluation. Not old.
π Session state: mode=idle, count=0
π Received: 'Sorry about that. It's 1 it's evaluation. Not old.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: Includes everything. New files consist from usability
π Session state: mode=idle, count=0
π Received: 'Includes everything. New files consist from usability'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: across all part.
π Session state: mode=idle, count=0
π Received: 'across all part.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: Oh. 0, that is also cool.
π Session state: mode=idle, count=0
π Received: 'Oh. 0, that is also cool.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: What sir? Like, where is it in every podcast?
π Session state: mode=idle, count=0
π Received: 'What sir? Like, where is it in every podcast?'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: Right.
π Session state: mode=idle, count=0
π Received: 'Right.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: Yo, bro. Can you hear me?
π Session state: mode=idle, count=0
π Received: 'Yo, bro. Can you hear me?'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 2 segment(s) from OMI
Segment 0: Yo, yo. Thank you so much. You're actually watching so much.
Segment 1: It's crazy. Like,
π Session state: mode=idle, count=0
π Received: 'Yo, yo. Thank you so much. You're actually watching so much. It's crazy. Like,'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: having million more forever. It's insane how efficient you are.
π Session state: mode=idle, count=0
π Received: 'having million more forever. It's insane how efficient you are.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: Anyways, bro, thank you so much for saving the options.
π Session state: mode=idle, count=0
π Received: 'Anyways, bro, thank you so much for saving the options.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: Like, I fucking want to get the deal with you.
π Session state: mode=idle, count=0
π Received: 'Like, I fucking want to get the deal with you.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: What do you think we start with just, like, the smallest option? Just, like, at least we start
π Session state: mode=idle, count=0
π Received: 'What do you think we start with just, like, the smallest option? Just, like, at least we start'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: with something, like, as if as soon as possible, just, like, today.
π Session state: mode=idle, count=0
π Received: 'with something, like, as if as soon as possible, just, like, today.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: And then we we basically move eventually to bigger deals.
π Session state: mode=idle, count=0
π Received: 'And then we we basically move eventually to bigger deals.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: And I think we can you know, we'll be able to move very quickly. Maybe, like,
π Session state: mode=idle, count=0
π Received: 'And I think we can you know, we'll be able to move very quickly. Maybe, like,'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: like, in a 1 week later, maybe 2 weeks later. Just, you know, we will see that it kinda, like, works
π Session state: mode=idle, count=0
π Received: 'like, in a 1 week later, maybe 2 weeks later. Just, you know, we will see that it kinda, like, works out.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: So for I'm I'm happy to start with the first option.
π Session state: mode=idle, count=0
π Received: 'So for I'm I'm happy to start with the first option.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: However, because we are increasing equity
π Session state: mode=idle, count=0
π Received: 'However, because we are increasing equity'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: a little bit and, like, all all that stuff,
π Session state: mode=idle, count=0
π Received: 'a little bit and, like, all all that stuff,'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: I would really, really appreciate if we could move on the cash. So, basically, stick to
π Session state: mode=idle, count=0
π Received: 'I would really, really appreciate if we could move on the cash. So, basically, stick to'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: equity only.
π Session state: mode=idle, count=0
π Received: 'equity only.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: And besides that, I'm happy with everything you wrote.
π Session state: mode=idle, count=0
π Received: 'And besides that, I'm happy with everything you wrote.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: On the first deal, just like basically equity
π Session state: mode=idle, count=0
π Received: 'On the first deal, just like basically equity'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: I'm happy to get the cash equivalent, like I'm
π Session state: mode=idle, count=0
π Received: 'I'm happy to get the cash equivalent, like I'm'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: like, maybe equity.
π Session state: mode=idle, count=0
π Received: 'like, maybe equity.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: All
π Session state: mode=idle, count=0
π Received: 'All'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: Right. But 40000 doors is not a little cash.
π Session state: mode=idle, count=0
π Received: 'Right. But 40000 doors is not a little cash.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: Bro. For just like 1 video where you appear in your your
π Session state: mode=idle, count=0
π Received: 'Bro. For just like 1 video where you appear in your your'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: clone appears in the video is like not small kinda.
π Session state: mode=idle, count=0
π Received: 'clone appears in the video is like not small kinda.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: It for understood it will be just your clone will be appearing in that. Yeah. I'm reading. So
π Session state: mode=idle, count=0
π Received: 'It for understood it will be just your clone will be appearing in that. Yeah. I'm reading. So'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 3 segment(s) from OMI
Segment 0: did did you hear
Segment 1: Bill?
Segment 2: Yeah. So it's a clone. So you're not making new videos. It's just like your clone
π Session state: mode=idle, count=0
π Received: 'did did you hear Bill? Yeah. So it's a clone. So you're not making new videos. It's just like your clone'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: will be will appear in 1 of the videos.
π Session state: mode=idle, count=0
π Received: 'will be will appear in 1 of the videos.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 2 segment(s) from OMI
Segment 0: With device.
Segment 1: Correct? Basically.
π Session state: mode=idle, count=0
π Received: 'With device. Correct? Basically.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 2 segment(s) from OMI
Segment 0: So Yeah. Yeah.
Segment 1: Yeah. Yeah. Yeah.
π Session state: mode=idle, count=0
π Received: 'So Yeah. Yeah. Yeah. Yeah. Yeah.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: I see.
π Session state: mode=idle, count=0
π Received: 'I see.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: Can we do it 2 years?
π Session state: mode=idle, count=0
π Received: 'Can we do it 2 years?'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 2 segment(s) from OMI
Segment 0: Yeah.
Segment 1: Yeah. I'm just saying there is basically 24 deliverables. It's
π Session state: mode=idle, count=0
π Received: 'Yeah. Yeah. I'm just saying there is basically 24 deliverables. It's'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: not like 12 deliverables. That's what I
π Session state: mode=idle, count=0
π Received: 'not like 12 deliverables. That's what I'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: am
π Session state: mode=idle, count=0
π Received: 'am'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: to be sort of, like, transparent, firstly, I fucking love you. Want a deal. Second, to be
π Session state: mode=idle, count=0
π Received: 'to be sort of, like, transparent, firstly, I fucking love you. Want a deal. Second, to be'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: very transparent, the deal that I was sending you and everything I was expecting
π Session state: mode=idle, count=0
π Received: 'very transparent, the deal that I was sending you and everything I was expecting'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 2 segment(s) from OMI
Segment 0: 2 years. It's like this thing that we signed with every other adviser. We signed 3. And everyone had
Segment 1: Like,
π Session state: mode=idle, count=0
π Received: '2 years. It's like this thing that we signed with every other adviser. We signed 3. And everyone had 2, so 2 years. So that's why I was I was expecting Like,'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: it's just, like, too hardcore. So I really really am asking for, you know,
π Session state: mode=idle, count=0
π Received: 'it's just, like, too hardcore. So I really really am asking for, you know,'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: just kinda like consider it to me and either give me
π Session state: mode=idle, count=0
π Received: 'just kinda like consider it to me and either give me'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: let's say, okay, equity 2 percent, 20000 in
π Session state: mode=idle, count=0
π Received: 'let's say, okay, equity 2 percent, 20000 in'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: cash, or 2 years, bro. So 24 months. I need 2
π Session state: mode=idle, count=0
π Received: 'cash, or 2 years, bro. So 24 months. I need 2'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2e00:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: Let me get back, like, by tomorrow. Yeah. Yeah.
π Session state: mode=idle, count=0
π Received: 'Let me get back, like, by tomorrow. Yeah. Yeah.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2000:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 2 segment(s) from OMI
Segment 0: Yeah. Alright. Thank you, bro.
Segment 1: Bye bye bye.
π Session state: mode=idle, count=0
π Received: 'Yeah. Alright. Thank you, bro. Bye bye bye.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2000:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: No, bro. He's a fuck. What the fuck? 200 k. Arts to do this.
π Session state: mode=idle, count=0
π Received: 'No, bro. He's a fuck. What the fuck? 200 k. Arts to do this.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2000:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: Like, if we rewarded him where specifically? From events?
π Session state: mode=idle, count=0
π Received: 'Like, if we rewarded him where specifically? From events?'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2000:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: So, porask wearing in porask
π Session state: mode=idle, count=0
π Received: 'So, porask wearing in porask'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2000:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 2 segment(s) from OMI
Segment 0: And public events.
Segment 1: But how many podcasts you go like don't you go to actually as many
π Session state: mode=idle, count=0
π Received: 'And public events. But how many podcasts you go like don't you go to actually as many'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2000:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: It is his own podcast. He hosts him.
π Session state: mode=idle, count=0
π Received: 'It is his own podcast. He hosts him.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2000:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: So this Like Goes to all pods with that shit?
π Session state: mode=idle, count=0
π Received: 'So this Like Goes to all pods with that shit?'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2000:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: The second or no? Yeah.
π Session state: mode=idle, count=0
π Received: 'The second or no? Yeah.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2000:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: Best end only will be cross all podcast. You can lock in like each other. Like, know this guy
π Session state: mode=idle, count=0
π Received: 'Best end only will be cross all podcast. You can lock in like each other. Like, know this guy'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2000:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: the way. He's like refamous in India.
π Session state: mode=idle, count=0
π Received: 'the way. He's like refamous in India.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2000:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: This is also really famous guy in India.
π Session state: mode=idle, count=0
π Received: 'This is also really famous guy in India.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2000:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: It's like 200 k views bro, it's literally 200 k people
π Session state: mode=idle, count=0
π Received: 'It's like 200 k views bro, it's literally 200 k people'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2000:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: seeing Omi. Like all of them.
π Session state: mode=idle, count=0
π Received: 'seeing Omi. Like all of them.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2000:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: Ok, the other videos are shit.
π Session state: mode=idle, count=0
π Received: 'Ok, the other videos are shit.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2000:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: Yeah.
π Session state: mode=idle, count=0
π Received: 'Yeah.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2000:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: Brother,
π Session state: mode=idle, count=0
π Received: 'Brother,'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2000:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: is when he posted it.
π Session state: mode=idle, count=0
π Received: 'is when he posted it.'
π Session mode: idle, Count: 0/5
π Silent response: listening
INFO: 2600:1900:0:2d07::2000:0 - "POST /webhook?uid=GPW9BKkHYWMkGTv3iSndMRAPS2B2 HTTP/1.1" 200 OK
π₯ Received 1 segment(s) from OMI
Segment 0: Jan 13.
π Session state: mode=idle, count=0
π Received: 'Jan 13.'
π Session mode: idle, Count: 0/5