├── .gitignore ├── .gitmodules ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── README.md ├── assets └── logo.png ├── configs ├── .gitignore └── config.yaml ├── docker-compose.yaml ├── docs ├── LLMBinding_doc.md ├── Lollms-server.md ├── index.html └── server_endpoints.md ├── elf_docker_cfg ├── config_paths.yaml └── personal │ └── configs │ └── lollms_elf_config.yaml ├── elf_test_cfg ├── config_paths.yaml └── personal │ └── configs │ ├── lollms_elf_config.yaml │ └── lollms_elf_local_config.yaml ├── installer └── installer.bat ├── lollms ├── .gitignore ├── __init__.py ├── app.py ├── assets │ ├── logo.png │ └── logo_old.png ├── binding.py ├── client_session.py ├── code_modifier.py ├── code_parser.py ├── com.py ├── config.py ├── configs │ ├── .gitignore │ └── config.yaml ├── data.py ├── databases │ ├── discussions_database.py │ ├── models_database.py │ ├── remote_databases │ │ ├── __init__.py │ │ ├── light_rag_database.py │ │ └── lollms_database.py │ └── skills_database.py ├── function_call.py ├── functions │ ├── __init__.py │ ├── analyze_code │ │ ├── __init__.py │ │ ├── add_code_to_file.py │ │ ├── add_function_to_file.py │ │ ├── create_project_database.py │ │ ├── git_commit.py │ │ ├── git_pull.py │ │ ├── list_classes.py │ │ ├── list_files.py │ │ ├── retreive_information_for_task.py │ │ ├── retrieve_classes_from_project.py │ │ ├── search_class_in_project.py │ │ ├── update_class_in_file.py │ │ └── update_function_in_file.py │ ├── bibliography.py │ ├── calculator.py │ ├── file_manipulation.py │ ├── generate_music.py │ ├── image_management │ │ └── draw_bounding_boxes.py │ ├── knowledge │ │ └── build_knowledge_db.py │ ├── list_personalities.py │ ├── luma_ai_dream_machine │ │ ├── build_video_using_luma_ai.py │ │ ├── input_section_image.png │ │ ├── sign_in.png │ │ └── try_now.png │ ├── markdown2latex.py │ ├── memes │ │ └── memes_builder.py │ ├── music_gen.py │ ├── peripherals.py │ ├── prompting │ │ ├── image_gen_prompts.py │ │ └── system_prompts.py │ ├── roll_a_dice.py │ ├── runway_ml_gen_2 │ │ ├── build_video_using_luma_ai.py │ │ └── try_gen2.png │ ├── search.py │ ├── select_image_file.py │ ├── story_writing.py │ ├── summary.py │ ├── summon_personality.py │ ├── take_a_photo.py │ ├── take_screen_shot.py │ ├── timers.py │ ├── tts │ │ ├── __init__.py │ │ ├── read_text.py │ │ └── read_text_from_file.py │ ├── web │ │ ├── __init__.py │ │ └── google_search.py │ ├── writing │ │ └── create_text_file.py │ └── youtube │ │ ├── __init__.py │ │ ├── download_transcript.py │ │ ├── download_transcript_by_channel.py │ │ ├── search.py │ │ ├── search_and_show.py │ │ └── search_query.png ├── generation.py ├── helpers.py ├── image_gen_modules │ ├── blip_vqa.py │ └── clip_interrogator.py ├── internet.py ├── main_config.py ├── media.py ├── paths.py ├── personality.py ├── prompting.py ├── security.py ├── server │ ├── .gitignore │ ├── assets │ │ └── thinking_methods.yaml │ ├── configs │ │ ├── .gitignore │ │ └── config.yaml │ ├── elf.py │ ├── elf_server.py │ ├── endpoints │ │ ├── chat_bar.py │ │ ├── docs │ │ │ ├── lollms_anything_to_markdown │ │ │ │ ├── DOC.md │ │ │ │ └── README.md │ │ │ ├── lollms_client_js │ │ │ │ ├── DOC.md │ │ │ │ └── README.md │ │ │ ├── lollms_flow │ │ │ │ ├── DOC.md │ │ │ │ └── README.md │ │ │ ├── lollms_markdown_renderer │ │ │ │ ├── DOC.md │ │ │ │ └── README.md │ │ │ ├── lollms_theme │ │ │ │ └── doc.md │ │ │ ├── lollms_tti │ │ │ │ └── DOC.md │ │ │ ├── lollms_webscraper │ │ │ │ ├── DOC.md │ │ │ │ └── README.md │ │ │ ├── lollmsclient_py.md │ │ │ └── web.app.localizer │ │ │ │ ├── DOC.md │ │ │ │ └── README.md │ │ ├── libraries │ │ │ ├── axios.min.js │ │ │ ├── full.calendar.min.js │ │ │ ├── jszip.min.js │ │ │ ├── leaflet.js │ │ │ ├── lollms_anything_to_markdown.js │ │ │ ├── lollms_client_js.js │ │ │ ├── lollms_flow.js │ │ │ ├── lollms_markdown2PDF.js │ │ │ ├── lollms_markdown_renderer.js │ │ │ ├── lollms_tti.js │ │ │ ├── lollms_webscraper.js │ │ │ ├── marked.min.js │ │ │ ├── mermaid.min.js │ │ │ ├── tailwindcss.js │ │ │ └── web.app.localizer.js │ │ ├── lollms_advanced.py │ │ ├── lollms_apps.py │ │ ├── lollms_binding_infos.py │ │ ├── lollms_configuration_infos.py │ │ ├── lollms_discussion.py │ │ ├── lollms_file_system.py │ │ ├── lollms_files_server.py │ │ ├── lollms_function_calls.py │ │ ├── lollms_generator.py │ │ ├── lollms_hardware_infos.py │ │ ├── lollms_help.py │ │ ├── lollms_infos.py │ │ ├── lollms_message.py │ │ ├── lollms_models_infos.py │ │ ├── lollms_personalities_infos.py │ │ ├── lollms_playground.py │ │ ├── lollms_rag.py │ │ ├── lollms_skills_library.py │ │ ├── lollms_stt.py │ │ ├── lollms_thinking.py │ │ ├── lollms_tti.py │ │ ├── lollms_ttm.py │ │ ├── lollms_tts.py │ │ ├── lollms_ttv.py │ │ ├── lollms_uploads_infos.py │ │ ├── lollms_user.py │ │ ├── lollms_webui_infos.py │ │ ├── news │ │ │ ├── changelog.html │ │ │ ├── current.html │ │ │ └── latest_video.json │ │ └── styles │ │ │ ├── full.calendar.min.css │ │ │ ├── hilight.js.default.min.css │ │ │ ├── leaflet.css │ │ │ ├── lollms_markdown_renderer.css │ │ │ ├── lollms_styles.css │ │ │ └── tailwind.min.css │ └── events │ │ ├── lollms_files_events.py │ │ ├── lollms_generation_events.py │ │ ├── lollms_model_events.py │ │ ├── lollms_personality_events.py │ │ └── lollms_rag_events.py ├── service.py ├── stt.py ├── tasks.py ├── templating.py ├── terminal.py ├── tti.py ├── ttm.py ├── tts.py ├── ttv.py ├── types.py ├── utilities.py └── utilities │ └── outlook.py ├── notebooks ├── lollms_discord.ipynb └── lollms_service.ipynb ├── personal_data └── configs │ └── lollms_discord_local_config.yaml ├── requirements.txt ├── requirements_dev.txt ├── scripts ├── linux │ ├── linux_conda_session.sh │ ├── linux_install.sh │ ├── linux_lollms_server.sh │ ├── linux_lollms_settings.sh │ ├── linux_update.sh │ ├── linux_update_models.sh │ └── uninstall.sh ├── macos │ ├── macos_conda_session.sh │ ├── macos_install.sh │ ├── macos_lollms_server.sh │ ├── macos_lollms_settings.sh │ └── macos_update.sh ├── utilities │ └── text2csv.py └── windows │ ├── uninstall.bat │ ├── win_conda_session.bat │ ├── win_install.bat │ ├── win_lollms_server.bat │ ├── win_lollms_settings.bat │ ├── win_update.bat │ └── win_update_models.bat ├── setup.py ├── tests └── endoints_unit_tests │ ├── components_test │ └── whisper_test.py │ ├── cpp │ ├── makefile │ └── test_generation.cpp │ ├── node │ ├── README.md │ └── test_generation.html │ └── python │ ├── example_text_gen.txt │ └── test_generation.py └── train ├── .gitignore ├── configs ├── deepspeed │ └── ds_config.yaml └── train │ ├── finetune.yaml │ ├── finetune_lora.yaml │ └── finetune_lora_ airoboros-7b-gpt4.yaml ├── requirements.txt └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/README.md -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/assets/logo.png -------------------------------------------------------------------------------- /configs/.gitignore: -------------------------------------------------------------------------------- 1 | local_config.yaml -------------------------------------------------------------------------------- /configs/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/configs/config.yaml -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docs/LLMBinding_doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/docs/LLMBinding_doc.md -------------------------------------------------------------------------------- /docs/Lollms-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/docs/Lollms-server.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/server_endpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/docs/server_endpoints.md -------------------------------------------------------------------------------- /elf_docker_cfg/config_paths.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/elf_docker_cfg/config_paths.yaml -------------------------------------------------------------------------------- /elf_docker_cfg/personal/configs/lollms_elf_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/elf_docker_cfg/personal/configs/lollms_elf_config.yaml -------------------------------------------------------------------------------- /elf_test_cfg/config_paths.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/elf_test_cfg/config_paths.yaml -------------------------------------------------------------------------------- /elf_test_cfg/personal/configs/lollms_elf_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/elf_test_cfg/personal/configs/lollms_elf_config.yaml -------------------------------------------------------------------------------- /elf_test_cfg/personal/configs/lollms_elf_local_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/elf_test_cfg/personal/configs/lollms_elf_local_config.yaml -------------------------------------------------------------------------------- /installer/installer.bat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lollms/.gitignore: -------------------------------------------------------------------------------- 1 | logs 2 | uploads -------------------------------------------------------------------------------- /lollms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/__init__.py -------------------------------------------------------------------------------- /lollms/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/app.py -------------------------------------------------------------------------------- /lollms/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/assets/logo.png -------------------------------------------------------------------------------- /lollms/assets/logo_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/assets/logo_old.png -------------------------------------------------------------------------------- /lollms/binding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/binding.py -------------------------------------------------------------------------------- /lollms/client_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/client_session.py -------------------------------------------------------------------------------- /lollms/code_modifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/code_modifier.py -------------------------------------------------------------------------------- /lollms/code_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/code_parser.py -------------------------------------------------------------------------------- /lollms/com.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/com.py -------------------------------------------------------------------------------- /lollms/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/config.py -------------------------------------------------------------------------------- /lollms/configs/.gitignore: -------------------------------------------------------------------------------- 1 | local_config.yaml -------------------------------------------------------------------------------- /lollms/configs/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/configs/config.yaml -------------------------------------------------------------------------------- /lollms/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/data.py -------------------------------------------------------------------------------- /lollms/databases/discussions_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/databases/discussions_database.py -------------------------------------------------------------------------------- /lollms/databases/models_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/databases/models_database.py -------------------------------------------------------------------------------- /lollms/databases/remote_databases/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lollms/databases/remote_databases/light_rag_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/databases/remote_databases/light_rag_database.py -------------------------------------------------------------------------------- /lollms/databases/remote_databases/lollms_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/databases/remote_databases/lollms_database.py -------------------------------------------------------------------------------- /lollms/databases/skills_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/databases/skills_database.py -------------------------------------------------------------------------------- /lollms/function_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/function_call.py -------------------------------------------------------------------------------- /lollms/functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lollms/functions/analyze_code/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/analyze_code/__init__.py -------------------------------------------------------------------------------- /lollms/functions/analyze_code/add_code_to_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/analyze_code/add_code_to_file.py -------------------------------------------------------------------------------- /lollms/functions/analyze_code/add_function_to_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/analyze_code/add_function_to_file.py -------------------------------------------------------------------------------- /lollms/functions/analyze_code/create_project_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/analyze_code/create_project_database.py -------------------------------------------------------------------------------- /lollms/functions/analyze_code/git_commit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/analyze_code/git_commit.py -------------------------------------------------------------------------------- /lollms/functions/analyze_code/git_pull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/analyze_code/git_pull.py -------------------------------------------------------------------------------- /lollms/functions/analyze_code/list_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/analyze_code/list_classes.py -------------------------------------------------------------------------------- /lollms/functions/analyze_code/list_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/analyze_code/list_files.py -------------------------------------------------------------------------------- /lollms/functions/analyze_code/retreive_information_for_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/analyze_code/retreive_information_for_task.py -------------------------------------------------------------------------------- /lollms/functions/analyze_code/retrieve_classes_from_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/analyze_code/retrieve_classes_from_project.py -------------------------------------------------------------------------------- /lollms/functions/analyze_code/search_class_in_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/analyze_code/search_class_in_project.py -------------------------------------------------------------------------------- /lollms/functions/analyze_code/update_class_in_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/analyze_code/update_class_in_file.py -------------------------------------------------------------------------------- /lollms/functions/analyze_code/update_function_in_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/analyze_code/update_function_in_file.py -------------------------------------------------------------------------------- /lollms/functions/bibliography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/bibliography.py -------------------------------------------------------------------------------- /lollms/functions/calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/calculator.py -------------------------------------------------------------------------------- /lollms/functions/file_manipulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/file_manipulation.py -------------------------------------------------------------------------------- /lollms/functions/generate_music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/generate_music.py -------------------------------------------------------------------------------- /lollms/functions/image_management/draw_bounding_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/image_management/draw_bounding_boxes.py -------------------------------------------------------------------------------- /lollms/functions/knowledge/build_knowledge_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/knowledge/build_knowledge_db.py -------------------------------------------------------------------------------- /lollms/functions/list_personalities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/list_personalities.py -------------------------------------------------------------------------------- /lollms/functions/luma_ai_dream_machine/build_video_using_luma_ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/luma_ai_dream_machine/build_video_using_luma_ai.py -------------------------------------------------------------------------------- /lollms/functions/luma_ai_dream_machine/input_section_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/luma_ai_dream_machine/input_section_image.png -------------------------------------------------------------------------------- /lollms/functions/luma_ai_dream_machine/sign_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/luma_ai_dream_machine/sign_in.png -------------------------------------------------------------------------------- /lollms/functions/luma_ai_dream_machine/try_now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/luma_ai_dream_machine/try_now.png -------------------------------------------------------------------------------- /lollms/functions/markdown2latex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/markdown2latex.py -------------------------------------------------------------------------------- /lollms/functions/memes/memes_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/memes/memes_builder.py -------------------------------------------------------------------------------- /lollms/functions/music_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/music_gen.py -------------------------------------------------------------------------------- /lollms/functions/peripherals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/peripherals.py -------------------------------------------------------------------------------- /lollms/functions/prompting/image_gen_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/prompting/image_gen_prompts.py -------------------------------------------------------------------------------- /lollms/functions/prompting/system_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/prompting/system_prompts.py -------------------------------------------------------------------------------- /lollms/functions/roll_a_dice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/roll_a_dice.py -------------------------------------------------------------------------------- /lollms/functions/runway_ml_gen_2/build_video_using_luma_ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/runway_ml_gen_2/build_video_using_luma_ai.py -------------------------------------------------------------------------------- /lollms/functions/runway_ml_gen_2/try_gen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/runway_ml_gen_2/try_gen2.png -------------------------------------------------------------------------------- /lollms/functions/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/search.py -------------------------------------------------------------------------------- /lollms/functions/select_image_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/select_image_file.py -------------------------------------------------------------------------------- /lollms/functions/story_writing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/story_writing.py -------------------------------------------------------------------------------- /lollms/functions/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/summary.py -------------------------------------------------------------------------------- /lollms/functions/summon_personality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/summon_personality.py -------------------------------------------------------------------------------- /lollms/functions/take_a_photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/take_a_photo.py -------------------------------------------------------------------------------- /lollms/functions/take_screen_shot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/take_screen_shot.py -------------------------------------------------------------------------------- /lollms/functions/timers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/timers.py -------------------------------------------------------------------------------- /lollms/functions/tts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lollms/functions/tts/read_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/tts/read_text.py -------------------------------------------------------------------------------- /lollms/functions/tts/read_text_from_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/tts/read_text_from_file.py -------------------------------------------------------------------------------- /lollms/functions/web/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/web/__init__.py -------------------------------------------------------------------------------- /lollms/functions/web/google_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/web/google_search.py -------------------------------------------------------------------------------- /lollms/functions/writing/create_text_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/writing/create_text_file.py -------------------------------------------------------------------------------- /lollms/functions/youtube/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lollms/functions/youtube/download_transcript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/youtube/download_transcript.py -------------------------------------------------------------------------------- /lollms/functions/youtube/download_transcript_by_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/youtube/download_transcript_by_channel.py -------------------------------------------------------------------------------- /lollms/functions/youtube/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/youtube/search.py -------------------------------------------------------------------------------- /lollms/functions/youtube/search_and_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/youtube/search_and_show.py -------------------------------------------------------------------------------- /lollms/functions/youtube/search_query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/functions/youtube/search_query.png -------------------------------------------------------------------------------- /lollms/generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/generation.py -------------------------------------------------------------------------------- /lollms/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/helpers.py -------------------------------------------------------------------------------- /lollms/image_gen_modules/blip_vqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/image_gen_modules/blip_vqa.py -------------------------------------------------------------------------------- /lollms/image_gen_modules/clip_interrogator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/image_gen_modules/clip_interrogator.py -------------------------------------------------------------------------------- /lollms/internet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/internet.py -------------------------------------------------------------------------------- /lollms/main_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/main_config.py -------------------------------------------------------------------------------- /lollms/media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/media.py -------------------------------------------------------------------------------- /lollms/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/paths.py -------------------------------------------------------------------------------- /lollms/personality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/personality.py -------------------------------------------------------------------------------- /lollms/prompting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/prompting.py -------------------------------------------------------------------------------- /lollms/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/security.py -------------------------------------------------------------------------------- /lollms/server/.gitignore: -------------------------------------------------------------------------------- 1 | elf_global_paths_cfg.yaml -------------------------------------------------------------------------------- /lollms/server/assets/thinking_methods.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/assets/thinking_methods.yaml -------------------------------------------------------------------------------- /lollms/server/configs/.gitignore: -------------------------------------------------------------------------------- 1 | local_config.yaml -------------------------------------------------------------------------------- /lollms/server/configs/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/configs/config.yaml -------------------------------------------------------------------------------- /lollms/server/elf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/elf.py -------------------------------------------------------------------------------- /lollms/server/elf_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/elf_server.py -------------------------------------------------------------------------------- /lollms/server/endpoints/chat_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/chat_bar.py -------------------------------------------------------------------------------- /lollms/server/endpoints/docs/lollms_anything_to_markdown/DOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/docs/lollms_anything_to_markdown/DOC.md -------------------------------------------------------------------------------- /lollms/server/endpoints/docs/lollms_anything_to_markdown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/docs/lollms_anything_to_markdown/README.md -------------------------------------------------------------------------------- /lollms/server/endpoints/docs/lollms_client_js/DOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/docs/lollms_client_js/DOC.md -------------------------------------------------------------------------------- /lollms/server/endpoints/docs/lollms_client_js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/docs/lollms_client_js/README.md -------------------------------------------------------------------------------- /lollms/server/endpoints/docs/lollms_flow/DOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/docs/lollms_flow/DOC.md -------------------------------------------------------------------------------- /lollms/server/endpoints/docs/lollms_flow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/docs/lollms_flow/README.md -------------------------------------------------------------------------------- /lollms/server/endpoints/docs/lollms_markdown_renderer/DOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/docs/lollms_markdown_renderer/DOC.md -------------------------------------------------------------------------------- /lollms/server/endpoints/docs/lollms_markdown_renderer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/docs/lollms_markdown_renderer/README.md -------------------------------------------------------------------------------- /lollms/server/endpoints/docs/lollms_theme/doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/docs/lollms_theme/doc.md -------------------------------------------------------------------------------- /lollms/server/endpoints/docs/lollms_tti/DOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/docs/lollms_tti/DOC.md -------------------------------------------------------------------------------- /lollms/server/endpoints/docs/lollms_webscraper/DOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/docs/lollms_webscraper/DOC.md -------------------------------------------------------------------------------- /lollms/server/endpoints/docs/lollms_webscraper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/docs/lollms_webscraper/README.md -------------------------------------------------------------------------------- /lollms/server/endpoints/docs/lollmsclient_py.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/docs/lollmsclient_py.md -------------------------------------------------------------------------------- /lollms/server/endpoints/docs/web.app.localizer/DOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/docs/web.app.localizer/DOC.md -------------------------------------------------------------------------------- /lollms/server/endpoints/docs/web.app.localizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/docs/web.app.localizer/README.md -------------------------------------------------------------------------------- /lollms/server/endpoints/libraries/axios.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/libraries/axios.min.js -------------------------------------------------------------------------------- /lollms/server/endpoints/libraries/full.calendar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/libraries/full.calendar.min.js -------------------------------------------------------------------------------- /lollms/server/endpoints/libraries/jszip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/libraries/jszip.min.js -------------------------------------------------------------------------------- /lollms/server/endpoints/libraries/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/libraries/leaflet.js -------------------------------------------------------------------------------- /lollms/server/endpoints/libraries/lollms_anything_to_markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/libraries/lollms_anything_to_markdown.js -------------------------------------------------------------------------------- /lollms/server/endpoints/libraries/lollms_client_js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/libraries/lollms_client_js.js -------------------------------------------------------------------------------- /lollms/server/endpoints/libraries/lollms_flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/libraries/lollms_flow.js -------------------------------------------------------------------------------- /lollms/server/endpoints/libraries/lollms_markdown2PDF.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/libraries/lollms_markdown2PDF.js -------------------------------------------------------------------------------- /lollms/server/endpoints/libraries/lollms_markdown_renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/libraries/lollms_markdown_renderer.js -------------------------------------------------------------------------------- /lollms/server/endpoints/libraries/lollms_tti.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/libraries/lollms_tti.js -------------------------------------------------------------------------------- /lollms/server/endpoints/libraries/lollms_webscraper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/libraries/lollms_webscraper.js -------------------------------------------------------------------------------- /lollms/server/endpoints/libraries/marked.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/libraries/marked.min.js -------------------------------------------------------------------------------- /lollms/server/endpoints/libraries/mermaid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/libraries/mermaid.min.js -------------------------------------------------------------------------------- /lollms/server/endpoints/libraries/tailwindcss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/libraries/tailwindcss.js -------------------------------------------------------------------------------- /lollms/server/endpoints/libraries/web.app.localizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/libraries/web.app.localizer.js -------------------------------------------------------------------------------- /lollms/server/endpoints/lollms_advanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/lollms_advanced.py -------------------------------------------------------------------------------- /lollms/server/endpoints/lollms_apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/lollms_apps.py -------------------------------------------------------------------------------- /lollms/server/endpoints/lollms_binding_infos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/lollms_binding_infos.py -------------------------------------------------------------------------------- /lollms/server/endpoints/lollms_configuration_infos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/lollms_configuration_infos.py -------------------------------------------------------------------------------- /lollms/server/endpoints/lollms_discussion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/lollms_discussion.py -------------------------------------------------------------------------------- /lollms/server/endpoints/lollms_file_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/lollms_file_system.py -------------------------------------------------------------------------------- /lollms/server/endpoints/lollms_files_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/lollms_files_server.py -------------------------------------------------------------------------------- /lollms/server/endpoints/lollms_function_calls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/lollms_function_calls.py -------------------------------------------------------------------------------- /lollms/server/endpoints/lollms_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/lollms_generator.py -------------------------------------------------------------------------------- /lollms/server/endpoints/lollms_hardware_infos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/lollms_hardware_infos.py -------------------------------------------------------------------------------- /lollms/server/endpoints/lollms_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/lollms_help.py -------------------------------------------------------------------------------- /lollms/server/endpoints/lollms_infos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/lollms_infos.py -------------------------------------------------------------------------------- /lollms/server/endpoints/lollms_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/lollms_message.py -------------------------------------------------------------------------------- /lollms/server/endpoints/lollms_models_infos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/lollms_models_infos.py -------------------------------------------------------------------------------- /lollms/server/endpoints/lollms_personalities_infos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/lollms_personalities_infos.py -------------------------------------------------------------------------------- /lollms/server/endpoints/lollms_playground.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/lollms_playground.py -------------------------------------------------------------------------------- /lollms/server/endpoints/lollms_rag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/lollms_rag.py -------------------------------------------------------------------------------- /lollms/server/endpoints/lollms_skills_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/lollms_skills_library.py -------------------------------------------------------------------------------- /lollms/server/endpoints/lollms_stt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/lollms_stt.py -------------------------------------------------------------------------------- /lollms/server/endpoints/lollms_thinking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/lollms_thinking.py -------------------------------------------------------------------------------- /lollms/server/endpoints/lollms_tti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/lollms_tti.py -------------------------------------------------------------------------------- /lollms/server/endpoints/lollms_ttm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/lollms_ttm.py -------------------------------------------------------------------------------- /lollms/server/endpoints/lollms_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/lollms_tts.py -------------------------------------------------------------------------------- /lollms/server/endpoints/lollms_ttv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/lollms_ttv.py -------------------------------------------------------------------------------- /lollms/server/endpoints/lollms_uploads_infos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/lollms_uploads_infos.py -------------------------------------------------------------------------------- /lollms/server/endpoints/lollms_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/lollms_user.py -------------------------------------------------------------------------------- /lollms/server/endpoints/lollms_webui_infos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/lollms_webui_infos.py -------------------------------------------------------------------------------- /lollms/server/endpoints/news/changelog.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lollms/server/endpoints/news/current.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/news/current.html -------------------------------------------------------------------------------- /lollms/server/endpoints/news/latest_video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/news/latest_video.json -------------------------------------------------------------------------------- /lollms/server/endpoints/styles/full.calendar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/styles/full.calendar.min.css -------------------------------------------------------------------------------- /lollms/server/endpoints/styles/hilight.js.default.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/styles/hilight.js.default.min.css -------------------------------------------------------------------------------- /lollms/server/endpoints/styles/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/styles/leaflet.css -------------------------------------------------------------------------------- /lollms/server/endpoints/styles/lollms_markdown_renderer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/styles/lollms_markdown_renderer.css -------------------------------------------------------------------------------- /lollms/server/endpoints/styles/lollms_styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/styles/lollms_styles.css -------------------------------------------------------------------------------- /lollms/server/endpoints/styles/tailwind.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/endpoints/styles/tailwind.min.css -------------------------------------------------------------------------------- /lollms/server/events/lollms_files_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/events/lollms_files_events.py -------------------------------------------------------------------------------- /lollms/server/events/lollms_generation_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/events/lollms_generation_events.py -------------------------------------------------------------------------------- /lollms/server/events/lollms_model_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/events/lollms_model_events.py -------------------------------------------------------------------------------- /lollms/server/events/lollms_personality_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/events/lollms_personality_events.py -------------------------------------------------------------------------------- /lollms/server/events/lollms_rag_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/server/events/lollms_rag_events.py -------------------------------------------------------------------------------- /lollms/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/service.py -------------------------------------------------------------------------------- /lollms/stt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/stt.py -------------------------------------------------------------------------------- /lollms/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/tasks.py -------------------------------------------------------------------------------- /lollms/templating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/templating.py -------------------------------------------------------------------------------- /lollms/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/terminal.py -------------------------------------------------------------------------------- /lollms/tti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/tti.py -------------------------------------------------------------------------------- /lollms/ttm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/ttm.py -------------------------------------------------------------------------------- /lollms/tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/tts.py -------------------------------------------------------------------------------- /lollms/ttv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/ttv.py -------------------------------------------------------------------------------- /lollms/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/types.py -------------------------------------------------------------------------------- /lollms/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/utilities.py -------------------------------------------------------------------------------- /lollms/utilities/outlook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/lollms/utilities/outlook.py -------------------------------------------------------------------------------- /notebooks/lollms_discord.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/notebooks/lollms_discord.ipynb -------------------------------------------------------------------------------- /notebooks/lollms_service.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/notebooks/lollms_service.ipynb -------------------------------------------------------------------------------- /personal_data/configs/lollms_discord_local_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/personal_data/configs/lollms_discord_local_config.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /scripts/linux/linux_conda_session.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/scripts/linux/linux_conda_session.sh -------------------------------------------------------------------------------- /scripts/linux/linux_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/scripts/linux/linux_install.sh -------------------------------------------------------------------------------- /scripts/linux/linux_lollms_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/scripts/linux/linux_lollms_server.sh -------------------------------------------------------------------------------- /scripts/linux/linux_lollms_settings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/scripts/linux/linux_lollms_settings.sh -------------------------------------------------------------------------------- /scripts/linux/linux_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/scripts/linux/linux_update.sh -------------------------------------------------------------------------------- /scripts/linux/linux_update_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/scripts/linux/linux_update_models.sh -------------------------------------------------------------------------------- /scripts/linux/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/scripts/linux/uninstall.sh -------------------------------------------------------------------------------- /scripts/macos/macos_conda_session.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/scripts/macos/macos_conda_session.sh -------------------------------------------------------------------------------- /scripts/macos/macos_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/scripts/macos/macos_install.sh -------------------------------------------------------------------------------- /scripts/macos/macos_lollms_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/scripts/macos/macos_lollms_server.sh -------------------------------------------------------------------------------- /scripts/macos/macos_lollms_settings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/scripts/macos/macos_lollms_settings.sh -------------------------------------------------------------------------------- /scripts/macos/macos_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/scripts/macos/macos_update.sh -------------------------------------------------------------------------------- /scripts/utilities/text2csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/scripts/utilities/text2csv.py -------------------------------------------------------------------------------- /scripts/windows/uninstall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/scripts/windows/uninstall.bat -------------------------------------------------------------------------------- /scripts/windows/win_conda_session.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/scripts/windows/win_conda_session.bat -------------------------------------------------------------------------------- /scripts/windows/win_install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/scripts/windows/win_install.bat -------------------------------------------------------------------------------- /scripts/windows/win_lollms_server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/scripts/windows/win_lollms_server.bat -------------------------------------------------------------------------------- /scripts/windows/win_lollms_settings.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/scripts/windows/win_lollms_settings.bat -------------------------------------------------------------------------------- /scripts/windows/win_update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/scripts/windows/win_update.bat -------------------------------------------------------------------------------- /scripts/windows/win_update_models.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/scripts/windows/win_update_models.bat -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/setup.py -------------------------------------------------------------------------------- /tests/endoints_unit_tests/components_test/whisper_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/tests/endoints_unit_tests/components_test/whisper_test.py -------------------------------------------------------------------------------- /tests/endoints_unit_tests/cpp/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/tests/endoints_unit_tests/cpp/makefile -------------------------------------------------------------------------------- /tests/endoints_unit_tests/cpp/test_generation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/tests/endoints_unit_tests/cpp/test_generation.cpp -------------------------------------------------------------------------------- /tests/endoints_unit_tests/node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/tests/endoints_unit_tests/node/README.md -------------------------------------------------------------------------------- /tests/endoints_unit_tests/node/test_generation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/tests/endoints_unit_tests/node/test_generation.html -------------------------------------------------------------------------------- /tests/endoints_unit_tests/python/example_text_gen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/tests/endoints_unit_tests/python/example_text_gen.txt -------------------------------------------------------------------------------- /tests/endoints_unit_tests/python/test_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/tests/endoints_unit_tests/python/test_generation.py -------------------------------------------------------------------------------- /train/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/train/.gitignore -------------------------------------------------------------------------------- /train/configs/deepspeed/ds_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/train/configs/deepspeed/ds_config.yaml -------------------------------------------------------------------------------- /train/configs/train/finetune.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/train/configs/train/finetune.yaml -------------------------------------------------------------------------------- /train/configs/train/finetune_lora.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/train/configs/train/finetune_lora.yaml -------------------------------------------------------------------------------- /train/configs/train/finetune_lora_ airoboros-7b-gpt4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/train/configs/train/finetune_lora_ airoboros-7b-gpt4.yaml -------------------------------------------------------------------------------- /train/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/train/requirements.txt -------------------------------------------------------------------------------- /train/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParisNeo/lollms_legacy/HEAD/train/train.py --------------------------------------------------------------------------------