Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# CODING_MODEL=dromos-gpt-4.1 # Code generation (GPT-4.1)
# TASK_MODEL=gpt-4o # Research, communication

# --- Multi-Tier Model Routing (v1.0.3+) ---
# --- Multi-Tier Model Routing (v1.1.0+) ---
# Override per complexity tier — unset falls back to TASK_MODEL
# TASK_MODEL_NANO=gpt-4.1-mini # Fast/cheap: evaluator, planning micro-steps
# TASK_MODEL_STANDARD=gpt-4o # Default: most agent tasks
Expand Down
4 changes: 3 additions & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ body:
attributes:
label: JarvisCore version
options:
- "1.0.3"
- "1.1.0"
- "1.0.4 (yanked)"
- "1.0.3 (yanked)"
- "1.0.2"
- "1.0.1"
- "main (unreleased)"
Expand Down
4 changes: 3 additions & 1 deletion .github/ISSUE_TEMPLATE/question.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ body:
attributes:
label: JarvisCore version
options:
- "1.0.3"
- "1.1.0"
- "1.0.4 (yanked)"
- "1.0.3 (yanked)"
- "1.0.2"
- "main (unreleased)"
validations:
Expand Down
149 changes: 75 additions & 74 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,77 +1,78 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# Virtual environments
venv/
ENV/
env/
.venv

# IDEs
.vscode/
.idea/
*.swp
*.swo
*~

# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/

# Type checking
.mypy_cache/
.dmypy.json
dmypy.json

# Event store data (local dev)
data/
*.jsonl

# Environment variables
.env
.env.local

# Logs
*.log
logs/
test_logs/
demo_logs/

# OS
.DS_Store
Thumbs.db

# Step Outputs
StepOutputs/
blob_storage/
INTEGRATION_AGENT_COMPARISON.md
JARVISCORE_V1_IMPLEMENTATION_PLAN.md
JARVISCORE_V1_RELEASE_PLAN.md
PRODUCTION_EXAMPLES_PLAN.md
DOC_UPDATE_PLAN_V040.md
site/
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# Virtual environments
venv/
ENV/
env/
.venv

# IDEs
.vscode/
.idea/
*.swp
*.swo
*~

# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/

# Type checking
.mypy_cache/
.dmypy.json
dmypy.json

# Event store data (local dev)
data/
*.jsonl

# Environment variables
.env
.env.local

# Logs
*.log
logs/
test_logs/
demo_logs/
traces/

# OS
.DS_Store
Thumbs.db

# Step Outputs
StepOutputs/
blob_storage/
INTEGRATION_AGENT_COMPARISON.md
JARVISCORE_V1_IMPLEMENTATION_PLAN.md
JARVISCORE_V1_RELEASE_PLAN.md
PRODUCTION_EXAMPLES_PLAN.md
DOC_UPDATE_PLAN_V040.md
site/

# Runtime artifacts
hitl_inbox/
Expand Down
4 changes: 1 addition & 3 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ recursive-include jarviscore/docs *.md
# Include examples
recursive-include examples *.py

# Include tests (optional, for users who want to run tests)
recursive-include tests *.py

# Exclude compiled Python files
global-exclude *.pyc
global-exclude __pycache__
Expand All @@ -32,3 +29,4 @@ prune .venv
prune .git
prune logs
prune jarviscore.egg-info
prune tests
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ print(results[0]["output"]) # [2, 4, 6]

### Kernel and Planning

The Kernel runs an Observe-Orient-Decide-Act (OODA) loop for every AutoAgent task. In v1.0.3, the loop is backed by a dedicated Planner and StepEvaluator that use model tier routing to balance cost and reasoning depth.
The Kernel runs an Observe-Orient-Decide-Act (OODA) loop for every AutoAgent task. In v1.1.0, the loop is backed by a dedicated Planner, StepEvaluator, and proof-of-work gates that balance cost, reasoning depth, and execution reliability.

| Component | Purpose |
|-----------|---------|
Expand Down Expand Up @@ -324,7 +324,7 @@ python committee.py --mode full --ticker NVDA --amount 1500000

## Version

**1.0.3**
**1.1.0**

## License

Expand Down
Loading