From 4af550ad0987e2eee12357bc28855b0401689949 Mon Sep 17 00:00:00 2001 From: efugier Date: Mon, 6 May 2024 15:50:10 +0200 Subject: [PATCH] feat(README): update --- CONTRIBUTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1886448..6d7c45a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -24,13 +24,13 @@ src/ │   ├── api.rs │ │ # config structs for prompt defition (messages, model, temperature...) │   └── prompt.rs -│ # third-party related code (request, adapters) +│ # third-party-related code (request, adapters) └── third_party - │ # make third party requests + │ # make third party requests and read the result ├── mod.rs │ # logic to adapt smartcat prompts to third party ones ├── prompt_adapters.rs - │ # logic to parse and extract the message from third party answers + │ # structs to parse and extract the message from third party answers └── response_parsing.rs ```