We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To make Newelle more extendible, easier to maintain and to get people contribute to it, we should make a general codebase cleanup.
project_root/ ├── main.py ├── window.py ├── settings.py ├── extensions.py ├── constants.py ├── handlers/ │ ├── __init__.py │ ├── handler.py │ ├── llm/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── openai.py │ │ ├── claude.py │ │ ├── bing.py │ │ ├── gpt4all.py │ │ ├── groq.py │ │ ├── ollama.py │ │ ├── gemini.py │ │ └── mistral.py │ ├── tts/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── elevenlabs.py │ │ ├── gtts.py │ │ └── espeak.py │ └── stt/ │ ├── __init__.py │ ├── base.py │ ├── whisper.py │ ├── google.py │ ├── sphinx.py │ ├── vosk.py │ └── witai.py ├── ui/ │ ├── __init__.py │ ├── extension.py │ ├── presentation.py │ ├── profile.py │ ├── screenrecorder.py │ ├── shortcuts.py │ ├── thread_editing.py │ └── widgets/ │ ├── __init__.py │ ├── copybox.py │ ├── multiline_entry.py │ ├── bar_chart.py │ ├── profile_row.py │ └── file.py └── utils/ ├── __init__.py ├── image_utils.py ├── system_utils.py ... from extra.py
Does it look good?
The text was updated successfully, but these errors were encountered:
Yeah, it looks great! I think it’s a solid idea and will definitely make the code easier to work with.
Sorry, something went wrong.
FrancescoCaracciolo
No branches or pull requests
To make Newelle more extendible, easier to maintain and to get people contribute to it, we should make a general codebase cleanup.
I propose this directory structure:
Does it look good?
The text was updated successfully, but these errors were encountered: