Commit ·
e075a32
0
Parent(s):
initialzie repo
Browse files- .gitattributes +2 -0
- .gitignore +13 -0
- .python-version +1 -0
- pyproject.toml +15 -0
- uv.lock +0 -0
.gitattributes
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.jpg filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.png filter=lfs diff=lfs merge=lfs -text
|
.gitignore
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Python-generated files
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.py[oc]
|
| 4 |
+
build/
|
| 5 |
+
dist/
|
| 6 |
+
wheels/
|
| 7 |
+
*.egg-info
|
| 8 |
+
|
| 9 |
+
# Virtual environments
|
| 10 |
+
.venv
|
| 11 |
+
|
| 12 |
+
# Secrets
|
| 13 |
+
.env
|
.python-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
3.12
|
pyproject.toml
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "context-engineering"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
description = "Context Engineering Visualizer - Demonstrates information flow in LLM agents"
|
| 5 |
+
readme = "README.md"
|
| 6 |
+
requires-python = ">=3.12"
|
| 7 |
+
dependencies = [
|
| 8 |
+
"faiss-cpu>=1.13.2",
|
| 9 |
+
"ipykernel>=7.1.0",
|
| 10 |
+
"langchain>=1.2.6",
|
| 11 |
+
"langchain-community>=0.4.1",
|
| 12 |
+
"langchain-openai>=1.1.7",
|
| 13 |
+
"python-dotenv>=1.2.1",
|
| 14 |
+
"tiktoken>=0.12.0",
|
| 15 |
+
]
|
uv.lock
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|