mirror of
https://github.com/katanemo/plano.git
synced 2026-05-09 15:52:44 +02:00
* adding support for signals * reducing false positives for signals like positive interaction * adding docs. Still need to fix the messages list, but waiting on PR #621 * Improve frustration detection: normalize contractions and refine punctuation * Further refine test cases with longer messages * minor doc changes * fixing echo statement for build * fixing the messages construction and using the trait for signals * update signals docs * fixed some minor doc changes * added more tests and fixed docuemtnation. PR 100% ready * made fixes based on PR comments * Optimize latency 1. replace sliding window approach with trigram containment check 2. add code to pre-compute ngrams for patterns * removed some debug statements to make tests easier to read * PR comments to make ObservableStreamProcessor accept optonal Vec<Messagges> * fixed PR comments --------- Co-authored-by: Salman Paracha <salmanparacha@MacBook-Pro-342.local> Co-authored-by: MeiyuZhong <mariazhong9612@gmail.com> Co-authored-by: nehcgs <54548843+nehcgs@users.noreply.github.com>
49 lines
1.5 KiB
TOML
49 lines
1.5 KiB
TOML
[package]
|
|
name = "brightstaff"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
async-openai = "0.30.1"
|
|
async-trait = "0.1"
|
|
bytes = "1.10.1"
|
|
chrono = "0.4"
|
|
common = { version = "0.1.0", path = "../common", features = ["trace-collection"] }
|
|
eventsource-client = "0.15.0"
|
|
eventsource-stream = "0.2.3"
|
|
flate2 = "1.0"
|
|
futures = "0.3.31"
|
|
futures-util = "0.3.31"
|
|
hermesllm = { version = "0.1.0", path = "../hermesllm" }
|
|
http-body = "1.0.1"
|
|
http-body-util = "0.1.3"
|
|
hyper = { version = "1.6.0", features = ["full"] }
|
|
hyper-util = "0.1.11"
|
|
opentelemetry = "0.29.1"
|
|
opentelemetry-http = "0.29.0"
|
|
opentelemetry-otlp = {version="0.29.0", features=["trace", "tonic", "grpc-tonic"]}
|
|
opentelemetry-stdout = "0.29.0"
|
|
opentelemetry_sdk = "0.29.0"
|
|
pretty_assertions = "1.4.1"
|
|
rand = "0.9.2"
|
|
reqwest = { version = "0.12.15", features = ["stream"] }
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
serde_json = "1.0.140"
|
|
serde_with = "3.13.0"
|
|
strsim = "0.11"
|
|
serde_yaml = "0.9.34"
|
|
thiserror = "2.0.12"
|
|
tokio = { version = "1.44.2", features = ["full"] }
|
|
tokio-postgres = { version = "0.7", features = ["with-serde_json-1"] }
|
|
tokio-stream = "0.1"
|
|
time = { version = "0.3", features = ["formatting", "macros"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
uuid = { version = "1.0", features = ["v4", "serde"] }
|
|
|
|
[dev-dependencies]
|
|
mockito = "1.0"
|
|
tokio-stream = "0.1.17"
|
|
tracing = "0.1.41"
|
|
tracing-opentelemetry = "0.30.0"
|
|
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "fmt", "time"] }
|