Skip to content

Commit

Permalink
Minor docs improvements.
Browse files Browse the repository at this point in the history
  • Loading branch information
lreimer committed Dec 2, 2024
1 parent babd5af commit ed9327c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down Expand Up @@ -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
Expand All @@ -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!"
}
]
}'
Expand Down

0 comments on commit ed9327c

Please sign in to comment.