Rebrand to Galaxy, major improvements to Bedrock support, still needs some TLC though

This commit is contained in:
Ryan Ward
2026-05-07 11:29:34 -05:00
parent f4e2475c60
commit a41cbd8cc7
2433 changed files with 14208 additions and 9409 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ use candle_core::{IndexOp as _, Tensor};
use candle_onnx::onnx::ModelProto;
use prost::Message as _;
use tokenizers::Tokenizer;
use warp_completer::ParsedTokensSnapshot;
use galaxy_completer::ParsedTokensSnapshot;
use super::ClassificationResult;
+2 -2
View File
@@ -8,7 +8,7 @@ use std::borrow::Cow;
use anyhow::Result;
use async_trait::async_trait;
use rust_embed::RustEmbed;
use warp_completer::ParsedTokensSnapshot;
use galaxy_completer::ParsedTokensSnapshot;
use crate::{
ClassificationResult, Context, InputClassifier, InputType,
@@ -119,7 +119,7 @@ impl InputClassifier for OnnxClassifier {
async fn classify_input(
&self,
input: warp_completer::ParsedTokensSnapshot,
input: galaxy_completer::ParsedTokensSnapshot,
_context: &Context,
) -> anyhow::Result<ClassificationResult> {
// If we ever panicked while running inference, we should fall back to the heuristic classifier.
+1 -1
View File
@@ -6,7 +6,7 @@ use ort::{
};
use parking_lot::Mutex;
use tokenizers::Tokenizer;
use warp_completer::ParsedTokensSnapshot;
use galaxy_completer::ParsedTokensSnapshot;
use super::ClassificationResult;