Skip to content

Commit 4bbb7a0

Browse files
authored
Merge pull request #1 from FSoft-AI4Code/feat/cli
Feat/cli
2 parents bf22703 + 655084a commit 4bbb7a0

91 files changed

Lines changed: 5316 additions & 422 deletions

Some content is hidden

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

.gitignore

Lines changed: 60 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,74 @@
11
config/agent_config.yaml
22
tool/add_header.sh
33

4+
# Python
45
.venv
6+
venv/
57
__pycache__/
6-
*.egg-info
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+
pip-wheel-metadata/
25+
share/python-wheels/
26+
*.egg-info/
27+
.installed.cfg
28+
*.egg
29+
MANIFEST
30+
31+
# PyInstaller
32+
*.manifest
33+
*.spec
34+
35+
# Tests
36+
.pytest_cache/
37+
.coverage
38+
htmlcov/
39+
.tox/
40+
.hypothesis/
41+
tests/
42+
43+
# Jupyter
744
*.ipynb
45+
.ipynb_checkpoints
46+
47+
# Project specific
848
output/
949
data/
1050
src/output/
1151
repo_data/
52+
docs/.cache/
53+
54+
# Environment variables
1255
.env*
1356
*.env
1457
**/.env
1558
**/.env.*
59+
60+
# IDEs
61+
.vscode/
62+
.idea/
63+
*.swp
64+
*.swo
65+
*~
66+
67+
# OS
68+
.DS_Store
69+
Thumbs.db
70+
71+
# Temporary files
72+
*.tmp
73+
*.log
74+
*.bak

DOCKER_README.md

Lines changed: 0 additions & 30 deletions
This file was deleted.

0 commit comments

Comments
 (0)