From 59d1526bba941d0aef77f8f06f68a827b8d3321e Mon Sep 17 00:00:00 2001 From: Glaucia Lemos Date: Mon, 15 Apr 2024 23:39:57 -0300 Subject: [PATCH] docs: some important changes in the tutorial files --- docs/tutorial/04-preparing-understanding-language-models.md | 4 ++-- docs/tutorial/05-config-files-app.md | 3 +++ docs/tutorial/05-developing-chat-api.md | 3 --- 3 files changed, 5 insertions(+), 5 deletions(-) create mode 100644 docs/tutorial/05-config-files-app.md delete mode 100644 docs/tutorial/05-developing-chat-api.md diff --git a/docs/tutorial/04-preparing-understanding-language-models.md b/docs/tutorial/04-preparing-understanding-language-models.md index 07c353a..81252ac 100644 --- a/docs/tutorial/04-preparing-understanding-language-models.md +++ b/docs/tutorial/04-preparing-understanding-language-models.md @@ -107,6 +107,6 @@ After to finish to test the Ollama server, you can stop it by pressing **Ctrl+D* This tutorial covers language models that will be used in the project. Choose the best model to suit your needs. To use the Azure OpenAI Service, follow the instructions to set up the service in Azure. To use Ollama with Mistral 7B, follow the instructions to install Ollama and the local models. -We can now begin developing the functions for integration with ChatGPT since everything is prepared. In the following section, we will start working on the 'chat-post' function or the 'chat' API for integration with ChatGPT. +To begin developing the application, we first need to create some configuration files for the project. We'll cover this in the next section! -**[⬅️ Back: Understanding the RAG (Retrieval Augmented Generation) architecture](03-understanding-rag.md)** | **[Next: Developing the `chat` API ➡️ ](./05-developing-chat-api.md)** +**[⬅️ Back: Understanding the RAG (Retrieval Augmented Generation) architecture](03-understanding-rag.md)** | **[Next: Developing the `chat` API ➡️ ](./05-config-files-app.md)** diff --git a/docs/tutorial/05-config-files-app.md b/docs/tutorial/05-config-files-app.md new file mode 100644 index 0000000..6339506 --- /dev/null +++ b/docs/tutorial/05-config-files-app.md @@ -0,0 +1,3 @@ +# Preparing the Configuration Files for the `chat` API + +**todo** diff --git a/docs/tutorial/05-developing-chat-api.md b/docs/tutorial/05-developing-chat-api.md deleted file mode 100644 index 57188d5..0000000 --- a/docs/tutorial/05-developing-chat-api.md +++ /dev/null @@ -1,3 +0,0 @@ -# Developing the `chat` API - -**todo**