Views
No views yet
| File | Description |
|---|---|
psychologist_ai.gguf | Quantized GGUF model ready for inference |
Modelfile.txt | Ollama model configuration |
1ollama pull ouchni/psychologist_ai
2ollama run psychologist_aiollama create psychologist_ai -f Modelfile.txt./main -m psychologist_ai.gguf -p "Hi, I feel stressed and need emotional support."1from llama_cpp import Llama
2
3llm = Llama(model_path="psychologist_ai.gguf")
4
5response = llm("Hello, I'm feeling overwhelmed today.")
6print(response)