mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2026-06-25 13:50:20 +00:00
29f1482221
* app : introduce the llama unified executable
Signed-off-by: Adrien Gallouët <angt@huggingface.co>
* Use serve for server
Signed-off-by: Adrien Gallouët <angt@huggingface.co>
* Hide completion and bench, add help command
Signed-off-by: Adrien Gallouët <angt@huggingface.co>
* Remove STATIC
Signed-off-by: Adrien Gallouët <angt@huggingface.co>
* Use -impl targets instead of -lib
Signed-off-by: Adrien Gallouët <angt@huggingface.co>
* Revert "Remove STATIC"
This reverts commit cc44caccb9.
---------
Signed-off-by: Adrien Gallouët <angt@huggingface.co>
6 lines
117 B
C++
6 lines
117 B
C++
int llama_server(int argc, char ** argv);
|
|
|
|
int main(int argc, char ** argv) {
|
|
return llama_server(argc, argv);
|
|
}
|