- Add core task execution framework - Add LLM integration with DeepSeek - Add text analysis task implementation - Add configuration management - Add tests and documentation
27 lines
254 B
Plaintext
27 lines
254 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.pytest_cache/
|
|
|
|
# Virtual Environment
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
|
|
# Environment Variables
|
|
.env
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Secure Configuration
|
|
config/secure.json
|
|
config/secure.key
|
|
|
|
# Distribution
|
|
dist/
|
|
build/
|
|
*.egg-info/
|