Merge branch 'main' into adil/dashboard_update

This commit is contained in:
Adil Hafeez 2024-10-18 12:52:44 -07:00
commit 9c92ef7470
16 changed files with 2605 additions and 276 deletions

2237
crates/Cargo.lock generated Normal file

File diff suppressed because it is too large Load diff

3
crates/Cargo.toml Normal file
View file

@ -0,0 +1,3 @@
[workspace]
resolver = "2"
members = ["llm_gateway", "prompt_gateway", "common"]

View file

@ -7,7 +7,7 @@ use serial_test::serial;
use std::path::Path;
fn wasm_module() -> String {
let wasm_file = Path::new("target/wasm32-wasi/release/llm_gateway.wasm");
let wasm_file = Path::new("../target/wasm32-wasi/release/llm_gateway.wasm");
assert!(
wasm_file.exists(),
"Run `cargo build --release --target=wasm32-wasi` first"

View file

@ -17,7 +17,7 @@ use std::collections::HashMap;
use std::path::Path;
fn wasm_module() -> String {
let wasm_file = Path::new("target/wasm32-wasi/release/prompt_gateway.wasm");
let wasm_file = Path::new("../target/wasm32-wasi/release/prompt_gateway.wasm");
assert!(
wasm_file.exists(),
"Run `cargo build --release --target=wasm32-wasi` first"