Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
201 changes: 2 additions & 199 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
[package]
name = "sllama"
version = "0.1.7"
version = "0.1.8"
edition = "2024"

[dependencies]
clap = { version = "4.5.39", features = ["derive"] }
crossterm = { version = "0.29.0" }
serde = { version = "1.0.219", features = ["derive"] }
toml = "0.8.23"
tempfile = "3.20.0"
Expand Down
21 changes: 0 additions & 21 deletions LICENSES/crossterm-MIT

This file was deleted.

4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.1.8 - 2025-06-09

_Refactor command handling and remove crossterm_

## 0.1.7 - 2025-06-08

_Add `edit` command_
Expand Down
6 changes: 4 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ A command-line interface for interacting with Ollama AI models.

- Store conversations as files
- Add context to a session with `-f/--file` flag
- Use commands to modify and customize the current session
- Prompts are built in the following way:
1. System prompt
2. Context file
Expand Down Expand Up @@ -133,8 +134,10 @@ You can tell where you have previously responded by --- AI Response --- (added a
- [x] Clarify how the prompt is formed
- [x] Add a configuration file
- [x] Integrate rustyline
- [ ] Implement completions with rustyline (commands and files)
- [ ] Support multiline input with shift + enter (using rustyline)
- [ ] Allow changing the context file during a chat
- [ ] Implement completions with rustyline
- [ ] Add support for knowledge directory
- [ ] Re-implement AI response interruption
- [ ] Add functionality to truncate a chat
- [ ] Keep track of the model's context window and file size
Expand All @@ -146,7 +149,6 @@ You can tell where you have previously responded by --- AI Response --- (added a
- [serde](https://github.com/serde-rs/serde) - [MIT](LICENSES/serde-MIT)
- [toml](https://github.com/toml-rs/toml) - [MIT](LICENSES/toml-MIT)
- [clap](https://github.com/clap-rs/clap) - [MIT](LICENSES/clap-MIT)
- [crossterm](https://github.com/crossterm-rs/crossterm) - [MIT](LICENSES/crossterm-MIT)
- [tempfile](https://github.com/Stebalien/tempfile) - [MIT](LICENSES/tempfile-MIT)
- [rustyline](https://github.com/kkawakam/rustyline) - [MIT](LICENSES/rustyline-MIT)

Expand Down
Loading