Compare commits

..

1 Commits

Author SHA1 Message Date
Alexander Whitestone
f71e2e6c16 [gemini] [ARCH] Adaptive Logic Router — classify queries to the right symbolic engine (#43) 2026-03-27 19:00:47 -04:00
3 changed files with 13 additions and 16 deletions

View File

@@ -1,5 +1,5 @@
{
"updated_at": "2026-03-27T21:56:42.192325",
"updated_at": "2026-03-27T15:20:52.948451",
"platforms": {
"discord": [
{

View File

@@ -1,8 +1,8 @@
model:
default: gpt-5.4
provider: openai-codex
default: auto
provider: custom
context_length: 65536
base_url: https://chatgpt.com/backend-api/codex
base_url: http://localhost:8081/v1
toolsets:
- all
agent:
@@ -206,10 +206,7 @@ providers:
base_url: http://localhost:11434/v1
model: hermes3:latest
mcp_servers:
# Key = prefix for tool names: mcp_{key}_toolname
# Shorter key = less room for model hallucination.
# Rename here + update morrowind/mcp_config.yaml to match.
mw:
morrowind:
command: python3
args:
- /Users/apayne/.timmy/morrowind/mcp_server.py

View File

@@ -1159,17 +1159,17 @@ def archive_pipeline_tick():
@huey.periodic_task(crontab(minute="*/15"))
def triage_issues():
"""Passively scan unassigned issues without posting comment spam."""
"""Score and assign unassigned issues across all repos."""
g = GiteaClient()
backlog = []
found = 0
for repo in REPOS:
for issue in g.find_unassigned_issues(repo, limit=10):
backlog.append({
"repo": repo,
"issue": issue.number,
"title": issue.title,
})
return {"unassigned": len(backlog), "sample": backlog[:20]}
found += 1
g.create_comment(
repo, issue.number,
"🔍 Triaged by Huey — needs assignment."
)
return {"triaged": found}
@huey.periodic_task(crontab(minute="*/30"))