Skip to content

Commit

Permalink
🚜 Refactor llm to a namespace/module
Browse files Browse the repository at this point in the history
  • Loading branch information
jefftriplett committed Sep 11, 2024
1 parent 9d18abb commit 1cc716e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
7 changes: 5 additions & 2 deletions home/.justfiles/llm.justfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@
# llm - https://virtualenv.pypa.io/en/latest/
# ----------------------------------------------------------------

@llm-install:
@_default:
just --list

@install:
llm install llm-claude
llm install llm-ollama

@llm-upgrade:
@upgrade:
llm install llm-claude
llm install llm-ollama
3 changes: 2 additions & 1 deletion home/justfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ set export := true

export JUST_UNSTABLE := "true"

import '.justfiles/llm.justfile'
mod llm '.justfiles/llm.justfile'

import '.justfiles/macos.justfile'
import '.justfiles/ollama.justfile'
import '.justfiles/virtualenv.justfile'
Expand Down

0 comments on commit 1cc716e

Please sign in to comment.