|
1 |
| -src/handlers/embeddings/embedding.py |
2 |
| -src/handlers/embeddings/gemini_handler.py |
3 |
| -src/handlers/embeddings/ollama_handler.py |
4 |
| -src/handlers/embeddings/openai_handler.py |
5 |
| -src/handlers/embeddings/wordllama_handler.py |
6 |
| -src/handlers/handler.py |
7 |
| -src/handlers/llm/custom_handler.py |
8 |
| -src/handlers/llm/deepseek_handler.py |
9 |
| -src/handlers/llm/gpt3any_handler.py |
10 |
| -src/handlers/llm/gpt4all_handler.py |
| 1 | +src/extensions.py |
| 2 | +src/ui/widgets/copybox.py |
| 3 | +src/ui/widgets/website.py |
| 4 | +src/ui/widgets/profilerow.py |
| 5 | +src/ui/widgets/documents_reader.py |
| 6 | +src/ui/widgets/multiline.py |
| 7 | +src/ui/widgets/comborow.py |
| 8 | +src/ui/widgets/file.py |
| 9 | +src/ui/widgets/markuptextview.py |
| 10 | +src/ui/widgets/terminal_dialog.py |
| 11 | +src/ui/widgets/tipscarousel.py |
| 12 | +src/ui/widgets/barchart.py |
| 13 | +src/ui/widgets/thinking.py |
| 14 | +src/ui/widgets/websearch.py |
| 15 | +src/ui/widgets/latex.py |
| 16 | +src/ui/extension.py |
| 17 | +src/ui/screenrecorder.py |
| 18 | +src/ui/thread_editing.py |
| 19 | +src/ui/profile.py |
| 20 | +src/ui/settings.py |
| 21 | +src/ui/shortcuts.py |
| 22 | +src/ui/presentation.py |
| 23 | +src/ui/mini_window.py |
| 24 | +src/utility/util.py |
| 25 | +src/utility/audio_recorder.py |
| 26 | +src/utility/message_chunk.py |
| 27 | +src/utility/strings.py |
| 28 | +src/controller.py |
| 29 | +src/handlers/tts/custom_handler.py |
| 30 | +src/handlers/tts/custom_openai_tts.py |
| 31 | +src/handlers/tts/groq_tts_handler.py |
| 32 | +src/handlers/tts/tts.py |
| 33 | +src/handlers/tts/elevenlabs_handler.py |
| 34 | +src/handlers/tts/openai_tts_handler.py |
11 | 35 | src/handlers/llm/groq_handler.py
|
12 |
| -src/handlers/llm/llm.py |
13 |
| -src/handlers/llm/mistral_handler.py |
14 |
| -src/handlers/llm/newelle_handler.py |
15 |
| -src/handlers/llm/ollama_handler.py |
16 |
| -src/handlers/llm/claude_handler.py |
| 36 | +src/handlers/llm/gpt3any_handler.py |
| 37 | +src/handlers/llm/custom_handler.py |
17 | 38 | src/handlers/llm/gemini_handler.py
|
| 39 | +src/handlers/llm/llm.py |
| 40 | +src/handlers/llm/gpt4all_handler.py |
18 | 41 | src/handlers/llm/openai_handler.py
|
| 42 | +src/handlers/llm/claude_handler.py |
| 43 | +src/handlers/llm/deepseek_handler.py |
| 44 | +src/handlers/llm/newelle_handler.py |
19 | 45 | src/handlers/llm/openrouter_handler.py
|
20 |
| -src/handlers/memory/memoripy_handler.py |
| 46 | +src/handlers/llm/ollama_handler.py |
| 47 | +src/handlers/llm/mistral_handler.py |
21 | 48 | src/handlers/memory/summary_memoripy_handler.py
|
| 49 | +src/handlers/memory/memoripy_handler.py |
22 | 50 | src/handlers/memory/user_summary_handler.py
|
23 | 51 | src/handlers/rag/llamaindex_handler.py
|
24 | 52 | src/handlers/rag/rag_handler.py
|
| 53 | +src/handlers/stt/groqsr_handler.py |
25 | 54 | src/handlers/stt/custom_handler.py
|
26 | 55 | src/handlers/stt/sphinx_handler.py
|
27 |
| -src/handlers/stt/vosk_handler.py |
28 | 56 | src/handlers/stt/whisper_handler.py
|
29 | 57 | src/handlers/stt/whispercpp_handler.py
|
30 | 58 | src/handlers/stt/googlesr_handler.py
|
31 |
| -src/handlers/stt/groqsr_handler.py |
32 |
| -src/handlers/stt/openaisr_handler.py |
33 | 59 | src/handlers/stt/witai_handler.py
|
34 |
| -src/handlers/tts/custom_handler.py |
35 |
| -src/handlers/tts/custom_openai_tts.py |
36 |
| -src/handlers/tts/elevenlabs_handler.py |
37 |
| -src/handlers/tts/groq_tts_handler.py |
38 |
| -src/handlers/tts/openai_tts_handler.py |
39 |
| -src/handlers/tts/tts.py |
| 60 | +src/handlers/stt/vosk_handler.py |
| 61 | +src/handlers/stt/openaisr_handler.py |
40 | 62 | src/handlers/websearch/duckduckgo_handler.py
|
41 | 63 | src/handlers/websearch/tavily.py
|
42 |
| -src/integrations/websearch.py |
| 64 | +src/handlers/handler.py |
| 65 | +src/handlers/embeddings/embedding.py |
| 66 | +src/handlers/embeddings/gemini_handler.py |
| 67 | +src/handlers/embeddings/openai_handler.py |
| 68 | +src/handlers/embeddings/wordllama_handler.py |
| 69 | +src/handlers/embeddings/ollama_handler.py |
43 | 70 | src/integrations/website_reader.py
|
44 |
| -src/ui/profile.py |
45 |
| -src/ui/screenrecorder.py |
46 |
| -src/ui/shortcuts.py |
47 |
| -src/ui/thread_editing.py |
48 |
| -src/ui/widgets/barchart.py |
49 |
| -src/ui/widgets/comborow.py |
50 |
| -src/ui/widgets/copybox.py |
51 |
| -src/ui/widgets/documents_reader.py |
52 |
| -src/ui/widgets/latex.py |
53 |
| -src/ui/widgets/markuptextview.py |
54 |
| -src/ui/widgets/multiline.py |
55 |
| -src/ui/widgets/profilerow.py |
56 |
| -src/ui/widgets/terminal_dialog.py |
57 |
| -src/ui/widgets/thinking.py |
58 |
| -src/ui/widgets/websearch.py |
59 |
| -src/ui/widgets/website.py |
60 |
| -src/ui/widgets/file.py |
61 |
| -src/ui/widgets/tipscarousel.py |
62 |
| -src/ui/extension.py |
63 |
| -src/ui/mini_window.py |
64 |
| -src/ui/presentation.py |
65 |
| -src/ui/settings.py |
66 |
| -src/utility/audio_recorder.py |
67 |
| -src/utility/message_chunk.py |
68 |
| -src/utility/util.py |
69 |
| -src/utility/strings.py |
| 71 | +src/integrations/websearch.py |
70 | 72 | src/constants.py
|
71 |
| -src/controller.py |
72 |
| -src/extensions.py |
73 |
| -src/main.py |
74 | 73 | src/window.py
|
75 |
| -data/io.github.qwersyk.Newelle.appdata.xml.in |
76 |
| -data/io.github.qwersyk.Newelle.desktop.in |
| 74 | +src/main.py |
77 | 75 | data/io.github.qwersyk.Newelle.gschema.xml
|
| 76 | +data/io.github.qwersyk.Newelle.desktop.in |
| 77 | +data/io.github.qwersyk.Newelle.appdata.xml.in |
0 commit comments