This commit is contained in:
Timothy Jaeryang Baek 2025-01-27 23:18:13 -08:00
parent 79e2046a28
commit ff84790ada
6 changed files with 15 additions and 8 deletions

3
.gitignore vendored
View File

@ -1,2 +1,3 @@
llama_cpp_cache
cache
cache
dist

View File

@ -1,6 +0,0 @@
def main():
print("Hello from llama-cpp-runner!")
if __name__ == "__main__":
main()

View File

@ -1,7 +1,14 @@
[project]
name = "llama-cpp-runner"
version = "0.1.0"
description = "Add your description here"
description = "A runner for llama-cpp"
readme = "README.md"
authors = [
{ name = "Timothy Jaeryang Baek", email = "tim@openwebui.com" }
]
requires-python = ">=3.11"
dependencies = []
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

View File

@ -0,0 +1,5 @@
from llama_cpp_runner.main import LlamaCppServer
def hello() -> str:
return "Hello from llama-cpp-runner!"

View File