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
30 changes: 30 additions & 0 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 11 additions & 11 deletions config/factory/config.json
Original file line number Diff line number Diff line change
@@ -1,40 +1,40 @@
{
"custom_models": [
{
"model": "gemini-3-pro-preview",
"model": "claude-opus-4-5-20251101",
"base_url": "http://127.0.0.1:8317/v1",
"api_key": "sk-dummy",
"provider": "openai"
"provider": "anthropic"
},
{
"model": "gpt-5.1",
"model": "claude-haiku-4-5-20251001",
"base_url": "http://127.0.0.1:8317/v1",
"api_key": "sk-dummy",
"provider": "openai"
"provider": "anthropic"
},
{
"model": "gpt-5.1-codex",
"model": "gemini-3-pro-preview",
"base_url": "http://127.0.0.1:8317/v1",
"api_key": "sk-dummy",
"provider": "openai"
"provider": "antigravity"
Comment on lines +16 to +19

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The provider for the gemini-3-pro-preview model is set to antigravity. This is an unconventional provider name and might be a placeholder. Using a placeholder or incorrect provider name can lead to runtime errors when this model is invoked. This should be updated to the correct provider identifier if antigravity is not the intended final value.

Copilot AI Dec 5, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The provider "antigravity" is not a valid provider. Based on the config.yaml file which lists valid protocols as "openai", "gemini", "claude", and "codex", this should likely be "gemini" for a model named "gemini-3-pro-preview".

Suggested change
"provider": "antigravity"
"provider": "gemini"

Copilot uses AI. Check for mistakes.
},
{
"model": "gpt-5.1-codex-max",
"model": "gpt-5.1",
"base_url": "http://127.0.0.1:8317/v1",
"api_key": "sk-dummy",
"provider": "openai"
},
{
"model": "claude-opus-4-5-20251101",
"model": "gpt-5.1-codex",
"base_url": "http://127.0.0.1:8317/v1",
"api_key": "sk-dummy",
"provider": "anthropic"
"provider": "openai"
},
{
"model": "claude-haiku-4-5-20251001",
"model": "gpt-5.1-codex-max",
"base_url": "http://127.0.0.1:8317/v1",
"api_key": "sk-dummy",
"provider": "anthropic"
"provider": "openai"
}
]
}
1 change: 0 additions & 1 deletion home-manager/packages/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ with pkgs;
age
aichat
# aider-chat # FIXME: pyarrow 20.0.0 has malloc issues on macOS, uncomment when fixed
amp-cli
argocd
ast-grep
awscli
Expand Down
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"@github/copilot": "^0.0.366",
"@google/jules": "^0.1.40",
"@nanocollective/nanocoder": "^1.16.3",
"@sourcegraph/amp": "^0.0.1764893126-gb1ffc3",

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The @sourcegraph/amp package is being added with a version that points to a specific git commit (^0.0.1764893126-gb1ffc3). Using direct git dependencies can introduce instability and security risks, as they may not have gone through the same vetting process as packages published to a registry. This also affects the bun.lock file. It is recommended to use a stable, published version from a package registry (like npm) if one is available to ensure better dependency management and security.

"@typescript/native-preview": "^7.0.0-dev.20251127.1",
"cline": "^1.0.5",
"open-composer": "^0.8.23",
Expand All @@ -27,6 +28,7 @@
"@github/copilot",
"@google/jules",
"@nanocollective/nanocoder",
"@sourcegraph/amp",
"@typescript/native-preview",
"cline",
"open-composer",
Expand Down
Loading