https://github.com/ashish-soni08/the-decolonized-mind
Accelerate App Development with GitHub Copilot Hackathon
https://github.com/ashish-soni08/the-decolonized-mind
generative-ai groq llamaindex nvidia-nim rag
Last synced: 3 months ago
JSON representation
Accelerate App Development with GitHub Copilot Hackathon
- Host: GitHub
- URL: https://github.com/ashish-soni08/the-decolonized-mind
- Owner: Ashish-Soni08
- License: mit
- Created: 2024-10-21T21:18:40.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-02-13T22:40:29.000Z (4 months ago)
- Last Synced: 2025-02-13T23:32:06.613Z (4 months ago)
- Topics: generative-ai, groq, llamaindex, nvidia-nim, rag
- Language: Python
- Homepage: https://github-copilot.devpost.com
- Size: 2.34 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# THE DECOLONIZED MIND

## Technical Implementation Details
### Architecture
### Environment Setup
```bash
python -V
# Output -> Python 3.12.1
``````bash
# create a virtual environment
python -m venv langflow-ai
``````bash
# activate the virtual enivironment
source langflow-ai/bin/activate
``````bash
# create a Jupyter Notebook kernel
pip install jupyter ipykernel
``````bash
# add the virtual environment as a kernel for the jupyter notebook
python -m ipykernel install --user --name=langflow-ai --display-name="Py3.12-langflow-ai"
``````bash
# verify kernel installation
jupyter kernelspec list
```