From b662d9fd8cc858ab359577d4df773ce02011a8b3 Mon Sep 17 00:00:00 2001 From: Matt Williams Date: Fri, 4 Aug 2023 11:55:00 -0700 Subject: [PATCH] starting to build out some docs Signed-off-by: Matt Williams --- docs/README.md | 6 ++++++ docs/api.md | 21 +++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 docs/README.md create mode 100644 docs/api.md diff --git a/docs/README.md b/docs/README.md new file mode 100644 index 00000000..ea11fe3f --- /dev/null +++ b/docs/README.md @@ -0,0 +1,6 @@ +# Documentation + +- [Modelfile](./modelfile.md) +- [How we store Models](./modelstorage.md) +- [How to develop Ollama](./development.md) +- [API](./api.md) diff --git a/docs/api.md b/docs/api.md new file mode 100644 index 00000000..c2b9f8ca --- /dev/null +++ b/docs/api.md @@ -0,0 +1,21 @@ +[Documentation Home](./README.md) + +# API + +## Generate a Prompt +**/api/generate** + +## Create a Model +**/api/create** + +## List Local Models +**/api/list** + +## Copy a Model +**/api/copy** + +## Pull a Model +**/api/pull** + +## Push a Model +**/api/push** \ No newline at end of file