id stringlengths 14 16 | text stringlengths 29 2.73k | source stringlengths 49 115 |
|---|---|---|
952944adbbc4-8 | Document(page_content='When I first saw a glimpse of this movie, I quickly noticed the actress who was playing the role of Lucille Ball. Rachel York\'s portrayal of Lucy is absolutely awful. Lucille Ball was an astounding comedian with incredible talent. To think about a legend like Lucille Ball being portrayed the way... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/hugging_face_dataset.html |
952944adbbc4-9 | Document(page_content='Who are these "They"- the actors? the filmmakers? Certainly couldn\'t be the audience- this is among the most air-puffed productions in existence. It\'s the kind of movie that looks like it was a lot of fun to shoot\x97 TOO much fun, nobody is getting any actual work done, and that almost always ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/hugging_face_dataset.html |
952944adbbc4-10 | respective children (nepotism alert: Bogdanovich\'s daughters) spew cute and pick up some fairly disturbing pointers on \'love\' while observing their parents. (Ms. Hepburn, drawing on her dignity, manages to rise above the proceedings- but she has the monumental challenge of playing herself, ostensibly.) Everybody loo... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/hugging_face_dataset.html |
952944adbbc4-11 | but at least they were long on charm. "They All Laughed" tries to coast on its good intentions, but nobody- least of all Peter Bogdanovich - has the good sense to put on the brakes.<br /><br />Due in no small part to the tragic death of Dorothy Stratten, this movie has a special place in the heart of Mr. Bogdanovich- h... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/hugging_face_dataset.html |
952944adbbc4-12 | in all, though, the movie is harmless, only a waste of rental. I want to watch people having a good time, I\'ll go to the park on a sunny day. For filmic expressions of joy and love, I\'ll stick to Ernest Lubitsch and Jaques Demy...', metadata={'label': 0}), | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/hugging_face_dataset.html |
952944adbbc4-13 | Document(page_content="This is said to be a personal film for Peter Bogdonavitch. He based it on his life but changed things around to fit the characters, who are detectives. These detectives date beautiful models and have no problem getting them. Sounds more like a millionaire playboy filmmaker than a detective, doesn... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/hugging_face_dataset.html |
952944adbbc4-14 | Document(page_content='It was great to see some of my favorite stars of 30 years ago including John Ritter, Ben Gazarra and Audrey Hepburn. They looked quite wonderful. But that was it. They were not given any characters or good lines to work with. I neither understood or cared what the characters were doing.<br /><br ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/hugging_face_dataset.html |
952944adbbc4-15 | Document(page_content="I can't believe that those praising this movie herein aren't thinking of some other film. I was prepared for the possibility that this would be awful, but the script (or lack thereof) makes for a film that's also pointless. On the plus side, the general level of craft on the part of the actors an... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/hugging_face_dataset.html |
952944adbbc4-16 | Document(page_content="Its not the cast. A finer group of actors, you could not find. Its not the setting. The director is in love with New York City, and by the end of the film, so are we all! Woody Allen could not improve upon what Bogdonovich has done here. If you are going to fall in love, or find love, Manhattan i... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/hugging_face_dataset.html |
952944adbbc4-17 | Document(page_content='Today I found "They All Laughed" on VHS on sale in a rental. It was a really old and very used VHS, I had no information about this movie, but I liked the references listed on its cover: the names of Peter Bogdanovich, Audrey Hepburn, John Ritter and specially Dorothy Stratten attracted me, the p... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/hugging_face_dataset.html |
952944adbbc4-18 | eyes who fall in love for the women they are chasing), but I have not laughed along the whole story. The coincidences, in a huge city like New York, are ridiculous. Ben Gazarra as an attractive and very seductive man, with the women falling for him as if her were a Brad Pitt, Antonio Banderas or George Clooney, is quit... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/hugging_face_dataset.html |
952944adbbc4-19 | most popular Brazilian singer since the end of the 60\'s and is called by his fans as "The King". I will keep this movie in my collection only because of these attractions (manly Dorothy Stratten). My vote is four.<br /><br />Title (Brazil): "Muito Riso e Muita Alegria" ("Many Laughs and Lots of Happiness")', metadata=... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/hugging_face_dataset.html |
952944adbbc4-20 | Example#
In this example, we use data from a dataset to answer a question
from langchain.indexes import VectorstoreIndexCreator
from langchain.document_loaders.hugging_face_dataset import HuggingFaceDatasetLoader
dataset_name="tweet_eval"
page_content_column="text"
name="stance_climate"
loader=HuggingFaceDatasetLoader(... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/hugging_face_dataset.html |
5b7e4254fa5a-0 | .ipynb
.pdf
DataFrame Loader
DataFrame Loader#
This notebook goes over how to load data from a pandas dataframe
import pandas as pd
df = pd.read_csv('example_data/mlb_teams_2012.csv')
df.head()
Team
"Payroll (millions)"
"Wins"
0
Nationals
81.34
98
1
Reds
82.20
97
2
Yankees
197.96
95
3
Giants
117.62
94
4
Braves
83.31
94... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/dataframe.html |
5b7e4254fa5a-1 | Document(page_content='Rays', metadata={' "Payroll (millions)"': 64.17, ' "Wins"': 90}),
Document(page_content='Angels', metadata={' "Payroll (millions)"': 154.49, ' "Wins"': 89}),
Document(page_content='Tigers', metadata={' "Payroll (millions)"': 132.3, ' "Wins"': 88}),
Document(page_content='Cardinals', metadata={... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/dataframe.html |
5b7e4254fa5a-2 | Document(page_content='Mets', metadata={' "Payroll (millions)"': 93.35, ' "Wins"': 74}),
Document(page_content='Blue Jays', metadata={' "Payroll (millions)"': 75.48, ' "Wins"': 73}),
Document(page_content='Royals', metadata={' "Payroll (millions)"': 60.91, ' "Wins"': 72}),
Document(page_content='Marlins', metadata={... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/dataframe.html |
7374c2699d7a-0 | .ipynb
.pdf
CoNLL-U
CoNLL-U#
This is an example of how to load a file in CoNLL-U format. The whole file is treated as one document. The example data (conllu.conllu) is based on one of the standard UD/CoNLL-U examples.
from langchain.document_loaders import CoNLLULoader
loader = CoNLLULoader("example_data/conllu.conllu"... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/CoNLL-U.html |
921f77319deb-0 | .ipynb
.pdf
IMSDb
IMSDb#
This covers how to load IMSDb webpages into a document format that we can use downstream.
from langchain.document_loaders import IMSDbLoader
loader = IMSDbLoader("https://imsdb.com/scripts/BlacKkKlansman.html")
data = loader.load()
data | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-1 | [Document(page_content='\n\r\n\r\n\r\n\r\n BLACKKKLANSMAN\r\n \r\n \r\n \r\n \r\n Written by\r\n\r\n Charlie Wachtel & David Ra... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-2 | FADE IN:\r\n \r\n SCENE FROM "GONE WITH THE WIND"\r\n \r\n Scarlett O\'Hara, played by Vivian Leigh, walks through the\r\n Thousands of injured Confederate Soldiers pulling back to\r\n reveal the Famous Shot of the tattered Confederate ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-3 | Battle but they didn\'t lose The War.\r\n Yes, Friends, We are under attack.\r\n \r\n CUT TO:\r\n \r\n A 1960\'S EDUCATIONAL STYLE FILM\r\n \r\n... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-4 | him. Very\r\n Official. He is not a Southerner and speaks with articulation\r\n and intelligence.\r\n \r\n BEAUREGARD- KLAN NARRATOR\r\n You\'ve read about it in your Local\r\n Newspapers or seen it o... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-5 | CUT TO:\r\n \r\n FOOTAGE OF THE LITTLE ROCK NINE\r\n \r\n being escorted into CENTRAL HIGH SCHOOL, Little Rock,\r\n Arkansas by The National Guard.\r\n \r\n BEAUREGARD- KLAN NARRATOR\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-6 | Jewish controlled Puppets on the\r\n U.S. Supreme Court compelling White\r\n children to go to School with an\r\n Inferior Race is The Final Nail in a\r\n Black Coffin towards America becoming\r\n a Mongrel Nat... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-7 | Shoes and working\r\n as Butlers, Porters and Maids.\r\n BEAUREGARD- KLAN NARRATOR (V.O.)\r\n (CONT\'D)\r\n We had a great way of Life before The\r\n Martin Luther Coon\'s of The World... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-8 | of Dr. Martin Luther King Jr. sitting in the\r\n front row of a Classroom it reads: Martin Luther King in a\r\n Communist Training School.\r\n \r\n BEAUREGARD- KLAN NARRATOR (CONT\'D)\r\n ...and their Army of Commies start... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-9 | BEAUREGARD- KLAN NARRATOR (CONT\'D)\r\n Do you really want your precious\r\n White Child going to School with\r\n Negroes?\r\n \r\n Footage of Black and White Children playing together,\r\n innocent.\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-10 | They are Lying, Dirty Monkeys...\r\n \r\n FOOTAGE and STILLS of Stereotype Blacks Coons, Bucks and\r\n shining Black Mammies. Black Soldiers in D. W. Griffith\'s\r\n "Birth of a Nation" pushing Whites around on the Street.\r\n \r\n CLOS... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-11 | \r\n Images and Scientific charts of Blacks compared to Apes and\r\n Monkeys.\r\n \r\n CLOSE - BEAUREGARD - KLAN NARRATOR\r\n \r\n BEAUREGARD- KLAN NARRATOR (CONT\'D)\r\n ...Rapists, Murder... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-12 | CUT TO:\r\n \r\n LYNCH, The MULATTO, lusting after our LILLIAN GISH in "Birth\r\n of a Nation." Other Lusting Images of Craving Black\r\n Beasts!!! SEXUAL PREDATORS!!!\r\n \r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-13 | \r\n CUT TO:\r\n \r\n CLOSE - BEAUREGARD - KLAN NARRATOR\r\n \r\n A Stereotype illustration of Jews controlling Negroes.\r\n \r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-14 | of High Ranking\r\n Blood Sucking Jews! Using an Army of\r\n outside...\r\n \r\n Beauregard continues.\r\n \r\n CUT TO:\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-15 | Footage of The March on Washington.\r\n \r\n CUT TO:\r\n \r\n CLOSE - BOUREGARD - KLAN NARRATOR.\r\n \r\n BOUREGARD- KLAN NARRATO... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-16 | \r\n CUT TO:\r\n \r\n An image of an All-American White Nuclear Family.\r\n \r\n CUT TO:\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-17 | BOUREGARD-KLAN NARRATOR (CONT\'D)\r\n It\'s an International... Jewish...\r\n Conspiracy.\r\n WE HEAR and end with the Corny Stinger of Music that goes\r\n with these Education and Propaganda Films!\r\n \r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-18 | SHOT\r\n \r\n Superimposed: Early 70s\r\n \r\n An amazing contrast. The beautiful landscape of Colorado\r\n Springs, the City sits nestled within the rugged Mountain\r\n terrain. The majestic Pikes Peak, the jagged beauty of The\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-19 | sporting a\r\n good sized Afro, rebellious but straight laced by most 1970\'s\r\n standards.\r\n \r\n Ron stares at an Ad attached to a bulletin board.\r\n \r\n CLOSE - THE AD READS:\r\n \r\n JOIN THE CO... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-20 | - COLORADO SPRINGS POLICE DEPT -\r\n DAY\r\n \r\n A drab, white-walled office. Ron sits across the table from\r\n The Assistant City Personnel Manager, MR. TURRENTINE, Black,\r\n 40\'s, business like but progressive and CHIEF BRIDGES, White,\r\n... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-21 | \r\n RON STALLWORTH\r\n I went to College.\r\n \r\n MR. TURRENTINE\r\n How do you feel about Vietnam?\r\n \r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-22 | Would you call yourself a Womanizer?\r\n RON STALLWORTH\r\n No Sir, I would not.\r\n \r\n MR. TURRENTINE\r\n Do you frequent Night Clubs?\r\n \r\... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-23 | CHIEF BRIDGES\r\n Do you drink?\r\n \r\n RON STALLWORTH\r\n On Special occasions, Sir.\r\n \r\n MR. TURRENTINE\r\n Have you... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-24 | Only those prescribed by My Doctor,\r\n Sir.\r\n \r\n Turrentine looks at Chief Bridges.\r\n \r\n MR. TURRENTINE\r\n That\'s kind of rare these days for a\r\n youn... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-25 | but my Father was in The\r\n Military and I was raised up the\r\n Right way, Sir.\r\n \r\n CHIEF BRIDGES\r\n How are you with people, generally?\r\n \r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-26 | raised...\r\n \r\n CHIEF BRIDGES\r\n ...Have you ever had any negative...\r\n \r\n Mr. Turrentine jumps in, impatient.\r\n \r\n MR. TU... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-27 | RON STALLWORTH\r\n Would that happen...\r\n \r\n MR. TURRENTINE\r\n ...Sheeeeeeettt!!!\r\n Bridges looks at him. Turrentine waits, Ron doesn\'t know how\r\n to respond, finally. Turrentine leans forwa... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-28 | this City. If we make you an Officer,\r\n you would, in effect, be the Jackie\r\n Robinson of the Colorado Springs\r\n Police force.\r\n \r\n Mr. Turrentine lets this sink in.\r\n \r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-29 | his fellow\r\n Teammates, from Fans, other Teams,\r\n and The Press.\r\n \r\n RON STALLWORTH\r\n I know Jackie\'s Story, Sir.\r\n \r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-30 | \r\n Ron evaluates the hard reality of the question. Decides.\r\n \r\n RON STALLWORTH\r\n If I need to, yes, Sir.\r\n \r\n MR. TURRENTINE\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-31 | Bridges.\r\n \r\n CHIEF BRIDGES\r\n I\'ll have your back but I can only do\r\n so much. The Weight of this is on\r\n You...and You alone.\r\n \r\n R... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-32 | \r\n INT. RECORDS ROOM - CSPD - DAY\r\n \r\n Ron sorts a file cabinet of records as OFFICER CLAY MULANEY,\r\n 60\'s, White, sits on a stool, reading a Magazine clearly\r\n looking at a Photo of something good.\r\n Ron looks at the Photo of the Actress... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-33 | \r\n OFFICER MULANEY\r\n Never saw it but what you think?\r\n \r\n RON STALLWORTH\r\n She\'s a very good Actress.\r\n \r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-34 | \r\n Ron ignores it.\r\n \r\n OFFICER MULANEY (CONT\'D)\r\n Truth be told when I see one of your\r\n kind with a White Woman it turns my\r\n Stomach.\r\n \r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-35 | OFFICER MULANEY\r\n He could only want one thing.\r\n \r\n RON STALLWORTH\r\n What would that be?\r\n \r\n OFFICER MULANEY\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-36 | RON STALLWORTH\r\n No, I just like my questions to be\r\n answered.\r\n \r\n A VOICE of UNIFORMED COP WHEATON calls from the other side of\r\n the Counter.\r\n \r\n WHEATON (O.... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-37 | Ron walks to the Counter to see The White and sleep-deprived\r\n Cop impatiently leaning on his elbows.\r\n \r\n WHEATON (CONT\'D)\r\n Get me the record for this Toad named\r\n Tippy Birdsong.\r... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-38 | While you\'re at it, why don\'t you\r\n grab another Toad... Steven Wilson.\r\n \r\n Ron pulls the File... another young Black Male, ANOTHER\r\n SEXUAL PREDATOR!\r\n \r\n INT. CSPD HALLWAY - DAY\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-39 | RON STALLWORTH\r\n While I\'ve got you both here. Sirs,\r\n I\'d like to be an Undercover\r\n Detective.\r\n \r\n Chief Bridges and Sgt. Trapp both stop.\r\n \r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-40 | RON STALLWORTH\r\n Whatever Department works, Sir.\r\n \r\n SGT. TRAPP\r\n You just joined The Force, Rookie.\r\n \r\n RON STALLWORTH\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-41 | SGT. TRAPP\r\n Is that right?\r\n \r\n RON STALLWORTH\r\n Well, I\'m young. I think there\'s a\r\n niche for me. Get In where I can Fit\r\n In.\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-42 | Sgt. Trapp sees the logic, looks to Chief Bridges, who stops,\r\n considering.\r\n \r\n CHIEF BRIDGES\r\n Think a lot of yourself, don\'t cha?\r\n \r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-43 | Sgt. Trapp reacts knowing Ron shouldn\'t have said that about\r\n the Records Room. CHIEF BRIDGES looks at Ron, matter of fact.\r\n \r\n CHIEF BRIDGES\r\n Well, I think Records is a good place\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-44 | \r\n CHIEF BRIDGES\r\n Keep it. I like the look.\r\n \r\n Chief Bridges walks off without another word. SGT. TRAPP\r\n gives a knowing look to Ron, who watches them walk away.\r\n \r\... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-45 | \r\n LANDERS\r\n Need a File on a Toad.\r\n \r\n Ron doesn\'t respond.\r\n \r\n LANDERS (CONT\'D)\r\n You Deaf? I said I ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-46 | RON STALLWORTH\r\n No Toads here.\r\n \r\n LANDERS\r\n Excuse me?\r\n \r\n RON STALLWORTH\r\n I said, I don... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-47 | \r\n Landers scowls. Ron stares back at him, Eye to Eye.\r\n \r\n LANDERS\r\n Heard you think you Hot Shit but you\r\n ain\'t nuthin\' but a Cold Fart. Name\'s\r\n Maurice,... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-48 | The File, throws it down on the Counter as Landers\r\n snatches The File and storms off.\r\n INT. RON\'S APARTMENT - BEDROOM - MORNING\r\n \r\n As Ron sleeps, a phone rings. Ron snaps awake and grabs at\r\n the phone on the night table.\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-49 | \r\n RON STALLWORTH\r\n Yes, Chief, I was. Just worked a\r\n Night Shift.\r\n \r\n CHIEF BRIDGES (O.S.)\r\n I changed my mind, you\'re gonna ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-50 | Sharp. Narcotics Division. Wear\r\n Street clothes.\r\n \r\n RON STALLWORTH\r\n Yes Sir, see you then. Thank You.\r\n Thank You.\r\n \r\n Ron si... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-51 | dressed in Bell-Bottoms and a Hip Italian Knit Shirt,\r\n Marshmallow Shoes steps inside the Narcotics office, which is\r\n literally The Basement of The Station. He looks around at The\r\n Area Buzzing with Activity and sees\r\n \r\n ANGLE - UNDERCOVER COPS\r... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-52 | \r\n CLOSE - CHIEF BRIDGES\r\n \r\n waves Ron back to the rear of The Room for privacy.\r\n \r\n CLOSE - FLIP ZIMMERMAN\r\n \r\n FLIP\r\n Rookie, yo... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-53 | again.\r\n \r\n Flip, late 30\'s, long hair, looks like anything but a Cop, he\r\n however is somewhat of a closed-off guy, all business, Ron\r\n sits across from him. Chief Bridges steps before them.\r\n CHIEF BRIDGES (CONT\'D)\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-54 | Ron is surprised at this.\r\n \r\n RON STALLWORTH\r\n The Nightclub?\r\n \r\n CHIEF BRIDGES\r\n No, Emmanuel Missionary Baptist\r\... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-55 | CHIEF BRIDGES (CONT\'D)\r\n Carmichael is a former High Muckity-\r\n Muck with The Black Panthers and as\r\n far as I\'m concerned, FBI Director J.\r\n Edgar Hoover was dead right when he\r\n said The Black Pan... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-56 | Good\r\n Speaker and we don\'t want this\r\n Carmichael getting into The Minds of\r\n the Black People here in Colorado\r\n Springs and stirring them up.\r\n \r\n Ron\'s face cringes at Chief Bridges... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-57 | Bunch of Subversives and monitor The\r\n Audience reaction to Carmichael. You\r\n ready?\r\n \r\n Flip and Chief Bridges stare at Ron.\r\n \r\n RON STALLWORTH\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-58 | off, as Flip wires a Wireless\r\n Transmitter and Microphone to his body. Another Narcotics\r\n Cop, JIMMY CREEK, 30\'s, observes the installation.\r\n \r\n RON STALLWORTH\r\n Any chance this thing Fucks Up?... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-59 | Then what?\r\n \r\n JIMMY\r\n Just stick to The Game Plan.\r\n \r\n RON STALLWORTH\r\n Which is?\r\n \r\... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-60 | some\r\n Big Bust. We just want some Intel,\r\n that\'s it.\r\n \r\n JIMMY\r\n What happens if someone offers you a\r\n Marijuana Cigarette?\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-61 | JIMMY\r\n Yeah.\r\n \r\n RON STALLWORTH\r\n "Soul Brother, I\'m already High on\r\n Life. Can you Dig It?"\r\n \r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-62 | \r\n Ron is caught off guard.\r\n \r\n RON STALLWORTH\r\n You expecting that?\r\n \r\n Flip pulls his Gun.\r\n \r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-63 | \r\n RON STALLWORTH\r\n Blood, get that Gun out my face.\r\n Peace Love and Soul.\r\n \r\n FLIP\r\n Gun is still in your face.\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-64 | I de-escalate. Talk calmly, firmly.\r\n Find a way out of there, A-Sap.\r\n \r\n Jimmy nods, satisfied. Flip is finished with The Wiring. Ron\r\n takes a deep breath.\r\n \r\n FLIP\r\... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-65 | RON STALLWORTH\r\n Can I order a Drink at The Bar?\r\n \r\n Flip steps away, no comment.\r\n \r\n JIMMY\r\n That\'s fine, just don\'t get Shit\r\n F... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-66 | \r\n RON STALLWORTH\r\n I got it. I\'m gone.\r\n \r\n Jimmy laughs, Slaps Ron on the back.\r\n \r\n EXT. CITY STREET - OUTSKIRTS OF DOWNTOWN - NIGHT\r\n \r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-67 | that Bottlenecks into The Club with the Sign: \r\n \r\n CLOSE SIGN - BELL\'S NIGHTINGALE\r\n \r\n ANGLE - TONIGHT: KWAME TURE SPEAKS\r\n \r\n Ron walks to the back of the line. He becomes an Every\r\n Brother slo... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-68 | a Hip array of\r\n Militant wear, Black Leather Jacket, Love Beads but on her it\r\n looks fantastic. Ron is taken by her Beauty, he watches as\r\n she monitors the door, clearly in charge.\r\n \r\n RON STALLWORTH\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-69 | I\'m doing fine, my Brother. This is\r\n going to be an Amazing Night.\r\n \r\n RON STALLWORTH\r\n Indeed it is.\r\n \r\n PATRICE\... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-70 | RON STALLWORTH\r\n Who?\r\n \r\n PATRICE\r\n Kwame Ture.\r\n \r\n RON STALLWORTH\r\n Actually, I haven\'t,... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-71 | PATRICE\r\n Yes, after he moved to Africa. He\r\n took the names of Kwame Nkrumah of\r\n Ghana and his Mentor Sekou Toure of\r\n Guinea to honor The Great Leaders.\r\n \r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-72 | \r\n PATRICE\r\n The Colorado College Black Student\r\n Union invited Brother Ture.\r\n \r\n RON STALLWORTH\r\n I can dig it. I can ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-73 | I\'m The President.\r\n \r\n RON STALLWORTH\r\n Right On. Right On.\r\n \r\n INT. BELL\'S NIGHTINGALE - NIGHT\r\n \r\n The Club is PACKED, a Sea of Black Faces... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-74 | to The Bar and signals The BARTENDER JABBO, 60\'s,\r\n Black.\r\n RON STALLWORTH\r\n Rum and Coke with Lime.\r\n \r\n As Jabbo makes his Drink, something catches Ron\'s Eye.\r\n Patrice exits throug... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-75 | Ron on his feet, Black Fist in the air with The Crowd.\r\n Patrice on Stage with Kwame Ture with her Fist raised too.\r\n The Shouting and Chanting finally cease, as Patrice speaks.\r\n \r\n PATRICE\r\n The ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-76 | some Black\r\n Love to The One and Only, The Former\r\n Prime Minister of The Black Panther\r\n Party, The Brother Man with The Plan\r\n who\'s stickin\'it to the Man, put your\r\n Hands together my People... f... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-77 | as Patrice and Kwame hug. Patrice sits on Stage with Odetta\r\n and Hakeem.\r\n \r\n Kwame soaks in the Crowd\'s reaction, until...\r\n \r\n KWAME TURE\r\n Thank you all for coming o... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-78 | \r\n towering at Six Feet-Four with an infectious smile and\r\n Flawless Dark Skin, he\'s oozing Charisma out of every pore.\r\n He stands behind a small podium.\r\n \r\n KWAME TURE (CONT\'D)\r\n ...I\'m here to t... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-79 | (CONT\'D)\r\n It is time for you to understand that\r\n you as The growing Intellectuals of\r\n this Country, you must define Beauty\r\n for Black People, Now that\'s Black\r\n Power.\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-80 | \r\n KWAME TURE\r\n Is Beauty defined by someone with a\r\n Narrow Nose? Thin Lips? White Skin?\r\n You ain\'t got none of that. If your\r\n Lips are Thick, Bite them in. Hold\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-81 | \r\n KWAME TURE (CONT\'D)\r\n Your Nose is Boss, your Lips are\r\n Thick, your skin is Black, you are\r\n Black and you are Beautiful!\r\n \r\n Everyone cheers including Ron!\r\n ... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
921f77319deb-82 | since they hate us, we hate\r\n ourselves. You dig Tarzan? I remember\r\n that when I was a Boy I used to go\r\n see Tarzan Movies on Saturdays. I\r\n loved me some Jane too. Jane was A\r\n Fine White Woman. Wh... | https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/imsdb.html |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.