Skip to content

Commit c6e0008

Browse files
authored
Merge pull request #2 from multi-arch/jeyoung
Sync to main
2 parents 6b25854 + 77d6bc4 commit c6e0008

Some content is hidden

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

59 files changed

+5767
-115
lines changed

.dockerignore

Lines changed: 145 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,145 @@
1+
# Git and version control
2+
.git
3+
.gitignore
4+
.gitattributes
5+
6+
# Python cache and build artifacts
7+
__pycache__/
8+
*.py[cod]
9+
*$py.class
10+
*.so
11+
.Python
12+
build/
13+
develop-eggs/
14+
dist/
15+
downloads/
16+
eggs/
17+
.eggs/
18+
lib/
19+
lib64/
20+
parts/
21+
sdist/
22+
var/
23+
wheels/
24+
share/python-wheels/
25+
*.egg-info/
26+
.installed.cfg
27+
*.egg
28+
MANIFEST
29+
30+
# Virtual environments
31+
venv/
32+
env/
33+
ENV/
34+
env.bak/
35+
venv.bak/
36+
37+
# IDE and editor files
38+
.vscode/
39+
.idea/
40+
*.swp
41+
*.swo
42+
*~
43+
44+
# OS generated files
45+
.DS_Store
46+
.DS_Store?
47+
._*
48+
.Spotlight-V100
49+
.Trashes
50+
ehthumbs.db
51+
Thumbs.db
52+
53+
# Logs and temporary files
54+
*.log
55+
*.tmp
56+
*.temp
57+
logs/
58+
tmp/
59+
60+
# Documentation and example files
61+
*.md
62+
docs/
63+
examples/
64+
65+
# Container and deployment files
66+
docker-compose.yml
67+
docker-compose.yaml
68+
Dockerfile.*
69+
.dockerignore
70+
quick-start-containers.sh
71+
72+
# Kubernetes and OpenShift deployment files
73+
deploy/
74+
k8s/
75+
openshift/
76+
77+
# Test files
78+
test/
79+
tests/
80+
*_test.py
81+
*_tests.py
82+
pytest.ini
83+
.pytest_cache/
84+
.coverage
85+
htmlcov/
86+
.tox/
87+
.nox/
88+
.coverage.*
89+
.cache
90+
nosetests.xml
91+
coverage.xml
92+
*.cover
93+
.hypothesis/
94+
95+
# Local environment and secrets
96+
.env
97+
.env.local
98+
.env.*.local
99+
.secret
100+
secrets/
101+
*.key
102+
*.pem
103+
104+
# Backup and temporary files
105+
*.bak
106+
*.backup
107+
*.orig
108+
109+
# Dependencies that should be installed during build
110+
node_modules/
111+
npm-debug.log*
112+
yarn-debug.log*
113+
yarn-error.log*
114+
115+
# Model files (should be downloaded in container)
116+
models/
117+
*.model
118+
*.bin
119+
120+
# Large binary files
121+
*.tar
122+
*.tar.gz
123+
*.zip
124+
*.rar
125+
126+
# Jupyter notebooks
127+
*.ipynb
128+
.ipynb_checkpoints/
129+
130+
# mypy
131+
.mypy_cache/
132+
.dmypy.json
133+
dmypy.json
134+
135+
# Pyre type checker
136+
.pyre/
137+
138+
# pytype static type analyzer
139+
.pytype/
140+
141+
# Cython debug symbols
142+
cython_debug/
143+
144+
# PyCharm
145+
.idea/

.env

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Configuration for local Ollama model usage
2+
OLLAMA_BASE_URL=http://localhost:11434
3+
OLLAMA_API_KEY=ollama
4+
5+
# Disable Google GenAI/Vertex AI for local model usage
6+
GOOGLE_GENAI_USE_VERTEXAI=FALSE

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__pycache__/

0 commit comments

Comments
 (0)