From 9e2963e36f61f6d0212ef3a0882e04548048c299 Mon Sep 17 00:00:00 2001 From: Falko Habel Date: Thu, 29 Aug 2024 11:59:53 +0200 Subject: [PATCH] ML / LLM model detection --- docs/ui/ml_docs.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 docs/ui/ml_docs.md diff --git a/docs/ui/ml_docs.md b/docs/ui/ml_docs.md new file mode 100644 index 0000000..4ff8272 --- /dev/null +++ b/docs/ui/ml_docs.md @@ -0,0 +1,19 @@ +# Original Training Dataset +1. https://www.kaggle.com/datasets/saurabhshahane/fake-news-classification + +# LLM API Documentation +https://github.com/ollama/ollama/blob/main/docs/api.md + +or + +https://api.python.langchain.com/en/latest/llms/langchain_community.llms.ollama.Ollama.html + +1. LLM For our custom LLM +```json +{ + "model": "phi3.5:latest", + "apiBase": "https://ai.fabelous.app/v1/ollama/generic", + "headers": {"Authorization": "Token xxx"}, + "system": "System Message", +} +``` \ No newline at end of file