cesmith012/technical-assistant
0
1# Python
2__pycache__/
3*.py[cod]
4*$py.class
5*.so
6.Python
7build/
8develop-eggs/
9dist/
10downloads/
11eggs/
12.eggs/
13lib/
14lib64/
15parts/
16sdist/
17var/
18wheels/
19*.egg-info/
20.installed.cfg
21*.egg
22
23# Virtual Environment
24venv/
25env/
26ENV/
27.env
28.venv
29
30# IDE
31.idea/
32.vscode/
33*.swp
34*.swo
35.project
36.pydevproject
37.settings/
38
39# Logs and databases
40*.log
41*.sqlite
42*.db
43chat_logs.xlsx
44conversation_memory.xlsx
45
46# Azure Storage
47azure_storage/
48
49# Project specific
50G:/Standards/
51G:/APPS/
52*.pdf
53*.doc
54*.docx
55*.dwg
56*.sldprt
57*.sldasm
58
59# Temporary files
60tmp/
61temp/
62.DS_Store
63Thumbs.db
64
65# Gradio specific
66flagged/
67gradio_cached_examples/
68
69# Security and configuration
70*.pem
71*.key
72*.cert
73config.py
74.env
75secrets.json
76
77# Test coverage
78.coverage
79htmlcov/
80.tox/
81.nox/
82.coverage.*
83coverage.xml
84*.cover 