Compare commits

...

11 Commits

Author SHA1 Message Date
765df3d8b8 chore(docker): set pull_policy for nvim service 2025-03-16 21:26:45 +00:00
e2bfbedd47 chore: add chromadb to store embeddings from vectorcode 2025-03-16 21:26:31 +00:00
81154801cb feat(mise): upgrade vectorcode from 0.4.9 to 0.4.11 2025-03-16 21:24:37 +00:00
2bce4dad9f feat(mise): upgrade k9s from 0.40.8 to 0.40.9 2025-03-16 15:53:18 +00:00
5492862cfc feat(mise): add vectorcode to create rag from code 2025-03-16 15:52:32 +00:00
9ae99ca331 feat(mise): upgrade claude-code from 0.2.42 to 0.2.45 2025-03-16 15:51:58 +00:00
b03b191f72 chore(neovim): upgrade model used by avante 2025-03-14 21:47:08 +00:00
a1b0c14fbb chore(mise): add dive to tools
This will be used to inspect docker images.
2025-03-14 21:45:57 +00:00
19d1d2c51b chore(mise): upgrade claude-code to 0.2.42 2025-03-14 21:45:27 +00:00
2a12e94cc3 feat(mise): upgrade runtimes
* `aqua:aws/aws-cli` from 2.24.22 to 2.24.23
* `pipx:aider-chat` from 0.76.2 to 0.77.0
2025-03-14 12:15:54 +00:00
27a19f944c feat(mise): add claude-code 2025-03-14 12:15:31 +00:00
3 changed files with 22 additions and 4 deletions

View File

@@ -5,10 +5,10 @@
"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:aws/aws-cli" = "2.24.23"
"aqua:bitwarden/clients" = "cli-v2025.2.0"
"aqua:dagger/dagger" = "0.16.3"
"aqua:derailed/k9s" = "0.40.8"
"aqua:derailed/k9s" = "0.40.9"
"aqua:eksctl-io/eksctl" = "0.205.0"
"aqua:evilmartians/lefthook" = "1.11.3"
"aqua:eza-community/eza" = "0.20.24"
@@ -26,11 +26,14 @@
"aqua:tilt-dev/ctlptl" = "0.8.39"
"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.45"
"pipx:aider-chat" = { version = "0.77.0", uvx_args = "--python 3.12.7 --with google-generativeai" }
"pipx:vectorcode" = { version = "0.4.11", 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:max-niederman/ttyper" = "1.6.0"
"ubi:wagoodman/dive" = "0.12.0"
elixir = "1.18.3"
erlang = "27.3"
go = "1.24.1"

View File

@@ -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,
},

View File

@@ -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: {}