From 8768080ce08d19a7866bbc6af02929c3efd3a713 Mon Sep 17 00:00:00 2001 From: samerbam Date: Thu, 22 Jun 2023 13:32:29 -0400 Subject: [PATCH] update readme --- README.md | 33 ++++++++++++++++++--------------- backend/skills/utility.py | 4 ++-- 2 files changed, 20 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 57599ef..3696e43 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,4 @@ # A Siri like AI Assistant ---- * Uses ChatGPT for general queries * Uses Wolfram Alpha for anything math related @@ -8,25 +7,29 @@ ## Skills ---- -[ ] Alarms -[ ] Calendar -[ ] Gmail -[ ] ChatGPT -[ ] Reminders -[ ] Timers -[ ] Todos -[ ] Weather -[ ] Wolfram +- [ ] Alarms +- [ ] Calendar +- [ ] Gmail +- [ ] ChatGPT +- [ ] Reminders +- [ ] Timers +- [ ] Todos +- [ ] Weather +- [ ] Wolfram [x] NLP [x] Speech to Text (frontend for sure) -[ ] API - [ ] Authentication - [ ] General API -[ ] TTS +- [ ] API + - [ ] Authentication + - [ ] General API +- [ ] TTS - generate audio on backend or frontend? - Perks of backend is fast generation - Cons of backend is large file transfers between devices, lots of internet usage - Perks of frontend is less data transfer between devices requiring less internet usage - Cons of frontend is slower generation + + +## Ideas + +* Dashboard with api call counts \ No newline at end of file diff --git a/backend/skills/utility.py b/backend/skills/utility.py index 3ef8faf..b632b0a 100644 --- a/backend/skills/utility.py +++ b/backend/skills/utility.py @@ -1,4 +1,4 @@ -from ctparse import ctparse +from ctparse import ctparse #Used for parsing time, https://ctparse.readthedocs.io/en/latest/ from datetime import datetime def parsetime(phrase): @@ -7,4 +7,4 @@ def parsetime(phrase): if __name__ == "__main__": - print(parsetime('May 5th 2:30 in the afternoon').ref_time) \ No newline at end of file + print(parsetime('May 5th 2:30 in the afternoon').ref_time6) \ No newline at end of file