Removed unnecessary file

This commit is contained in:
Silas Marvin 2024-02-19 18:51:38 -10:00
parent d0bb139bc9
commit 3763437990

View File

@ -1,23 +0,0 @@
# Overview
LSP AI should support multiple transform_backends:
- Python - LLAMA CPP
- Python - SOME OTHER LIBRARY
- PostgresML
pub trait TransformBackend {
// These all take memory backends as an argument
do_completion()
do_generate()
do_generate_stream()
}
LSP AI should support multiple memory_backends:
- SIMPLE FILE STORE
- IN MEMORY VECTOR STORE
- PostgresML
pub trait MemoryBackend {
// Some file change ones
get_context() // Depending on the memory backend this will do very different things
}