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
19 changes: 19 additions & 0 deletions Cargo.lock

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

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ clap_complete = "4.6.2"
cliclack = "0.5.4"
console = "0.16.3"
ctrlc = "3.5.2"
reqwest = { version = "0.12.15", default-features = false, features = ["json", "rustls-tls"] }
reqwest = { version = "0.12.15", default-features = false, features = ["json", "multipart", "rustls-tls"] }
scraper = "0.26.0"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
Expand All @@ -37,6 +37,7 @@ tokio = { version = "1.51.1", features = ["macros", "rt-multi-thread"] }
toml = "1.1.2"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
mime_guess = "2.0.5"

[dev-dependencies]
httpmock = "0.8.3"
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,12 @@ run assistant with a saved assistant profile and markdown output:
kagi assistant --assistant research --format markdown "summarize the latest rust release"
```

attach local files to an assistant prompt:

```bash
kagi assistant --attach ./a.jpg --attach ./b.pdf "tell me everything about this pdf"
```

ask assistant about a page directly:

```bash
Expand Down
Loading