feat: add claude-code
and more ai stuff (#198)
* Add `claude-code` * Upgrade `mise` runtimes * Some minor generic updates Reviewed-on: #198 Co-authored-by: Joao P Dubas <joao.dubas+gitea@gmail.com> Co-committed-by: Joao P Dubas <joao.dubas+gitea@gmail.com>
This commit is contained in:
parent
19dedb7697
commit
106647b7b7
@ -1,18 +1,18 @@
|
||||
[tools]
|
||||
"aqua:BurntSushi/ripgrep" = "14.1.1"
|
||||
"aqua:CircleCI-Public/circleci-cli" = "0.1.31425"
|
||||
"aqua:CircleCI-Public/circleci-cli" = "0.1.31543"
|
||||
"aqua:FiloSottile/age" = "1.2.1"
|
||||
"aqua:ajeetdsouza/zoxide" = "0.9.7"
|
||||
"aqua:alexellis/k3sup" = "0.13.8"
|
||||
"aqua:astral-sh/uv" = "0.6.6"
|
||||
"aqua:aws/aws-cli" = "2.24.22"
|
||||
"aqua:astral-sh/uv" = "0.6.10"
|
||||
"aqua:aws/aws-cli" = "2.25.3"
|
||||
"aqua:bitwarden/clients" = "cli-v2025.2.0"
|
||||
"aqua:dagger/dagger" = "0.16.3"
|
||||
"aqua:derailed/k9s" = "0.40.8"
|
||||
"aqua:eksctl-io/eksctl" = "0.205.0"
|
||||
"aqua:evilmartians/lefthook" = "1.11.3"
|
||||
"aqua:dagger/dagger" = "0.17.1"
|
||||
"aqua:derailed/k9s" = "0.40.10"
|
||||
"aqua:eksctl-io/eksctl" = "0.206.0"
|
||||
"aqua:evilmartians/lefthook" = "1.11.5"
|
||||
"aqua:eza-community/eza" = "0.20.24"
|
||||
"aqua:github-cli" = "2.68.1"
|
||||
"aqua:github-cli" = "2.69.0"
|
||||
"aqua:go-task/task" = "3.42.1"
|
||||
"aqua:hashicorp/terraform" = "1.11.2"
|
||||
"aqua:helm/helm" = "3.17.2"
|
||||
@ -23,18 +23,21 @@
|
||||
"aqua:sbstp/kubie" = "0.25.1"
|
||||
"aqua:sharkdp/bat" = "0.25.0"
|
||||
"aqua:starship/starship" = "1.22.1"
|
||||
"aqua:tilt-dev/ctlptl" = "0.8.39"
|
||||
"aqua:tilt-dev/ctlptl" = "0.8.40"
|
||||
"aqua:tilt-dev/tilt" = "0.34.0"
|
||||
"aqua:xo/usql" = "0.19.19"
|
||||
"pipx:aider-chat" = { version = "0.76.2", uvx_args = "--python 3.12.7 --with google-generativeai" }
|
||||
"npm:@anthropic-ai/claude-code" = "0.2.54"
|
||||
"pipx:aider-chat" = { version = "0.79.1", uvx_args = "--python 3.12.7 --with google-generativeai" }
|
||||
"pipx:vectorcode" = { version = "0.5.1", uvx_args = "--python 3.13.2" }
|
||||
"ubi:Samyak2/toipe" = "0.5.0"
|
||||
"ubi:hlsxx/tukai" = "0.2.2"
|
||||
"ubi:jdx/usage" = "2.0.5"
|
||||
"ubi:jdx/usage" = "2.0.7"
|
||||
"ubi:max-niederman/ttyper" = "1.6.0"
|
||||
"ubi:wagoodman/dive" = "0.13.0"
|
||||
elixir = "1.18.3"
|
||||
erlang = "27.3"
|
||||
go = "1.24.1"
|
||||
lua = "5.4.7"
|
||||
lua = "5.1.5"
|
||||
luajit = "2.0.5"
|
||||
node = "22.14.0"
|
||||
poetry = "2.1.1"
|
||||
|
@ -154,7 +154,7 @@ return {
|
||||
auto_suggestion_provider = 'claude',
|
||||
claude = {
|
||||
endpoint = 'https://api.anthropic.com',
|
||||
model = 'claude-3-5-sonnet-20241022',
|
||||
model = 'claude-3-7-sonnet-20250219',
|
||||
temperature = 0,
|
||||
max_tokens = 4096,
|
||||
},
|
||||
|
@ -10,6 +10,7 @@ services:
|
||||
init: true
|
||||
restart: unless-stopped
|
||||
hostname: local
|
||||
pull_policy: never
|
||||
entrypoint: sleep
|
||||
command: infinity
|
||||
environment:
|
||||
@ -30,8 +31,22 @@ services:
|
||||
- 'home_local_state:/home/coder/.local/state'
|
||||
- 'home_plugins_tmux:/home/coder/.config/tmux/plugins'
|
||||
|
||||
chroma:
|
||||
image: 'ghcr.io/chroma-core/chroma:0.6.3'
|
||||
init: true
|
||||
restart: unless-stopped
|
||||
hostname: chroma
|
||||
environment:
|
||||
IS_PERSISTENT: 'true'
|
||||
PERSISTENT_DIRECTORY: /data
|
||||
volumes:
|
||||
- 'chroma_data:/data'
|
||||
ports:
|
||||
- '${IDE_CHROMA_PORT:-8000}'
|
||||
|
||||
volumes:
|
||||
home_cache: {}
|
||||
home_local_share: {}
|
||||
home_local_state: {}
|
||||
home_plugins_tmux: {}
|
||||
chroma_data: {}
|
||||
|
Loading…
x
Reference in New Issue
Block a user