mirror of
https://github.com/katanemo/plano.git
synced 2026-06-08 14:55:14 +02:00
initial commit
This commit is contained in:
commit
100114f6d0
5 changed files with 45 additions and 0 deletions
3
envoyfilter/Cargo.lock
generated
Normal file
3
envoyfilter/Cargo.lock
generated
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
[[package]]
|
||||
name = "intelligent-prompt-gateway"
|
||||
version = "0.1.0"
|
||||
7
envoyfilter/Cargo.toml
Normal file
7
envoyfilter/Cargo.toml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
[package]
|
||||
name = "intelligent-prompt-gateway"
|
||||
version = "0.1.0"
|
||||
authors = ["Katanemo Inc <info@katanemo.com>"]
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
1
envoyfilter/README.md
Normal file
1
envoyfilter/README.md
Normal file
|
|
@ -0,0 +1 @@
|
|||
A open source project for developers to build and secure faster, more personalized generative AI apps. Katanemo is a high performance gateway designed with state of the art (SOTA) fast LLMs to process, route and evaluate prompts.
|
||||
17
envoyfilter/src/main.rs
Normal file
17
envoyfilter/src/main.rs
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
fn main() {
|
||||
println!("Hello, world!\nMy favourite number is {}", some_fn());
|
||||
}
|
||||
|
||||
fn some_fn() -> i32 {
|
||||
42
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
|
||||
#[test]
|
||||
fn some_fn_is_42() {
|
||||
assert_eq!(some_fn(), 42);
|
||||
}
|
||||
}
|
||||
17
gateway.code-workspace
Normal file
17
gateway.code-workspace
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"folders": [
|
||||
{
|
||||
"name": "root",
|
||||
"path": "."
|
||||
},
|
||||
{
|
||||
"name": "envoyfilter",
|
||||
"path": "envoyfilter"
|
||||
},
|
||||
{
|
||||
"name": "demos",
|
||||
"path": "./demos"
|
||||
},
|
||||
],
|
||||
"settings": {}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue