Skip to content

Commit 333583d

Browse files
Add agentic RAG with authorization example (#43)
* Add agentic RAG with authorization example * chore: fixed yaml lint error * chore: sync latest readme and docker-compose improvements * fix: restore quoted strings and document start in docker-compose.yml to pass yaml lint
1 parent 2a4f9c0 commit 333583d

File tree

92 files changed

+6626
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+6626
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Weaviate Configuration
2+
WEAVIATE_URL=http://localhost:8080
3+
WEAVIATE_API_KEY=
4+
5+
# SpiceDB Configuration
6+
SPICEDB_ENDPOINT=localhost:50051
7+
SPICEDB_TOKEN=devtoken
8+
9+
# OpenAI Configuration
10+
# Get your API key from https://platform.openai.com/api-keys
11+
OPENAI_API_KEY=your-api-key-here
12+
13+
# Agent Behavior
14+
MAX_RETRIEVAL_ATTEMPTS=1
15+
16+
# Logging
17+
LOG_LEVEL=INFO
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# Python
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
*.so
6+
.Python
7+
build/
8+
develop-eggs/
9+
dist/
10+
downloads/
11+
eggs/
12+
.eggs/
13+
lib/
14+
lib64/
15+
parts/
16+
sdist/
17+
var/
18+
wheels/
19+
pip-wheel-metadata/
20+
share/python-wheels/
21+
*.egg-info/
22+
.installed.cfg
23+
*.egg
24+
MANIFEST
25+
26+
# Virtual environments
27+
venv/
28+
env/
29+
ENV/
30+
.venv
31+
32+
# IDEs
33+
.vscode/
34+
.idea/
35+
*.swp
36+
*.swo
37+
*~
38+
39+
# Environment
40+
.env
41+
.env.local
42+
43+
# Testing
44+
.pytest_cache/
45+
.coverage
46+
htmlcov/
47+
.tox/
48+
49+
# OS
50+
.DS_Store
51+
Thumbs.db
52+
53+
# Logs
54+
*.log
55+
56+
# Docker volumes
57+
docker-volumes/
58+
59+
docs/

0 commit comments

Comments
 (0)