forked from Yifan-Song793/RestGPT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtmdb.json
732 lines (732 loc) · 21.3 KB
/
tmdb.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
[
{
"query": "give me the number of movies directed by Sofia Coppola",
"solution": [
"GET /search/person",
"GET /person/{person_id}/movie_credits"
]
},
{
"query": "Who was the lead actor in the movie The Dark Knight?",
"solution": [
"GET /search/movie",
"GET /movie/{movie_id}/credits"
]
},
{
"query": "Who directed the top-1 rated movie?",
"solution": [
"GET /movie/top_rated",
"GET /movie/{movie_id}/credits"
]
},
{
"query": "give me a image for the collection Star Wars",
"solution": [
"GET /search/collection",
"GET /collection/{collection_id}/images"
]
},
{
"query": "What is the logo of the Walt Disney?",
"solution": [
"GET /search/company",
"GET /company/{company_id}/images"
]
},
{
"query": "What dose the lead actor of Titanic look like?",
"solution": [
"GET /search/movie",
"GET /movie/{movie_id}/credits",
"GET /person/{person_id}/images"
]
},
{
"query": "give me some reviews of the first movie that is similar to Titanic",
"solution": [
"GET /search/movie",
"GET /movie/{movie_id}/similar",
"GET /movie/{movie_id}/reviews"
]
},
{
"query": "I just finished watching Titanic and I want some other movie recommendations",
"solution": [
"GET /search/movie",
"GET /movie/{movie_id}/recommendations"
]
},
{
"query": "What is the latest movie directed by Christopher Nolan?",
"solution": [
"GET /search/person",
"GET /person/{person_id}/movie_credits"
]
},
{
"query": "tell me the highest rated movie directed by Martin Scorsese",
"solution": [
"GET /search/person",
"GET /person/{person_id}/movie_credits"
]
},
{
"query": "Who is the director of Leonardo DiCaprio's latest movie?",
"solution": [
"GET /search/person",
"GET /movie/latest",
"GET /movie/{movie_id}/credits"
]
},
{
"query": "tell me a TV show recently directed by Catherine Hardwicke",
"solution": [
"GET /search/person",
"GET /person/{person_id}/tv_credits"
]
},
{
"query": "Please recommend me some TV shows similar to Breaking Bad",
"solution": [
"GET /search/tv",
"GET /tv/{tv_id}/recommendations"
]
},
{
"query": "Who is the director of today's most trending movie?",
"solution": [
"GET /trending/{media_type}/{time_window}",
"GET /movie/{movie_id}/credits"
]
},
{
"query": "Who is the director of the movie \"Twilight\"?",
"solution": [
"GET /search/movie",
"GET /movie/{movie_id}/credits"
]
},
{
"query": "give me a photo belong to the second episode of the first season of the Witcher",
"solution": [
"GET /search/tv",
"GET /tv/{tv_id}/season/{season_number}/episode/{episode_number}/images"
]
},
{
"query": "Who directed the movie \"The Dark Knight\"?",
"solution": [
"GET /search/movie",
"GET /movie/{movie_id}/credits"
]
},
{
"query": "What is the release date of the movie \"The Matrix\"?",
"solution": [
"GET /search/movie",
"GET /movie/{movie_id}/release_dates"
]
},
{
"query": "Who starred in the movie \"Titanic\"?",
"solution": [
"GET /search/movie",
"GET /movie/{movie_id}/credits"
]
},
{
"query": "Give me some cover images of movies directed by Christopher Nolan.",
"solution": [
"GET /search/person",
"GET /person/{person_id}/movie_credits",
"GET /movie/{movie_id}/images"
]
},
{
"query": " What are some common keywords associated with movie \"Titanic\"?",
"solution": [
"GET /search/movie",
"GET /movie/{movie_id}/keywords"
]
},
{
"query": "Give me some movie recommendations related to \"Titanic\"",
"solution": [
"GET /search/movie",
"GET /movie/{movie_id}/recommendations"
]
},
{
"query": "When is Clint Eastwood's latest movie scheduled to be released?",
"solution": [
"GET /search/person",
"GET /person/{person_id}/movie_credits",
"GET /movie/{movie_id}/release_dates"
]
},
{
"query": "Give me some movie reviews about The Dark Knight",
"solution": [
"GET /search/movie",
"GET /movie/{movie_id}/reviews"
]
},
{
"query": "What are some movies that are similar to one of the movies directed by Francis Ford Coppola?",
"solution": [
"GET /search/person",
"GET /person/{person_id}/movie_credits",
"GET /movie/{movie_id}/similar"
]
},
{
"query": "Who is the lead actor in the latest released movie?",
"solution": [
"GET /movie/latest",
"GET /movie/{movie_id}/credits"
]
},
{
"query": "give me one image of the movie that is currently showing in theaters",
"solution": [
"GET /movie/now_playing",
"GET /movie/{movie_id}/images"
]
},
{
"query": "What is the most popular movie right now and what is its keywords?",
"solution": [
"GET /movie/popular",
"GET /movie/{movie_id}/keywords"
]
},
{
"query": "What are the keywords of the most popular movie right now",
"solution": [
"GET /movie/popular",
"GET /movie/{movie_id}/keywords"
]
},
{
"query": "Who has starred in a movie \"Titanic\"",
"solution": [
"GET /search/movie",
"GET /movie/{movie_id}/credits"
]
},
{
"query": "What do the logo looks like for Paramount Pictures?",
"solution": [
"GET /company/{company_id}",
"GET /company/{company_id}/images"
]
},
{
"query": "tell me where the company \"universal pictures\" was founded?",
"solution": [
"GET /search/company",
"GET /company/{company_id}"
]
},
{
"query": "When is the movie \"Titanic\" released?",
"solution": [
"GET /search/movie",
"GET /movie/{movie_id}/release_dates"
]
},
{
"query": "Who has starred in the first movie of Star Wars collection?",
"solution": [
"GET /search/collection",
"GET /collection/{collection_id}",
"GET /movie/{movie_id}/credits"
]
},
{
"query": "give me a movie cover of a movie from the collection Harry Potter",
"solution": [
"GET /search/collection",
"GET /collection/{collection_id}",
"GET /movie/{movie_id}/images"
]
},
{
"query": "What are some keywords for a movie of the collection The Hunger Games?",
"solution": [
"GET /search/collection",
"GET /collection/{collection_id}",
"GET /movie/{movie_id}/keywords"
]
},
{
"query": "When are the release dates for the movies of the collection The Hobbit?",
"solution": [
"GET /search/collection",
"GET /collection/{collection_id}"
]
},
{
"query": "List movies from The Fast and the Furious collection?",
"solution": [
"GET /search/collection",
"GET /collection/{collection_id}"
]
},
{
"query": "Give me a review of a movie from the collection The Fast and the Furious.",
"solution": [
"GET /search/collection",
"GET /collection/{collection_id}",
"GET /movie/{movie_id}/reviews"
]
},
{
"query": "When was the first movie of the collection Lord of the Rings released?",
"solution": [
"GET /search/collection",
"GET /collection/{collection_id}"
]
},
{
"query": "tell me the directors of the first season of House of Cards",
"solution": [
"GET /search/tv",
"GET /tv/{tv_id}/season/{season_number}/credits"
]
},
{
"query": "I want some tv shows that similar to House of Cards",
"solution": [
"GET /search/tv",
"GET /tv/{tv_id}/similar"
]
},
{
"query": "When did the most popular TV show currently on the air start?",
"solution": [
"GET /tv/on_the_air",
"GET /tv/{tv_id}"
]
},
{
"query": "tell me a few more works directed by the director of Django Unchained",
"solution": [
"GET /search/movie",
"GET /movie/{movie_id}/credits",
"GET /person/{person_id}/movie_credits"
]
},
{
"query": "tell me the cast of a TV show on the air",
"solution": [
"GET /tv/on_the_air",
"GET /tv/{tv_id}/credits"
]
},
{
"query": "I need a review for Breaking Bad",
"solution": [
"GET /search/tv",
"GET /tv/{tv_id}/reviews"
]
},
{
"query": "I'm watching the tv series The Last Of Us and I need some more recommendations",
"solution": [
"GET /search/tv",
"GET /tv/{tv_id}/recommendations"
]
},
{
"query": "I'm watching a TV show called The Last Of Us and I need some more recommendations",
"solution": [
"GET /search/tv",
"GET /tv/{tv_id}/recommendations"
]
},
{
"query": "tell me the guest star from season 3, episode 24 of Friends",
"solution": [
"GET /search/tv",
"GET /tv/{tv_id}/season/{season_number}/episode/{episode_number}/credits"
]
},
{
"query": "Who is the lead actor in the most popular TV show?",
"solution": [
"GET /tv/popular",
"GET /tv/{tv_id}/credits"
]
},
{
"query": "give me a keyword of the top-1 rated TV show",
"solution": [
"GET /tv/top_rated",
"GET /tv/{tv_id}/keywords"
]
},
{
"query": "give me a poster of 2 Broke Girls",
"solution": [
"GET /search/tv",
"GET /tv/{tv_id}/images"
]
},
{
"query": "How many episodes does 2 Broke Girls have in total?",
"solution": [
"GET /search/tv",
"GET /tv/{tv_id}"
]
},
{
"query": "When was the company that produced The Big Bang Theory founded?",
"solution": [
"GET /search/tv",
"GET /tv/{tv_id}",
"GET /company/{company_id}"
]
},
{
"query": "When was the TV show The Big Bang Theory created?",
"solution": [
"GET /search/tv",
"GET /tv/{tv_id}"
]
},
{
"query": "give me a keyword of the most popular TV show",
"solution": [
"GET /tv/popular",
"GET /tv/{tv_id}/keywords"
]
},
{
"query": "What did the third episode of the second season of Westworld talk about?",
"solution": [
"GET /search/tv",
"GET /tv/{tv_id}/season/{season_number}/episode/{episode_number}"
]
},
{
"query": "Tell me the air date of the second season of Game of Thrones",
"solution": [
"GET /search/tv",
"GET /tv/{tv_id}/season/{season_number}"
]
},
{
"query": " give me a poster of the third episode of Band of Brothers",
"solution": [
"GET /search/tv",
"GET /tv/{tv_id}/season/{season_number}/episode/{episode_number}/images"
]
},
{
"query": "What is the logo of the network that produced Game of Thrones?",
"solution": [
"GET /search/tv",
"GET /tv/{tv_id}",
"GET /network/{network_id}/images"
]
},
{
"query": "give me the homepage of the network that produced Game of Thrones",
"solution": [
"GET /search/tv",
"GET /tv/{tv_id}",
"GET /network/{network_id}"
]
},
{
"query": "give me a keyword of the most popular TV show currently",
"solution": [
"GET /tv/popular",
"GET /tv/{tv_id}/keywords"
]
},
{
"query": "Where is the headquarter of the company that produced currently the most popular TV show?",
"solution": [
"GET /tv/popular",
"GET /tv/{tv_id}",
"GET /company/{company_id}"
]
},
{
"query": "What is the genre of The Mandalorian?",
"solution": [
"GET /search/tv",
"GET /tv/{tv_id}"
]
},
{
"query": "When is the birthday of the lead actor of today's most trending TV show?",
"solution": [
"GET /trending/{media_type}/{time_window}",
"GET /tv/{tv_id}/credits",
"GET /person/{person_id}"
]
},
{
"query": "What is the homepage of the network that produced today's most trending TV show?",
"solution": [
"GET /trending/{media_type}/{time_window}",
"GET /tv/{tv_id}",
"GET /network/{network_id}"
]
},
{
"query": "give me a review of today's most trending TV show",
"solution": [
"GET /trending/{media_type}/{time_window}",
"GET /tv/{tv_id}/reviews"
]
},
{
"query": "I prefer a TV show that similar to today's most trending TV show",
"solution": [
"GET /trending/{media_type}/{time_window}",
"GET /tv/{tv_id}/similar"
]
},
{
"query": "I need a poster of today's most trending TV show",
"solution": [
"GET /trending/{media_type}/{time_window}",
"GET /tv/{tv_id}/images"
]
},
{
"query": "Who has worked with Jeremy Clarkson in his most popular TV show?",
"solution": [
"GET /search/person",
"GET /person/{person_id}/tv_credits",
"GET /tv/{tv_id}/credits"
]
},
{
"query": "What does the lead actor of the first episode of second season of Black Mirror look like?",
"solution": [
"GET /search/tv",
"GET /tv/{tv_id}/credits",
"GET /person/{person_id}/images"
]
},
{
"query": "When is the lead actor of The Mandalorian born?",
"solution": [
"GET /search/tv",
"GET /tv/{tv_id}/credits",
"GET /person/{person_id}"
]
},
{
"query": "Who is the lead actor of today's most popular TV show?",
"solution": [
"GET /tv/popular",
"GET /tv/{tv_id}/credits",
"GET /person/{person_id}"
]
},
{
"query": "give me a photo of the lead actor of the most popular TV show of this week",
"solution": [
"GET /tv/latest",
"GET /tv/{tv_id}/credits",
"GET /person/{person_id}/images"
]
},
{
"query": "give me some reviews of Cate Blanchett's latest TV show",
"solution": [
"GET /search/person",
"GET /person/{person_id}/tv_credits",
"GET /tv/{tv_id}/reviews"
]
},
{
"query": "What is David Schwimmer's most popular TV show?",
"solution": [
"GET /search/person",
"GET /person/{person_id}/tv_credits"
]
},
{
"query": "Who directed the third episode of the second season of Black Mirror?",
"solution": [
"GET /search/tv",
"GET /tv/{tv_id}/season/{season_number}/credits"
]
},
{
"query": "give me some movies that Christopher Nolan known for",
"solution": [
"GET /search/person"
]
},
{
"query": "Avatar versus Avatar: The Way of Water, which has a higher rating",
"solution": [
"GET /search/movie",
"GET /search/movie"
]
},
{
"query": "Show me some English movies rating no less than 7.0 and no earlier than 2021",
"solution": [
"GET /discover/movie"
]
},
{
"query": "What is the genre of the movie Lord of the Ring?",
"solution": [
"GET /search/movie",
"GET /movie/{movie_id}"
]
},
{
"query": "What is the birthday of the most popular person right now?",
"solution": [
"GET /person/popular",
"GET /person/{person_id}"
]
},
{
"query": "give me a poster of the second season of Big Bang Theory",
"solution": [
"GET /search/tv",
"GET /tv/{tv_id}/season/{season_number}/images"
]
},
{
"query": "What is the title of the third episode of the second season of Mandalorian?",
"solution": [
"GET /search/tv",
"GET /tv/{tv_id}/season/{season_number}/episode/{episode_number}"
]
},
{
"query": "When is the bitrhday of the lead actor of the movie The Shawshank Redemptionn?",
"solution": [
"GET /search/movie",
"GET /movie/{movie_id}/credits",
"GET /person/{person_id}"
]
},
{
"query": "When is the birthday of the director of the movie The Shawshank Redemption?",
"solution": [
"GET /search/movie",
"GET /movie/{movie_id}/credits",
"GET /person/{person_id}"
]
},
{
"query": "When is the date of establishment of the company that created the movie The Shawshank Redemption?",
"solution": [
"GET /search/movie",
"GET /movie/{movie_id}",
"GET /company/{company_id}"
]
},
{
"query": "Where is the headquarter of the company that created the collection Star Wars?",
"solution": [
"GET /search/collection",
"GET /collection/{collection_id}",
"GET /company/{company_id}"
]
},
{
"query": "Who has an earlier release date, The Double Life of Veronique or Mulholland Drive?",
"solution": [
"GET /search/movie",
"GET /movie/{movie_id}"
]
},
{
"query": "Is the director of Twin Peaks Season 1 and Mulholland Drive the same person?",
"solution": [
"GET /search/tv",
"GET /search/movie",
"GET /movie/{movie_id}/credits",
"GET /tv/{tv_id}/season/{season_number}/credits"
]
},
{
"query": "Where was the director of Mulholland Drive born?",
"solution": [
"GET /search/movie",
"GET /movie/{movie_id}/credits",
"GET /person/{person_id}"
]
},
{
"query": "Is Mulholland Drive in the Top-10 rated list of the TMDB?",
"solution": [
"GET /search/movie",
"GET /movie/top_rated"
]
},
{
"query": "Who directed more movies, Akira Kurosawa or Spielberg?",
"solution": [
"GET /search/person",
"GET /person/{person_id}/movie_credits"
]
},
{
"query": "What TV series has the director of Mulholland Drive directed?",
"solution": [
"GET /search/movie",
"GET /person/{person_id}/tv_credits"
]
},
{
"query": "Tell me about actor Scarlett Johansson's birthday",
"solution": [
"GET /search/person",
"GET /person/{person_id}"
]
},
{
"query": "How many seasons of Sword Art Online are there?",
"solution": [
"GET /search/tv",
"GET /tv/{tv_id}"
]
},
{
"query": "Are Yui Aragaki and Gen Hoshino co-starring in We Married as Job?",
"solution": [
"GET /search/movie",
"GET /movie/{movie_id}/credits"
]
},
{
"query": "Who is older, by how many years, the director of film Barbie or the lead actor of television DEATH NOTE?",
"solution": [
"GET /search/movie",
"GET /movie/{movie_id}/credits",
"GET /search/tv",
"GET /tv/{tv_id}/credits"
]
},
{
"query": "Tell me about Katherine LaNasa's latest movie appearance.",
"solution": [
"GET /search/person",
"GET /person/{person_id}/movie_credits"
]
},
{
"query": "Give me one cover image of the movie Oppenheimer.",
"solution": [
"GET /search/movie",
"GET /movie/{movie_id}/images"
]
}
]