From ed9327cf7c226baeee67129ffda099472c173f73 Mon Sep 17 00:00:00 2001 From: "M.-Leander Reimer" Date: Mon, 2 Dec 2024 21:30:26 +0100 Subject: [PATCH] Minor docs improvements. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 23362b5..ba8c95a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Kk8s-native-java-ai +# Java-based AI on Kubernetes Demo repository for Java-based AI on Kubernetes from Development to Deployment. @@ -31,7 +31,7 @@ curl http://localhost:10000/v1/chat/completions \ }' ``` -## Deploying custom LLMs using Kollama Operator +## Deploying custom LLMs using Ollama Operator ```bash # model deployment using CLI @@ -51,11 +51,11 @@ OLLAMA_HOST=localhost:11434 ollama run llama3.1 curl http://localhost:11434/v1/chat/completions \ -H "Content-Type: application/json" \ -d '{ - "model": "phi3", + "model": "llama3.1", "messages": [ { "role": "user", - "content": "Hello!" + "content": "Say this is a test!" } ] }'