Files
task-69970ff6d6d3a5544a3def7a/README.md
T
2026-06-02 06:06:35 +00:00

29 lines
1.1 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Personal AI Fluency Plan
This repository contains a detailed personal AI fluency plan, developed as part of the **AI Fluency** course. The plan outlines shortterm, mediumterm, and longterm goals, core competencies, a learning path, tools & stack, and evaluation strategy.
## Contents
- **plan.md** Full written plan.
- **main.py** A minimal, functional example that demonstrates how to build a RetrievalAugmented Generation (RAG) pipeline using LangChain, Chroma, and Ollama.
- **requirements.txt** Python dependencies.
- **.gitignore** Standard Python ignores.
## How to Use
1. **Set up a virtual environment**
```bash
python -m venv venv
source venv/bin/activate # On Windows use `venv\Scripts\activate`
```
2. **Install dependencies**
```bash
pip install -r requirements.txt
```
3. **Run the example**
```bash
python main.py
```
The script will create a small Chroma vector store, embed a sample text, and query it using an Ollama LLM.
Feel free to adapt the plan and the example to your own learning journey.