-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
39 lines (37 loc) · 1.17 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "ollama-workflows"
version = "0.1.0"
edition = "2021"
authors = ["andthattoo"]
description = "Ollama Workflows is a framework that enables users to program LLMs through workflows to create agentic behavior."
readme = "README.md"
repository = "https://github.com/andthattoo/ollama-workflows"
license-file = "LICENSE"
keywords = ["ollama", "llm", "ai", "agents"]
[dependencies]
tokio-util = { version = "0.7.10", features = ["rt"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread", "signal"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
reqwest = { version = "0.12.5", default-features = false, features = ["json", "rustls-tls"] }
rand = "0.8.5"
ollama-rs = { git = "https://github.com/andthattoo/ollama-rs", rev = "00c67cf", features = [
"function-calling",
] }
parking_lot = "0.12.2"
openai_dive = "0.6.5"
gem-rs = "0.1.1"
scraper = "0.19.0"
text-splitter = "0.13.1"
search_with_google = "0.5.0"
html2text = "0.12.5"
async-trait = "0.1.80"
regex = { version = "1.9.3" }
log = "0.4"
env_logger = "0.9"
colored = "2.0"
dotenv = "0.15"
simsimd = { version = "4.3.1", optional = true }
base64 = "0.22.1"
[features]
default = ["simsimd"]