Skip to content

Commit e871d59

Browse files
committed
Add more logic
1 parent 2343a27 commit e871d59

File tree

16 files changed

+1195
-181
lines changed

16 files changed

+1195
-181
lines changed
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
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+
*.egg-info/
20+
.installed.cfg
21+
*.egg
22+
23+
# Virtual environments
24+
venv/
25+
env/
26+
ENV/
27+
.venv
28+
29+
# IDE
30+
.vscode/
31+
.idea/
32+
*.swp
33+
*.swo
34+
*~
35+
36+
# Database files
37+
*.db
38+
*.sqlite
39+
*.sqlite3
40+
41+
# Environment variables
42+
.env
43+
.env.local
44+
45+
# Logs
46+
*.log
47+
48+
# OS
49+
.DS_Store
50+
Thumbs.db
51+
52+
# Jupyter
53+
.ipynb_checkpoints/
54+
*.ipynb_checkpoints
55+
56+
# Testing
57+
.pytest_cache/
58+
.coverage
59+
htmlcov/
60+
61+
# UV
62+
.venv/
63+
uv.lock

examples/demos/procurement_agent/project/activities.py

Lines changed: 0 additions & 73 deletions
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"""Procurement agent activities module."""

0 commit comments

Comments
 (0)