Skip to content

Commit

Permalink
some changes
Browse files Browse the repository at this point in the history
  • Loading branch information
lokendarjangid committed Mar 31, 2023
1 parent ba20e58 commit 76f7d17
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 474 deletions.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,12 @@
# loky
This program is designed to bring all normal functions together and them with one file
<!-- This is an repository of an voice assitanc -->

## Table of Contents

- [About](#about)
- [Getting Started](#getting_started)
- [Usage](#usage)
- [Contributing](../CONTRIBUTING.md)
- [Authors](#authors)


6 changes: 3 additions & 3 deletions loki.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import re
import normal_maths
import s_functions
import chatgpt
import voice_work
import wikipedia # pip install wikipedia
Expand Down Expand Up @@ -62,7 +62,7 @@ def commands(command_user):
except AttributeError:
length = 8

password = normal_maths.passwordgenerator(int(length))
password = s_functions.passwordgenerator(int(length))
return (f"Your password is {str(password)}")

elif 'bye' in command_user or 'stop' in command_user or 'exit' in command_user:
Expand Down Expand Up @@ -98,7 +98,7 @@ def commands(command_user):

for choice in response['choices']:
voice_p.printandspeak(choice['text'])
normal_maths.intotxtfile(prompt_text, choice['text'])
# s_functions.intotxtfile(prompt_text, choice['text'])
if choice['text'].find('?') != -1:
commander()
else:
Expand Down
Loading

0 comments on commit 76f7d17

Please sign in to comment.