Commits on Source (25)
-
Stephen D authored
-
Stephen D authored
-
Stephen D authored
-
Stephen D authored
-
Scarlett authored
-
Stephen D authored
-
Stephen D authored
-
Stephen D authored
-
Stephen D authored
-
Stephen D authored
-
Stephen D authored
-
Stephen D authored
-
Stephen D authored
-
Stephen D authored
-
Stephen D authored
-
Stephen D authored
-
Stephen D authored
-
Stephen D authored
-
Stephen D authored
-
Stephen D authored
-
Stephen D authored
Showing
- Cargo.lock 449 additions, 452 deletionsCargo.lock
- Cargo.toml 6 additions, 5 deletionsCargo.toml
- README.md 16 additions, 1 deletionREADME.md
- src/config.rs 14 additions, 1 deletionsrc/config.rs
- src/handlers/llama.rs 195 additions, 0 deletionssrc/handlers/llama.rs
- src/handlers/mod.rs 19 additions, 9 deletionssrc/handlers/mod.rs
- src/handlers/react.rs 3 additions, 3 deletionssrc/handlers/react.rs
- src/handlers/starboard.rs 9 additions, 8 deletionssrc/handlers/starboard.rs
- src/handlers/sus.rs 1 addition, 1 deletionsrc/handlers/sus.rs
- src/handlers/xbasic.rs 25 additions, 22 deletionssrc/handlers/xbasic.rs
- src/main.rs 2 additions, 2 deletionssrc/main.rs
- src/models.rs 3 additions, 9 deletionssrc/models.rs
- src/program.rs 12 additions, 7 deletionssrc/program.rs
- src/schema.rs 19 additions, 23 deletionssrc/schema.rs
[package] | ||
name = "cat-disruptor-6500" | ||
version = "0.1.2" | ||
authors = ["Stephen <stephen@stephendownward.ca>"] | ||
version = "0.3.0" | ||
authors = ["Stephen <wemaster@scd31.com>"] | ||
edition = "2018" | ||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
[dependencies] | ||
serenity = {version = "0.11", default-features = false, features = ["client", "gateway", "rustls_backend", "model", "static_assertions"] } | ||
serenity = {version = "0.11", default-features = false, features = ["client", "gateway", "rustls_backend", "model", "static_assertions", "cache"] } | ||
tokio = {version = "1.21", features = ["full", "time"] } | ||
phf = { version = "0.8", features = ["macros"] } | ||
toml = "0.5" | ||
serde = { version = "1.0", features = ["derive"] } | ||
xbasic = "0.3.1" | ||
png = "0.16" | ||
diesel = { version = "1.4", features = ["postgres", "numeric"] } | ||
diesel = { version = "2", features = ["postgres", "numeric"] } | ||
dotenv = "0.15.0" | ||
bigdecimal = "0.1.2" | ||
reqwest = { version = "0.10", features = ["json"] } | ||
reqwest = { version = "0.11", features = ["json"] } | ||
serde_json = "1.0" | ||
rusttype = "0.4.3" | ||
rand = "0.8" | ||
itertools = "0.10" | ||
anyhow = "1.0" | ||
ollama-rs = "0.1.5" |
src/handlers/llama.rs
0 → 100644