├── .gitignore ├── .tmpfile ├── Discussion - Questions and Next Steps.md ├── LICENSE ├── Lab 0 - Sign In ├── README.md └── images │ ├── 01.png │ ├── 02.png │ ├── 03.png │ ├── 04.png │ ├── 05.png │ ├── 06.png │ └── 07.png ├── Lab 1 - Deploy Neo4j ├── README.md ├── backup │ └── README copy.md └── images │ ├── 01.png │ ├── 02.png │ ├── 03.png │ ├── 04.png │ ├── 04b.png │ ├── 05.png │ ├── 06.png │ ├── 06a.png │ ├── 06b-1.png │ ├── 06b-2.png │ ├── 06b.gif │ ├── 06b.png │ ├── 07.png │ ├── 08.png │ ├── 09.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 15.gif │ ├── 16.png │ ├── 17.png │ └── 18.png ├── Lab 2 - Connect to Neo4j ├── README.md └── images │ ├── 01.png │ ├── 02.png │ ├── 03.png │ ├── 04.png │ ├── 05.png │ ├── 06.png │ ├── 07.png │ ├── 08.png │ ├── 09.png │ ├── 10.png │ └── 11.png ├── Lab 3 - Moving Data ├── README.md └── images │ ├── 01.png │ ├── 02.png │ ├── 03.png │ ├── 04.png │ ├── 05.png │ ├── 06.png │ ├── 07.png │ ├── 08.png │ ├── 09.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ └── 13.png ├── Lab 4 - Exploration ├── README.md └── images │ ├── 01.png │ ├── 02.png │ ├── 03.png │ ├── 04.png │ ├── 05.png │ ├── 06.png │ ├── 07.png │ ├── 08.png │ ├── 09.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.png │ ├── 16.png │ ├── 17.png │ ├── 18.png │ ├── 19.png │ ├── 20.png │ ├── 21.png │ ├── 22.png │ ├── 23.png │ └── 24.png ├── Lab 5 - Parsing Data ├── README.md ├── backup │ └── parsing-data copy.ipynb ├── images │ ├── 01.png │ ├── 02.png │ ├── 03.png │ ├── 04.png │ ├── 05.png │ ├── 06.png │ ├── 07.png │ ├── 08.png │ ├── 09.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.png │ ├── 16.png │ ├── 17.png │ ├── 18.png │ ├── 19.png │ ├── 20.png │ └── 21.png └── parsing-data.ipynb ├── Lab 6 - Chatbot ├── README.md ├── chatbot.ipynb └── images │ ├── 01.png │ └── langchain.png ├── Lab 7 - Semantic Search ├── 01-text-embedding.ipynb ├── 02-semantic-search.ipynb └── README.md └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/.gitignore -------------------------------------------------------------------------------- /.tmpfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Discussion - Questions and Next Steps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Discussion - Questions and Next Steps.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/LICENSE -------------------------------------------------------------------------------- /Lab 0 - Sign In/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 0 - Sign In/README.md -------------------------------------------------------------------------------- /Lab 0 - Sign In/images/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 0 - Sign In/images/01.png -------------------------------------------------------------------------------- /Lab 0 - Sign In/images/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 0 - Sign In/images/02.png -------------------------------------------------------------------------------- /Lab 0 - Sign In/images/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 0 - Sign In/images/03.png -------------------------------------------------------------------------------- /Lab 0 - Sign In/images/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 0 - Sign In/images/04.png -------------------------------------------------------------------------------- /Lab 0 - Sign In/images/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 0 - Sign In/images/05.png -------------------------------------------------------------------------------- /Lab 0 - Sign In/images/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 0 - Sign In/images/06.png -------------------------------------------------------------------------------- /Lab 0 - Sign In/images/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 0 - Sign In/images/07.png -------------------------------------------------------------------------------- /Lab 1 - Deploy Neo4j/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 1 - Deploy Neo4j/README.md -------------------------------------------------------------------------------- /Lab 1 - Deploy Neo4j/backup/README copy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 1 - Deploy Neo4j/backup/README copy.md -------------------------------------------------------------------------------- /Lab 1 - Deploy Neo4j/images/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 1 - Deploy Neo4j/images/01.png -------------------------------------------------------------------------------- /Lab 1 - Deploy Neo4j/images/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 1 - Deploy Neo4j/images/02.png -------------------------------------------------------------------------------- /Lab 1 - Deploy Neo4j/images/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 1 - Deploy Neo4j/images/03.png -------------------------------------------------------------------------------- /Lab 1 - Deploy Neo4j/images/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 1 - Deploy Neo4j/images/04.png -------------------------------------------------------------------------------- /Lab 1 - Deploy Neo4j/images/04b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 1 - Deploy Neo4j/images/04b.png -------------------------------------------------------------------------------- /Lab 1 - Deploy Neo4j/images/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 1 - Deploy Neo4j/images/05.png -------------------------------------------------------------------------------- /Lab 1 - Deploy Neo4j/images/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 1 - Deploy Neo4j/images/06.png -------------------------------------------------------------------------------- /Lab 1 - Deploy Neo4j/images/06a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 1 - Deploy Neo4j/images/06a.png -------------------------------------------------------------------------------- /Lab 1 - Deploy Neo4j/images/06b-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 1 - Deploy Neo4j/images/06b-1.png -------------------------------------------------------------------------------- /Lab 1 - Deploy Neo4j/images/06b-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 1 - Deploy Neo4j/images/06b-2.png -------------------------------------------------------------------------------- /Lab 1 - Deploy Neo4j/images/06b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 1 - Deploy Neo4j/images/06b.gif -------------------------------------------------------------------------------- /Lab 1 - Deploy Neo4j/images/06b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 1 - Deploy Neo4j/images/06b.png -------------------------------------------------------------------------------- /Lab 1 - Deploy Neo4j/images/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 1 - Deploy Neo4j/images/07.png -------------------------------------------------------------------------------- /Lab 1 - Deploy Neo4j/images/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 1 - Deploy Neo4j/images/08.png -------------------------------------------------------------------------------- /Lab 1 - Deploy Neo4j/images/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 1 - Deploy Neo4j/images/09.png -------------------------------------------------------------------------------- /Lab 1 - Deploy Neo4j/images/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 1 - Deploy Neo4j/images/10.png -------------------------------------------------------------------------------- /Lab 1 - Deploy Neo4j/images/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 1 - Deploy Neo4j/images/11.png -------------------------------------------------------------------------------- /Lab 1 - Deploy Neo4j/images/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 1 - Deploy Neo4j/images/12.png -------------------------------------------------------------------------------- /Lab 1 - Deploy Neo4j/images/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 1 - Deploy Neo4j/images/13.png -------------------------------------------------------------------------------- /Lab 1 - Deploy Neo4j/images/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 1 - Deploy Neo4j/images/15.gif -------------------------------------------------------------------------------- /Lab 1 - Deploy Neo4j/images/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 1 - Deploy Neo4j/images/16.png -------------------------------------------------------------------------------- /Lab 1 - Deploy Neo4j/images/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 1 - Deploy Neo4j/images/17.png -------------------------------------------------------------------------------- /Lab 1 - Deploy Neo4j/images/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 1 - Deploy Neo4j/images/18.png -------------------------------------------------------------------------------- /Lab 2 - Connect to Neo4j/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 2 - Connect to Neo4j/README.md -------------------------------------------------------------------------------- /Lab 2 - Connect to Neo4j/images/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 2 - Connect to Neo4j/images/01.png -------------------------------------------------------------------------------- /Lab 2 - Connect to Neo4j/images/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 2 - Connect to Neo4j/images/02.png -------------------------------------------------------------------------------- /Lab 2 - Connect to Neo4j/images/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 2 - Connect to Neo4j/images/03.png -------------------------------------------------------------------------------- /Lab 2 - Connect to Neo4j/images/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 2 - Connect to Neo4j/images/04.png -------------------------------------------------------------------------------- /Lab 2 - Connect to Neo4j/images/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 2 - Connect to Neo4j/images/05.png -------------------------------------------------------------------------------- /Lab 2 - Connect to Neo4j/images/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 2 - Connect to Neo4j/images/06.png -------------------------------------------------------------------------------- /Lab 2 - Connect to Neo4j/images/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 2 - Connect to Neo4j/images/07.png -------------------------------------------------------------------------------- /Lab 2 - Connect to Neo4j/images/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 2 - Connect to Neo4j/images/08.png -------------------------------------------------------------------------------- /Lab 2 - Connect to Neo4j/images/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 2 - Connect to Neo4j/images/09.png -------------------------------------------------------------------------------- /Lab 2 - Connect to Neo4j/images/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 2 - Connect to Neo4j/images/10.png -------------------------------------------------------------------------------- /Lab 2 - Connect to Neo4j/images/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 2 - Connect to Neo4j/images/11.png -------------------------------------------------------------------------------- /Lab 3 - Moving Data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 3 - Moving Data/README.md -------------------------------------------------------------------------------- /Lab 3 - Moving Data/images/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 3 - Moving Data/images/01.png -------------------------------------------------------------------------------- /Lab 3 - Moving Data/images/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 3 - Moving Data/images/02.png -------------------------------------------------------------------------------- /Lab 3 - Moving Data/images/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 3 - Moving Data/images/03.png -------------------------------------------------------------------------------- /Lab 3 - Moving Data/images/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 3 - Moving Data/images/04.png -------------------------------------------------------------------------------- /Lab 3 - Moving Data/images/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 3 - Moving Data/images/05.png -------------------------------------------------------------------------------- /Lab 3 - Moving Data/images/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 3 - Moving Data/images/06.png -------------------------------------------------------------------------------- /Lab 3 - Moving Data/images/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 3 - Moving Data/images/07.png -------------------------------------------------------------------------------- /Lab 3 - Moving Data/images/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 3 - Moving Data/images/08.png -------------------------------------------------------------------------------- /Lab 3 - Moving Data/images/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 3 - Moving Data/images/09.png -------------------------------------------------------------------------------- /Lab 3 - Moving Data/images/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 3 - Moving Data/images/10.png -------------------------------------------------------------------------------- /Lab 3 - Moving Data/images/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 3 - Moving Data/images/11.png -------------------------------------------------------------------------------- /Lab 3 - Moving Data/images/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 3 - Moving Data/images/12.png -------------------------------------------------------------------------------- /Lab 3 - Moving Data/images/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 3 - Moving Data/images/13.png -------------------------------------------------------------------------------- /Lab 4 - Exploration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 4 - Exploration/README.md -------------------------------------------------------------------------------- /Lab 4 - Exploration/images/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 4 - Exploration/images/01.png -------------------------------------------------------------------------------- /Lab 4 - Exploration/images/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 4 - Exploration/images/02.png -------------------------------------------------------------------------------- /Lab 4 - Exploration/images/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 4 - Exploration/images/03.png -------------------------------------------------------------------------------- /Lab 4 - Exploration/images/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 4 - Exploration/images/04.png -------------------------------------------------------------------------------- /Lab 4 - Exploration/images/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 4 - Exploration/images/05.png -------------------------------------------------------------------------------- /Lab 4 - Exploration/images/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 4 - Exploration/images/06.png -------------------------------------------------------------------------------- /Lab 4 - Exploration/images/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 4 - Exploration/images/07.png -------------------------------------------------------------------------------- /Lab 4 - Exploration/images/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 4 - Exploration/images/08.png -------------------------------------------------------------------------------- /Lab 4 - Exploration/images/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 4 - Exploration/images/09.png -------------------------------------------------------------------------------- /Lab 4 - Exploration/images/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 4 - Exploration/images/10.png -------------------------------------------------------------------------------- /Lab 4 - Exploration/images/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 4 - Exploration/images/11.png -------------------------------------------------------------------------------- /Lab 4 - Exploration/images/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 4 - Exploration/images/12.png -------------------------------------------------------------------------------- /Lab 4 - Exploration/images/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 4 - Exploration/images/13.png -------------------------------------------------------------------------------- /Lab 4 - Exploration/images/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 4 - Exploration/images/14.png -------------------------------------------------------------------------------- /Lab 4 - Exploration/images/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 4 - Exploration/images/15.png -------------------------------------------------------------------------------- /Lab 4 - Exploration/images/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 4 - Exploration/images/16.png -------------------------------------------------------------------------------- /Lab 4 - Exploration/images/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 4 - Exploration/images/17.png -------------------------------------------------------------------------------- /Lab 4 - Exploration/images/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 4 - Exploration/images/18.png -------------------------------------------------------------------------------- /Lab 4 - Exploration/images/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 4 - Exploration/images/19.png -------------------------------------------------------------------------------- /Lab 4 - Exploration/images/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 4 - Exploration/images/20.png -------------------------------------------------------------------------------- /Lab 4 - Exploration/images/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 4 - Exploration/images/21.png -------------------------------------------------------------------------------- /Lab 4 - Exploration/images/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 4 - Exploration/images/22.png -------------------------------------------------------------------------------- /Lab 4 - Exploration/images/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 4 - Exploration/images/23.png -------------------------------------------------------------------------------- /Lab 4 - Exploration/images/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 4 - Exploration/images/24.png -------------------------------------------------------------------------------- /Lab 5 - Parsing Data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 5 - Parsing Data/README.md -------------------------------------------------------------------------------- /Lab 5 - Parsing Data/backup/parsing-data copy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 5 - Parsing Data/backup/parsing-data copy.ipynb -------------------------------------------------------------------------------- /Lab 5 - Parsing Data/images/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 5 - Parsing Data/images/01.png -------------------------------------------------------------------------------- /Lab 5 - Parsing Data/images/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 5 - Parsing Data/images/02.png -------------------------------------------------------------------------------- /Lab 5 - Parsing Data/images/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 5 - Parsing Data/images/03.png -------------------------------------------------------------------------------- /Lab 5 - Parsing Data/images/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 5 - Parsing Data/images/04.png -------------------------------------------------------------------------------- /Lab 5 - Parsing Data/images/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 5 - Parsing Data/images/05.png -------------------------------------------------------------------------------- /Lab 5 - Parsing Data/images/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 5 - Parsing Data/images/06.png -------------------------------------------------------------------------------- /Lab 5 - Parsing Data/images/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 5 - Parsing Data/images/07.png -------------------------------------------------------------------------------- /Lab 5 - Parsing Data/images/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 5 - Parsing Data/images/08.png -------------------------------------------------------------------------------- /Lab 5 - Parsing Data/images/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 5 - Parsing Data/images/09.png -------------------------------------------------------------------------------- /Lab 5 - Parsing Data/images/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 5 - Parsing Data/images/10.png -------------------------------------------------------------------------------- /Lab 5 - Parsing Data/images/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 5 - Parsing Data/images/11.png -------------------------------------------------------------------------------- /Lab 5 - Parsing Data/images/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 5 - Parsing Data/images/12.png -------------------------------------------------------------------------------- /Lab 5 - Parsing Data/images/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 5 - Parsing Data/images/13.png -------------------------------------------------------------------------------- /Lab 5 - Parsing Data/images/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 5 - Parsing Data/images/14.png -------------------------------------------------------------------------------- /Lab 5 - Parsing Data/images/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 5 - Parsing Data/images/15.png -------------------------------------------------------------------------------- /Lab 5 - Parsing Data/images/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 5 - Parsing Data/images/16.png -------------------------------------------------------------------------------- /Lab 5 - Parsing Data/images/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 5 - Parsing Data/images/17.png -------------------------------------------------------------------------------- /Lab 5 - Parsing Data/images/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 5 - Parsing Data/images/18.png -------------------------------------------------------------------------------- /Lab 5 - Parsing Data/images/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 5 - Parsing Data/images/19.png -------------------------------------------------------------------------------- /Lab 5 - Parsing Data/images/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 5 - Parsing Data/images/20.png -------------------------------------------------------------------------------- /Lab 5 - Parsing Data/images/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 5 - Parsing Data/images/21.png -------------------------------------------------------------------------------- /Lab 5 - Parsing Data/parsing-data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 5 - Parsing Data/parsing-data.ipynb -------------------------------------------------------------------------------- /Lab 6 - Chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 6 - Chatbot/README.md -------------------------------------------------------------------------------- /Lab 6 - Chatbot/chatbot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 6 - Chatbot/chatbot.ipynb -------------------------------------------------------------------------------- /Lab 6 - Chatbot/images/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 6 - Chatbot/images/01.png -------------------------------------------------------------------------------- /Lab 6 - Chatbot/images/langchain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 6 - Chatbot/images/langchain.png -------------------------------------------------------------------------------- /Lab 7 - Semantic Search/01-text-embedding.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 7 - Semantic Search/01-text-embedding.ipynb -------------------------------------------------------------------------------- /Lab 7 - Semantic Search/02-semantic-search.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 7 - Semantic Search/02-semantic-search.ipynb -------------------------------------------------------------------------------- /Lab 7 - Semantic Search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/Lab 7 - Semantic Search/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-partners/hands-on-lab-neo4j-and-bedrock/HEAD/README.md --------------------------------------------------------------------------------