mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-29 08:33:20 +00:00
docs: fix typos
This commit is contained in:
@@ -23,7 +23,7 @@ Say goodbye to time-consuming manual searches, and let <strong>DocsGPT</strong>
|
|||||||
|
|
||||||
## Roadmap
|
## Roadmap
|
||||||
|
|
||||||
You can find our [Roadmap](https://github.com/orgs/arc53/projects/2) here, please dont hesitate contributing or creating issues, it helps us make DocsGPT better!
|
You can find our [Roadmap](https://github.com/orgs/arc53/projects/2) here, please don't hesitate contributing or creating issues, it helps us make DocsGPT better!
|
||||||
|
|
||||||
## Screenshot
|
## Screenshot
|
||||||
<img width="1440" alt="image" src="https://user-images.githubusercontent.com/15183589/216717215-adc6ea2d-5b35-4694-ac0d-e39a396025f4.png">
|
<img width="1440" alt="image" src="https://user-images.githubusercontent.com/15183589/216717215-adc6ea2d-5b35-4694-ac0d-e39a396025f4.png">
|
||||||
|
|||||||
@@ -13,11 +13,11 @@ document.getElementById("message-form").addEventListener("submit", function(even
|
|||||||
});
|
});
|
||||||
|
|
||||||
document.getElementById("message-input").value = "";
|
document.getElementById("message-input").value = "";
|
||||||
var converstation_state = localStorage.getItem("conversation_state");
|
var conversation_state = localStorage.getItem("conversation_state");
|
||||||
// check if conversation state is null
|
// check if conversation state is null
|
||||||
if (converstation_state == null) {
|
if (conversation_state == null) {
|
||||||
converstation_state = 0;
|
conversation_state = 0;
|
||||||
localStorage.setItem("conversation_state", converstation_state);
|
localStorage.setItem("conversation_state", conversation_state);
|
||||||
}
|
}
|
||||||
|
|
||||||
// send post request to server http://127.0.0.1:5000/ with message in json body
|
// send post request to server http://127.0.0.1:5000/ with message in json body
|
||||||
|
|||||||
Reference in New Issue
Block a user