diff options
-rw-r--r-- | html/matt-chat/com.user.server.plist (renamed from html/matt-chat/example.plist) | 2 | ||||
-rw-r--r-- | html/matt-chat/index.html | 3 | ||||
-rwxr-xr-x | html/matt-chat/server.sh | 3 |
3 files changed, 5 insertions, 3 deletions
diff --git a/html/matt-chat/example.plist b/html/matt-chat/com.user.server.plist index c3bbfca..b5fb9dd 100644 --- a/html/matt-chat/example.plist +++ b/html/matt-chat/com.user.server.plist @@ -6,7 +6,7 @@ <string>com.user.server</string> <key>ProgramArguments</key> <array> - <string>/Users/eli/Code/tour/html/matt-chat/server.sh</string> + <string>/Users/eli/Code/institute/tour/html/matt-chat/server.sh</string> </array> <key>RunAtLoad</key> <true/> diff --git a/html/matt-chat/index.html b/html/matt-chat/index.html index d6f04b5..fba31b2 100644 --- a/html/matt-chat/index.html +++ b/html/matt-chat/index.html @@ -175,8 +175,9 @@ apiUrl: "http://localhost:11434/v1/chat/completions", models: [ { value: "llama3.1:8b", label: "llama3.1:8b, general tasks" }, + { value: "llama3.2:latest", label: "llama3.2:latest, general stuff" }, { value: "qwen2.5-coder:1.5b", label: "qwen2.5-coder:1.5b, fast coding" }, - { value: "qwen2.5-coder:7b", label: "qwen2.5-coder:7b, fastish coding" }, + { value: "qwen2.5-coder:7b", label: "qwen2.5-coder:7b, fast-ish coding" }, { value: "qwen2.5-coder:32b", label: "qwen2.5-coder:32b, super slow coding" }, ], contextWindowSize: 3, // Number of previous exchanges to remember diff --git a/html/matt-chat/server.sh b/html/matt-chat/server.sh index c526f9e..b294acd 100755 --- a/html/matt-chat/server.sh +++ b/html/matt-chat/server.sh @@ -16,7 +16,8 @@ python3 -m http.server 38478 & # nvim ~/Library/LaunchAgents/com.user.server.plist +# cp com.user.server.plist ~/Library/LaunchAgents/ # launchctl load ~/Library/LaunchAgents/com.user.server.plist # launchctl start com.user.server # launchctl list | grep com.user.server -# launchctl unload ~/Library/LaunchAgents/com.user.server.plist +# launchctl unload ~/Library/LaunchAgents/com.user.server.plist \ No newline at end of file |