Skip to content

Commit

Permalink
minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
sammcj committed Jun 1, 2024
1 parent 78d682c commit ce62c7c
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
Gollama is a Go-based client for Ollama for managing models.
It provides a TUI for listing, sorting, selecting and deleting models and can link Ollama models to LM-Studio.

The project started off as a rewrite of my [llamalink](https://smcleod.net/2024/03/llamalink-ollama-to-lm-studio-llm-model-linker/) project, but I decided to expand it to include more features and make it more user-friendly.

## Table of Contents

- [Gollama](#gollama)
Expand Down Expand Up @@ -88,13 +90,21 @@ Example configuration:
```json
{
"default_sort": "Size",
"columns": ["Name", "Size", "Quant", "Family", "Modified", "ID"],
"ollama_api_key": "your-api-key",
"lm_studio_file_paths": "/path/to/lm-studio/models",
"log_level": "debug",
"default_sort": "modified",
"columns": [
"Name",
"Size",
"Quant",
"Family",
"Modified",
"ID"
],
"ollama_api_key": "",
"ollama_api_url": "http://localhost:14434",
"lm_studio_file_paths": "",
"log_level": "info",
"log_file_path": "gollama.log",
"sort_order": "modified",
"sort_order": "Size",
"strip_string": "my-private-registry.internal/"
}
```
Expand Down

0 comments on commit ce62c7c

Please sign in to comment.