Compare commits
7 Commits
gemini/iss
...
gemini/iss
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ff76532825 | ||
| 53ffca38a1 | |||
| fd26354678 | |||
| c9b6869d9f | |||
|
|
7f912b7662 | ||
|
|
4042a23441 | ||
|
|
8f10b5fc92 |
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"updated_at": "2026-03-27T15:20:52.948451",
|
||||
"updated_at": "2026-03-27T21:56:42.192325",
|
||||
"platforms": {
|
||||
"discord": [
|
||||
{
|
||||
|
||||
11
config.yaml
11
config.yaml
@@ -1,8 +1,8 @@
|
||||
model:
|
||||
default: auto
|
||||
provider: custom
|
||||
default: gpt-5.4
|
||||
provider: openai-codex
|
||||
context_length: 65536
|
||||
base_url: http://localhost:8081/v1
|
||||
base_url: https://chatgpt.com/backend-api/codex
|
||||
toolsets:
|
||||
- all
|
||||
agent:
|
||||
@@ -206,7 +206,10 @@ providers:
|
||||
base_url: http://localhost:11434/v1
|
||||
model: hermes3:latest
|
||||
mcp_servers:
|
||||
morrowind:
|
||||
# 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:
|
||||
command: python3
|
||||
args:
|
||||
- /Users/apayne/.timmy/morrowind/mcp_server.py
|
||||
|
||||
16
tasks.py
16
tasks.py
@@ -1159,17 +1159,17 @@ def archive_pipeline_tick():
|
||||
|
||||
@huey.periodic_task(crontab(minute="*/15"))
|
||||
def triage_issues():
|
||||
"""Score and assign unassigned issues across all repos."""
|
||||
"""Passively scan unassigned issues without posting comment spam."""
|
||||
g = GiteaClient()
|
||||
found = 0
|
||||
backlog = []
|
||||
for repo in REPOS:
|
||||
for issue in g.find_unassigned_issues(repo, limit=10):
|
||||
found += 1
|
||||
g.create_comment(
|
||||
repo, issue.number,
|
||||
"🔍 Triaged by Huey — needs assignment."
|
||||
)
|
||||
return {"triaged": found}
|
||||
backlog.append({
|
||||
"repo": repo,
|
||||
"issue": issue.number,
|
||||
"title": issue.title,
|
||||
})
|
||||
return {"unassigned": len(backlog), "sample": backlog[:20]}
|
||||
|
||||
|
||||
@huey.periodic_task(crontab(minute="*/30"))
|
||||
|
||||
Reference in New Issue
Block a user