ML / LLM model detection

This commit is contained in:
Falko Victor Habel 2024-08-29 11:59:53 +02:00
parent f23023f948
commit 9e2963e36f
1 changed files with 19 additions and 0 deletions

19
docs/ui/ml_docs.md Normal file
View File

@ -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",
}
```