├── .gitignore ├── CONTRIBUTING.md ├── Doc_Resources ├── Media │ ├── Gifs │ │ ├── Search-Gif.gif │ │ └── Wilmer-Coding-Workflow-Zero-Shot.gif │ └── Images │ │ ├── Completion_Seed_Roses_Red.png │ │ ├── OW_ollama_settings.png │ │ ├── ST_Instruct_Context_Settings.png │ │ ├── ST_chat_completion_settings.png │ │ ├── ST_ollama_text_completion_settings.png │ │ ├── ST_text_completion_settings.png │ │ ├── Wilmer-Assistant-Workflow-Example.jpg │ │ ├── Wilmer-Categorization-Workflow-Example.png │ │ ├── Wilmer-Groupchat-Workflow-Example.png │ │ ├── Wilmer-Simple-Coding-Workflow-Example.jpg │ │ ├── Wilmer_Example_Flow_1.png │ │ ├── Wilmer_Example_Flow_2.png │ │ ├── Wilmer_Privacy_Claude_Code_2025-10-12.png │ │ ├── Wilmer_Workflow_Example.png │ │ ├── Wilmer_Workflow_Example_2.png │ │ └── Wilmer_Workflow_Example_3.png └── SillyTavern │ ├── ContextTemplate │ └── WilmerAI_context_template.json │ ├── Group-Chat-Characters │ ├── Advisory-Team │ │ ├── CLAIRE.png │ │ ├── Datafinder-Interface.png │ │ ├── EVE.png │ │ └── LEX.png │ └── Dev-Team │ │ ├── Le-Pi.png │ │ ├── Mr-Drama-Llama.png │ │ └── Musical-Minstral.png │ └── InstructTemplate │ └── WilmerAI.json ├── Docs ├── Custom_Python_Node_Example_Script │ ├── MyTestModule.py │ └── README.md ├── Developer_Docs │ ├── Features_And_Packages │ │ ├── Api.md │ │ ├── Custom_Workflows.md │ │ ├── LLM_Apis.md │ │ ├── LLM_Apis_Remove_Unwanted_Text_From_Llm_Stream.md │ │ ├── Memories.md │ │ ├── Unit_Tests.md │ │ ├── Unit_Tests_LLM_Apis.md │ │ ├── Wilmer_Prompt_Flow_Beginning_To_End.md │ │ ├── Workflow_Variables.md │ │ └── Workflows.md │ └── README.md └── User_Documentation │ ├── Core_Features │ ├── Adaptable_Front_End_Api.md │ ├── Adaptable_LLM_Backend_Apis.md │ ├── Custom_Python_Scripts.md │ ├── Memories.md │ ├── Nested_Workflows.md │ ├── Offline_Wikipedia_Support.md │ ├── Prompt_Routing.md │ ├── Prompt_Routing_In_Workflow.md │ ├── TimeStamps_And_Time_Tracking.md │ ├── Workflow_Jinja2_Support.md │ └── Workflows.md │ ├── LLM_Assisted_Setup.md │ ├── LLM_Assisted_Workflow_Generation │ ├── Default_Endpoints_And_Presets.md │ ├── Example_Guide_Wikipedia_Search.md │ ├── README.md │ ├── Recursive_Workflows.md │ └── Workflow_Prompting_Methodologies_Socg.md │ ├── README.md │ └── Setup │ ├── Configuration_Files │ ├── ApiType.md │ ├── Endpoint.md │ ├── Preset.md │ ├── PromptTemplates.md │ ├── Routing.md │ └── User.md │ ├── Open-WebUI.md │ ├── SillyTavern.md │ ├── Workflow_Details │ ├── Nodes │ │ ├── Arithmetic_Processor.md │ │ ├── Conditional.md │ │ ├── ConditionalCustomWorkflow.md │ │ ├── CustomWorkflow.md │ │ ├── GetCustomFile.md │ │ ├── Image_Processor.md │ │ ├── Memory_Nodes │ │ │ ├── ChatSummarySummarizer.md │ │ │ ├── FullChatSummary.md │ │ │ ├── GetCurrentSummaryFromFile.md │ │ │ ├── Legacy_And_Less_Used_Nodes │ │ │ │ ├── ChatSummaryMemoryGatheringTool.md │ │ │ │ └── ConversationMemory.md │ │ │ ├── README.md │ │ │ ├── RecentMemory.md │ │ │ ├── RecentMemorySummarizerTool.md │ │ │ ├── VectorMemorySearch.md │ │ │ └── Vector_QualityMemory.md │ │ ├── Offline_Wikipedia.md │ │ ├── PythonModule.md │ │ ├── SaveCustomFile.md │ │ ├── Standard_Conversational.md │ │ ├── StaticResponse.md │ │ ├── String_Concatenator.md │ │ └── WorkflowLock.md │ ├── Workflow_Features.md │ ├── Workflow_Nodes.md │ ├── Workflow_Nodes_Memories.md │ ├── Workflow_Variables.md │ └── Workflows.md │ └── _Getting-Start_Wilmer-Api.md ├── LICENSE ├── Middleware ├── __init__.py ├── api │ ├── __init__.py │ ├── api_helpers.py │ ├── api_server.py │ ├── app.py │ ├── handlers │ │ ├── __init__.py │ │ ├── base │ │ │ ├── __init__.py │ │ │ └── base_api_handler.py │ │ └── impl │ │ │ ├── __init__.py │ │ │ ├── ollama_api_handler.py │ │ │ └── openai_api_handler.py │ └── workflow_gateway.py ├── common │ ├── __init__.py │ ├── constants.py │ └── instance_global_variables.py ├── exceptions │ ├── __init__.py │ └── early_termination_exception.py ├── llmapis │ ├── __init__.py │ ├── handlers │ │ ├── __init__.py │ │ ├── base │ │ │ ├── __init__.py │ │ │ ├── base_chat_completions_handler.py │ │ │ ├── base_completions_handler.py │ │ │ └── base_llm_api_handler.py │ │ └── impl │ │ │ ├── __init__.py │ │ │ ├── claude_api_handler.py │ │ │ ├── koboldcpp_api_handler.py │ │ │ ├── koboldcpp_api_image_specific_handler.py │ │ │ ├── ollama_chat_api_handler.py │ │ │ ├── ollama_chat_api_image_specific_handler.py │ │ │ ├── ollama_generate_api_handler.py │ │ │ ├── openai_api_handler.py │ │ │ ├── openai_chat_api_image_specific_handler.py │ │ │ └── openai_completions_api_handler.py │ └── llm_api.py ├── models │ ├── __init__.py │ └── llm_handler.py ├── services │ ├── __init__.py │ ├── cancellation_service.py │ ├── llm_dispatch_service.py │ ├── llm_service.py │ ├── locking_service.py │ ├── memory_service.py │ ├── prompt_categorization_service.py │ ├── response_builder_service.py │ └── timestamp_service.py ├── utilities │ ├── __init__.py │ ├── config_utils.py │ ├── datetime_utils.py │ ├── file_utils.py │ ├── hashing_utils.py │ ├── prompt_extraction_utils.py │ ├── prompt_manipulation_utils.py │ ├── prompt_template_utils.py │ ├── search_utils.py │ ├── streaming_utils.py │ ├── text_utils.py │ └── vector_db_utils.py └── workflows │ ├── __init__.py │ ├── handlers │ ├── __init__.py │ ├── base │ │ ├── __init__.py │ │ └── base_workflow_node_handler.py │ └── impl │ │ ├── __init__.py │ │ ├── memory_node_handler.py │ │ ├── specialized_node_handler.py │ │ ├── standard_node_handler.py │ │ ├── sub_workflow_handler.py │ │ └── tool_node_handler.py │ ├── managers │ ├── __init__.py │ ├── workflow_manager.py │ └── workflow_variable_manager.py │ ├── models │ ├── __init__.py │ └── execution_context.py │ ├── processors │ ├── __init__.py │ └── workflows_processor.py │ ├── streaming │ ├── __init__.py │ └── response_handler.py │ └── tools │ ├── __init__.py │ ├── dynamic_module_loader.py │ ├── offline_wikipedia_api_tool.py │ ├── parallel_llm_processing_tool.py │ └── slow_but_quality_rag_tool.py ├── Public ├── Configs │ ├── ApiTypes │ │ ├── Claude.json │ │ ├── KoboldCpp.json │ │ ├── KoboldCppImageSpecific.json │ │ ├── LlamaCppServer.json │ │ ├── OllamaApiChat.json │ │ ├── OllamaApiChatImageSpecific.json │ │ ├── OllamaApiGenerate.json │ │ ├── Open-AI-API.json │ │ ├── OpenAI-Compatible-Completions.json │ │ ├── OpenAIApiChatImageSpecific.json │ │ ├── Text-Generation-WebUI.json │ │ └── mlx-lm.json │ ├── Endpoints │ │ ├── DefaultEndpoint.json │ │ ├── _archived │ │ │ ├── assistant-multi-model │ │ │ │ ├── Assistant-Multi-Model-Categorizer-Endpoint.json │ │ │ │ ├── Assistant-Multi-Model-Coding-Endpoint.json │ │ │ │ ├── Assistant-Multi-Model-Coding-Secondary-Endpoint.json │ │ │ │ ├── Assistant-Multi-Model-Coding-Tertiary-Endpoint.json │ │ │ │ ├── Assistant-Multi-Model-Conversational-Endpoint.json │ │ │ │ ├── Assistant-Multi-Model-Factual-Endpoint.json │ │ │ │ ├── Assistant-Multi-Model-Math-Endpoint.json │ │ │ │ ├── Assistant-Multi-Model-MemoryChatSummary-Endpoint.json │ │ │ │ ├── Assistant-Multi-Model-Reasoning-Endpoint.json │ │ │ │ ├── Assistant-Multi-Model-Technical-Endpoint.json │ │ │ │ └── Assistant-Multi-Model-Worker-Endpoint.json │ │ │ ├── assistant-single-model │ │ │ │ └── Assistant-Single-Model-Endpoint.json │ │ │ ├── convo-roleplay-dual-model │ │ │ │ ├── Convo-Roleplay-Dual-Model-ResponderEndpoint.json │ │ │ │ └── Convo-Roleplay-Dual-Model-WorkerEndpoint.json │ │ │ ├── convo-roleplay-single-model │ │ │ │ └── Convo-Roleplay-Single-Model-Endpoint.json │ │ │ ├── group-chat-example │ │ │ │ ├── Group-Chat-Example-BusinessGroup-Speaker-Endpoint.json │ │ │ │ ├── Group-Chat-Example-Categorization-Endpoint.json │ │ │ │ ├── Group-Chat-Example-ChatGPT4o-Endpoint.json │ │ │ │ ├── Group-Chat-Example-Claire-Endpoint.json │ │ │ │ ├── Group-Chat-Example-Datafinder-Endpoint.json │ │ │ │ ├── Group-Chat-Example-Eve-Endpoint.json │ │ │ │ ├── Group-Chat-Example-LePi-Endpoint.json │ │ │ │ ├── Group-Chat-Example-Lex-Endpoint.json │ │ │ │ ├── Group-Chat-Example-MrDramaLlama-Endpoint.json │ │ │ │ └── Group-Chat-Example-MusicalMinstral-Endpoint.json │ │ │ ├── openai-vision-endpoint │ │ │ │ └── Image-Endpoint.json │ │ │ ├── openwebui-norouting-dual-model │ │ │ │ ├── OpenWebUI-NoRouting-Dual-Model-ResponderEndpoint.json │ │ │ │ └── OpenWebUI-NoRouting-Dual-Model-WorkerEndpoint.json │ │ │ ├── openwebui-norouting-single-model │ │ │ │ └── OpenWebUI-NoRouting-Single-Model-Endpoint.json │ │ │ ├── openwebui-routing-multi-model │ │ │ │ ├── OpenWebUI-Routing-Multi-Model-Categorizer-Endpoint.json │ │ │ │ ├── OpenWebUI-Routing-Multi-Model-Coding-Endpoint.json │ │ │ │ ├── OpenWebUI-Routing-Multi-Model-Coding-Secondary-Endpoint.json │ │ │ │ ├── OpenWebUI-Routing-Multi-Model-Coding-Tertiary-Endpoint.json │ │ │ │ ├── OpenWebUI-Routing-Multi-Model-Conversational-Endpoint.json │ │ │ │ ├── OpenWebUI-Routing-Multi-Model-Factual-Endpoint.json │ │ │ │ ├── OpenWebUI-Routing-Multi-Model-Math-Endpoint.json │ │ │ │ ├── OpenWebUI-Routing-Multi-Model-MemoryChatSummary-Endpoint.json │ │ │ │ ├── OpenWebUI-Routing-Multi-Model-Reasoning-Endpoint.json │ │ │ │ ├── OpenWebUI-Routing-Multi-Model-Technical-Endpoint.json │ │ │ │ └── OpenWebUI-Routing-Multi-Model-Worker-Endpoint.json │ │ │ ├── openwebui-routing-single-model │ │ │ │ └── OpenWebUI-Routing-Single-Model-Endpoint.json │ │ │ ├── socg-openwebui-norouting-coding-multi-model │ │ │ │ ├── Coder-Endpoint.json │ │ │ │ ├── Coder-First-Draft.json │ │ │ │ ├── Coder-Reasoning-Endpoint.json │ │ │ │ ├── Coder-Second-Endpoint.json │ │ │ │ ├── Image-Endpoint.json │ │ │ │ ├── Requirements-Endpoint.json │ │ │ │ ├── Responder-Endpoint.json │ │ │ │ ├── Reviewer-Endpoint.json │ │ │ │ ├── Summarizer-Endpoint.json │ │ │ │ └── Worker-Endpoint.json │ │ │ └── socg-openwebui-norouting-general-multi-model │ │ │ │ ├── Factual-Endpoint.json │ │ │ │ ├── General-Endpoint.json │ │ │ │ ├── Image-Endpoint.json │ │ │ │ ├── Requirements-Endpoint.json │ │ │ │ ├── Responder-Endpoint.json │ │ │ │ ├── Worker-Endpoint.json │ │ │ │ └── Worker-Large-Endpoint.json │ │ ├── _example-endpoints │ │ │ ├── chatgpt-4o-example.json │ │ │ ├── claude-example.json │ │ │ ├── koboldcpp_example.json │ │ │ ├── llama-cpp-server.json │ │ │ ├── ollama-api-chat-example.json │ │ │ ├── ollama-api-generate-example.json │ │ │ ├── specific_examples │ │ │ │ ├── GLM-4.5-Air-NoThink-In-LlamaCpp.json │ │ │ │ ├── GPT-OSS-120B-Less-Thinking-LlamaCpp.json │ │ │ │ ├── Qwen2.5-32b-VL-Vision-KoboldCpp.json │ │ │ │ ├── Qwen3-32b-No-Think-LlamaCpp.json │ │ │ │ └── Qwen3-32b-Remove-Think-LlamaCpp.json │ │ │ └── text-generation-webui-example.json │ │ ├── _example_users │ │ │ ├── Coding-Endpoint.json │ │ │ ├── Coding-Fast-Endpoint.json │ │ │ ├── General-Endpoint.json │ │ │ ├── General-Fast-Endpoint.json │ │ │ ├── General-Rag-Endpoint.json │ │ │ ├── General-Rag-Fast-Endpoint.json │ │ │ ├── General-Reasoning-Endpoint.json │ │ │ ├── Image-Endpoint.json │ │ │ ├── Memory-Generation-Endpoint.json │ │ │ ├── Responder-Endpoint.json │ │ │ ├── Thinker-Endpoint.json │ │ │ └── Worker-Endpoint.json │ │ └── isevendays-openwebui-norouting-general-offline-mcp │ │ │ └── Worker-Endpoint.json │ ├── Presets │ │ ├── ClaudeMessages │ │ │ ├── _Available_Presets.json │ │ │ ├── _example_users │ │ │ │ ├── Coder_Preset.json │ │ │ │ ├── Factual_Preset.json │ │ │ │ ├── Image_Preset.json │ │ │ │ ├── Reasoning_Preset.json │ │ │ │ ├── Responder_Preset.json │ │ │ │ ├── Summarization_Preset.json │ │ │ │ ├── Thinker_Preset.json │ │ │ │ ├── Worker_LowTemp_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ └── isevendays-openwebui-norouting-general-offline-mcp │ │ │ │ ├── Responder_Preset.json │ │ │ │ └── Worker_Preset.json │ │ ├── KoboldCpp │ │ │ └── _example_users │ │ │ │ ├── Coder_Preset.json │ │ │ │ ├── Factual_Preset.json │ │ │ │ ├── Image_Preset.json │ │ │ │ ├── Reasoning_Preset.json │ │ │ │ ├── Responder_Preset.json │ │ │ │ ├── Summarization_Preset.json │ │ │ │ ├── Thinker_Preset.json │ │ │ │ └── Worker_Preset.json │ │ ├── OllamaApiChat │ │ │ └── _example_users │ │ │ │ ├── Coder_Preset.json │ │ │ │ ├── Factual_Preset.json │ │ │ │ ├── Image_Preset.json │ │ │ │ ├── Reasoning_Preset.json │ │ │ │ ├── Responder_Preset.json │ │ │ │ ├── Summarization_Preset.json │ │ │ │ ├── Thinker_Preset.json │ │ │ │ └── Worker_Preset.json │ │ ├── OllamaApiGenerate │ │ │ └── _example_users │ │ │ │ ├── Coder_Preset.json │ │ │ │ ├── Factual_Preset.json │ │ │ │ ├── Image_Preset.json │ │ │ │ ├── Reasoning_Preset.json │ │ │ │ ├── Responder_Preset.json │ │ │ │ ├── Summarization_Preset.json │ │ │ │ ├── Thinker_Preset.json │ │ │ │ └── Worker_Preset.json │ │ ├── OpenAiCompatibleApis │ │ │ ├── _example_users │ │ │ │ ├── Coder_Preset.json │ │ │ │ ├── Factual_Preset.json │ │ │ │ ├── Image_Preset.json │ │ │ │ ├── Reasoning_Preset.json │ │ │ │ ├── Responder_Preset.json │ │ │ │ ├── Summarization_Preset.json │ │ │ │ ├── Thinker_Preset.json │ │ │ │ ├── Worker_LowTemp_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ └── isevendays-openwebui-norouting-general-offline-mcp │ │ │ │ ├── Responder_Preset.json │ │ │ │ └── Worker_Preset.json │ │ ├── Text-Generation-WebUI │ │ │ └── _example_users │ │ │ │ ├── Coder_Preset.json │ │ │ │ ├── Factual_Preset.json │ │ │ │ ├── Image_Preset.json │ │ │ │ ├── Reasoning_Preset.json │ │ │ │ ├── Responder_Preset.json │ │ │ │ ├── Summarization_Preset.json │ │ │ │ ├── Thinker_Preset.json │ │ │ │ ├── Worker_LowTemp_Preset.json │ │ │ │ └── Worker_Preset.json │ │ └── _archived │ │ │ ├── KoboldCpp │ │ │ ├── Almost_Deterministic.json │ │ │ ├── Coding.json │ │ │ ├── Default.json │ │ │ ├── Min-P.json │ │ │ ├── assistant-multi-model │ │ │ │ ├── Categorizer_Preset.json │ │ │ │ ├── Coder_Preset.json │ │ │ │ ├── Conversational_Preset.json │ │ │ │ ├── Factual_Preset.json │ │ │ │ ├── Math_Preset.json │ │ │ │ ├── MemoryChatSummary_Preset.json │ │ │ │ ├── Reasoning_Preset.json │ │ │ │ ├── Technical_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── assistant-single-model │ │ │ │ ├── Categorizer_Preset.json │ │ │ │ ├── Coder_Preset.json │ │ │ │ ├── Conversational_Preset.json │ │ │ │ ├── Factual_Preset.json │ │ │ │ ├── Math_Preset.json │ │ │ │ ├── MemoryChatSummary_Preset.json │ │ │ │ ├── Reasoning_Preset.json │ │ │ │ ├── Technical_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── convo-roleplay-dual-model │ │ │ │ ├── Responder_Preset.json │ │ │ │ ├── Summarization_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── convo-roleplay-single-model │ │ │ │ ├── Responder_Preset.json │ │ │ │ ├── Summarization_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── group-chat-example │ │ │ │ ├── BusinessGroup_Speaker_Preset.json │ │ │ │ ├── Categorization_Preset.json │ │ │ │ ├── Claire_Preset.json │ │ │ │ ├── Datafinder_Preset.json │ │ │ │ ├── Eve_Preset.json │ │ │ │ ├── LePi_Preset.json │ │ │ │ ├── Lex_Preset.json │ │ │ │ ├── MrDramaLlama_Preset.json │ │ │ │ └── MusicalMinstral_Preset.json │ │ │ ├── openwebui-norouting-dual-model │ │ │ │ ├── Responder_Preset.json │ │ │ │ ├── Summarization_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── openwebui-norouting-single-model │ │ │ │ ├── Responder_Preset.json │ │ │ │ ├── Summarization_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── openwebui-routing-multi-model │ │ │ │ ├── Categorizer_Preset.json │ │ │ │ ├── Coder_Preset.json │ │ │ │ ├── Conversational_Preset.json │ │ │ │ ├── Factual_Preset.json │ │ │ │ ├── Math_Preset.json │ │ │ │ ├── MemoryChatSummary_Preset.json │ │ │ │ ├── Reasoning_Preset.json │ │ │ │ ├── Technical_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── openwebui-routing-single-model │ │ │ │ ├── Categorizer_Preset.json │ │ │ │ ├── Coder_Preset.json │ │ │ │ ├── Conversational_Preset.json │ │ │ │ ├── Factual_Preset.json │ │ │ │ ├── Math_Preset.json │ │ │ │ ├── MemoryChatSummary_Preset.json │ │ │ │ ├── Reasoning_Preset.json │ │ │ │ ├── Technical_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── socg-openwebui-norouting-coding-multi-model │ │ │ │ ├── Coder_Preset.json │ │ │ │ ├── Reasoning_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ └── socg-openwebui-norouting-general-multi-model │ │ │ │ ├── Coder_Preset.json │ │ │ │ ├── Factual_Preset.json │ │ │ │ ├── General_Preset.json │ │ │ │ ├── Reasoning_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── OllamaApiChat │ │ │ ├── Almost_Deterministic.json │ │ │ ├── Coding.json │ │ │ ├── Default.json │ │ │ ├── Min-P.json │ │ │ ├── __Preset_With_Model_Load_Options.json │ │ │ ├── assistant-multi-model │ │ │ │ ├── Categorizer_Preset.json │ │ │ │ ├── Coder_Preset.json │ │ │ │ ├── Conversational_Preset.json │ │ │ │ ├── Factual_Preset.json │ │ │ │ ├── Math_Preset.json │ │ │ │ ├── MemoryChatSummary_Preset.json │ │ │ │ ├── Reasoning_Preset.json │ │ │ │ ├── Technical_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── assistant-single-model │ │ │ │ ├── Categorizer_Preset.json │ │ │ │ ├── Coder_Preset.json │ │ │ │ ├── Conversational_Preset.json │ │ │ │ ├── Factual_Preset.json │ │ │ │ ├── Math_Preset.json │ │ │ │ ├── MemoryChatSummary_Preset.json │ │ │ │ ├── Reasoning_Preset.json │ │ │ │ ├── Technical_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── convo-roleplay-dual-model │ │ │ │ ├── Responder_Preset.json │ │ │ │ ├── Summarization_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── convo-roleplay-single-model │ │ │ │ ├── Responder_Preset.json │ │ │ │ ├── Summarization_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── group-chat-example │ │ │ │ ├── BusinessGroup_Speaker_Preset.json │ │ │ │ ├── Categorization_Preset.json │ │ │ │ ├── Claire_Preset.json │ │ │ │ ├── Datafinder_Preset.json │ │ │ │ ├── Eve_Preset.json │ │ │ │ ├── LePi_Preset.json │ │ │ │ ├── Lex_Preset.json │ │ │ │ ├── MrDramaLlama_Preset.json │ │ │ │ └── MusicalMinstral_Preset.json │ │ │ ├── openwebui-norouting-dual-model │ │ │ │ ├── Responder_Preset.json │ │ │ │ ├── Summarization_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── openwebui-norouting-single-model │ │ │ │ ├── Responder_Preset.json │ │ │ │ ├── Summarization_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── openwebui-routing-multi-model │ │ │ │ ├── Categorizer_Preset.json │ │ │ │ ├── Coder_Preset.json │ │ │ │ ├── Conversational_Preset.json │ │ │ │ ├── Factual_Preset.json │ │ │ │ ├── Math_Preset.json │ │ │ │ ├── MemoryChatSummary_Preset.json │ │ │ │ ├── Reasoning_Preset.json │ │ │ │ ├── Technical_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── openwebui-routing-single-model │ │ │ │ ├── Categorizer_Preset.json │ │ │ │ ├── Coder_Preset.json │ │ │ │ ├── Conversational_Preset.json │ │ │ │ ├── Factual_Preset.json │ │ │ │ ├── Math_Preset.json │ │ │ │ ├── MemoryChatSummary_Preset.json │ │ │ │ ├── Reasoning_Preset.json │ │ │ │ ├── Technical_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── socg-openwebui-norouting-coding-multi-model │ │ │ │ ├── Coder_Preset.json │ │ │ │ ├── Reasoning_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ └── socg-openwebui-norouting-general-multi-model │ │ │ │ ├── Coder_Preset.json │ │ │ │ ├── Factual_Preset.json │ │ │ │ ├── General_Preset.json │ │ │ │ ├── Reasoning_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── OllamaApiGenerate │ │ │ ├── Almost_Deterministic.json │ │ │ ├── Coding.json │ │ │ ├── Default.json │ │ │ ├── Min-P.json │ │ │ ├── __Preset_With_Model_Load_Options.json │ │ │ ├── assistant-multi-model │ │ │ │ ├── Categorizer_Preset.json │ │ │ │ ├── Coder_Preset.json │ │ │ │ ├── Conversational_Preset.json │ │ │ │ ├── Factual_Preset.json │ │ │ │ ├── Math_Preset.json │ │ │ │ ├── MemoryChatSummary_Preset.json │ │ │ │ ├── Reasoning_Preset.json │ │ │ │ ├── Technical_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── assistant-single-model │ │ │ │ ├── Categorizer_Preset.json │ │ │ │ ├── Coder_Preset.json │ │ │ │ ├── Conversational_Preset.json │ │ │ │ ├── Factual_Preset.json │ │ │ │ ├── Math_Preset.json │ │ │ │ ├── MemoryChatSummary_Preset.json │ │ │ │ ├── Reasoning_Preset.json │ │ │ │ ├── Technical_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── convo-roleplay-dual-model │ │ │ │ ├── Responder_Preset.json │ │ │ │ ├── Summarization_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── convo-roleplay-single-model │ │ │ │ ├── Responder_Preset.json │ │ │ │ ├── Summarization_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── group-chat-example │ │ │ │ ├── BusinessGroup_Speaker_Preset.json │ │ │ │ ├── Categorization_Preset.json │ │ │ │ ├── Claire_Preset.json │ │ │ │ ├── Datafinder_Preset.json │ │ │ │ ├── Eve_Preset.json │ │ │ │ ├── LePi_Preset.json │ │ │ │ ├── Lex_Preset.json │ │ │ │ ├── MrDramaLlama_Preset.json │ │ │ │ └── MusicalMinstral_Preset.json │ │ │ ├── openwebui-norouting-dual-model │ │ │ │ ├── Responder_Preset.json │ │ │ │ ├── Summarization_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── openwebui-norouting-single-model │ │ │ │ ├── Responder_Preset.json │ │ │ │ ├── Summarization_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── openwebui-routing-multi-model │ │ │ │ ├── Categorizer_Preset.json │ │ │ │ ├── Coder_Preset.json │ │ │ │ ├── Conversational_Preset.json │ │ │ │ ├── Factual_Preset.json │ │ │ │ ├── Math_Preset.json │ │ │ │ ├── MemoryChatSummary_Preset.json │ │ │ │ ├── Reasoning_Preset.json │ │ │ │ ├── Technical_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── openwebui-routing-single-model │ │ │ │ ├── Categorizer_Preset.json │ │ │ │ ├── Coder_Preset.json │ │ │ │ ├── Conversational_Preset.json │ │ │ │ ├── Factual_Preset.json │ │ │ │ ├── Math_Preset.json │ │ │ │ ├── MemoryChatSummary_Preset.json │ │ │ │ ├── Reasoning_Preset.json │ │ │ │ ├── Technical_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── socg-openwebui-norouting-coding-multi-model │ │ │ │ ├── Coder_Preset.json │ │ │ │ ├── Reasoning_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ └── socg-openwebui-norouting-general-multi-model │ │ │ │ ├── Coder_Preset.json │ │ │ │ ├── Factual_Preset.json │ │ │ │ ├── General_Preset.json │ │ │ │ ├── Reasoning_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── OpenAiCompatibleApis │ │ │ ├── Almost_Deterministic.json │ │ │ ├── Coding.json │ │ │ ├── Default.json │ │ │ ├── OpenAI-API.json │ │ │ ├── assistant-multi-model │ │ │ │ ├── Categorizer_Preset.json │ │ │ │ ├── Coder_Preset.json │ │ │ │ ├── Conversational_Preset.json │ │ │ │ ├── Factual_Preset.json │ │ │ │ ├── Math_Preset.json │ │ │ │ ├── MemoryChatSummary_Preset.json │ │ │ │ ├── Reasoning_Preset.json │ │ │ │ ├── Technical_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── assistant-single-model │ │ │ │ ├── Categorizer_Preset.json │ │ │ │ ├── Coder_Preset.json │ │ │ │ ├── Conversational_Preset.json │ │ │ │ ├── Factual_Preset.json │ │ │ │ ├── Math_Preset.json │ │ │ │ ├── MemoryChatSummary_Preset.json │ │ │ │ ├── Reasoning_Preset.json │ │ │ │ ├── Technical_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── convo-roleplay-dual-model │ │ │ │ ├── Responder_Preset.json │ │ │ │ ├── Summarization_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── convo-roleplay-single-model │ │ │ │ ├── Responder_Preset.json │ │ │ │ ├── Summarization_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── group-chat-example │ │ │ │ ├── BusinessGroup_Speaker_Preset.json │ │ │ │ ├── Categorization_Preset.json │ │ │ │ ├── Claire_Preset.json │ │ │ │ ├── Datafinder_Preset.json │ │ │ │ ├── Eve_Preset.json │ │ │ │ ├── LePi_Preset.json │ │ │ │ ├── Lex_Preset.json │ │ │ │ ├── MrDramaLlama_Preset.json │ │ │ │ └── MusicalMinstral_Preset.json │ │ │ ├── openwebui-norouting-dual-model │ │ │ │ ├── Responder_Preset.json │ │ │ │ ├── Summarization_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── openwebui-norouting-single-model │ │ │ │ ├── Responder_Preset.json │ │ │ │ ├── Summarization_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── openwebui-routing-multi-model │ │ │ │ ├── Categorizer_Preset.json │ │ │ │ ├── Coder_Preset.json │ │ │ │ ├── Conversational_Preset.json │ │ │ │ ├── Factual_Preset.json │ │ │ │ ├── Math_Preset.json │ │ │ │ ├── MemoryChatSummary_Preset.json │ │ │ │ ├── Reasoning_Preset.json │ │ │ │ ├── Technical_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── openwebui-routing-single-model │ │ │ │ ├── Categorizer_Preset.json │ │ │ │ ├── Coder_Preset.json │ │ │ │ ├── Conversational_Preset.json │ │ │ │ ├── Factual_Preset.json │ │ │ │ ├── Math_Preset.json │ │ │ │ ├── MemoryChatSummary_Preset.json │ │ │ │ ├── Reasoning_Preset.json │ │ │ │ ├── Technical_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ ├── socg-openwebui-norouting-coding-multi-model │ │ │ │ ├── Coder_Preset.json │ │ │ │ ├── Reasoning_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ └── socg-openwebui-norouting-general-multi-model │ │ │ │ ├── Coder_Preset.json │ │ │ │ ├── Factual_Preset.json │ │ │ │ ├── General_Preset.json │ │ │ │ ├── Reasoning_Preset.json │ │ │ │ └── Worker_Preset.json │ │ │ └── Text-Generation-WebUI │ │ │ ├── Almost_Deterministic.json │ │ │ ├── Coding.json │ │ │ ├── Default.json │ │ │ ├── assistant-multi-model │ │ │ ├── Categorizer_Preset.json │ │ │ ├── Coder_Preset.json │ │ │ ├── Conversational_Preset.json │ │ │ ├── Factual_Preset.json │ │ │ ├── Math_Preset.json │ │ │ ├── MemoryChatSummary_Preset.json │ │ │ ├── Reasoning_Preset.json │ │ │ ├── Technical_Preset.json │ │ │ └── Worker_Preset.json │ │ │ ├── assistant-single-model │ │ │ ├── Categorizer_Preset.json │ │ │ ├── Coder_Preset.json │ │ │ ├── Conversational_Preset.json │ │ │ ├── Factual_Preset.json │ │ │ ├── Math_Preset.json │ │ │ ├── MemoryChatSummary_Preset.json │ │ │ ├── Reasoning_Preset.json │ │ │ ├── Technical_Preset.json │ │ │ └── Worker_Preset.json │ │ │ ├── convo-roleplay-dual-model │ │ │ ├── Responder_Preset.json │ │ │ ├── Summarization_Preset.json │ │ │ └── Worker_Preset.json │ │ │ ├── convo-roleplay-single-model │ │ │ ├── Responder_Preset.json │ │ │ ├── Summarization_Preset.json │ │ │ └── Worker_Preset.json │ │ │ ├── group-chat-example │ │ │ ├── BusinessGroup_Speaker_Preset.json │ │ │ ├── Categorization_Preset.json │ │ │ ├── Claire_Preset.json │ │ │ ├── Datafinder_Preset.json │ │ │ ├── Eve_Preset.json │ │ │ ├── LePi_Preset.json │ │ │ ├── Lex_Preset.json │ │ │ ├── MrDramaLlama_Preset.json │ │ │ └── MusicalMinstral_Preset.json │ │ │ ├── openwebui-norouting-dual-model │ │ │ ├── Responder_Preset.json │ │ │ ├── Summarization_Preset.json │ │ │ └── Worker_Preset.json │ │ │ ├── openwebui-norouting-single-model │ │ │ ├── Responder_Preset.json │ │ │ ├── Summarization_Preset.json │ │ │ └── Worker_Preset.json │ │ │ ├── openwebui-routing-multi-model │ │ │ ├── Categorizer_Preset.json │ │ │ ├── Coder_Preset.json │ │ │ ├── Conversational_Preset.json │ │ │ ├── Factual_Preset.json │ │ │ ├── Math_Preset.json │ │ │ ├── MemoryChatSummary_Preset.json │ │ │ ├── Reasoning_Preset.json │ │ │ ├── Technical_Preset.json │ │ │ └── Worker_Preset.json │ │ │ ├── openwebui-routing-single-model │ │ │ ├── Categorizer_Preset.json │ │ │ ├── Coder_Preset.json │ │ │ ├── Conversational_Preset.json │ │ │ ├── Factual_Preset.json │ │ │ ├── Math_Preset.json │ │ │ ├── MemoryChatSummary_Preset.json │ │ │ ├── Reasoning_Preset.json │ │ │ ├── Technical_Preset.json │ │ │ └── Worker_Preset.json │ │ │ ├── socg-openwebui-norouting-coding-multi-model │ │ │ ├── Coder_Preset.json │ │ │ ├── Reasoning_Preset.json │ │ │ └── Worker_Preset.json │ │ │ └── socg-openwebui-norouting-general-multi-model │ │ │ ├── Coder_Preset.json │ │ │ ├── Factual_Preset.json │ │ │ ├── General_Preset.json │ │ │ ├── Reasoning_Preset.json │ │ │ └── Worker_Preset.json │ ├── PromptTemplates │ │ ├── _chatonly.json │ │ ├── alpaca.json │ │ ├── cerebrum.json │ │ ├── chatml-variant.json │ │ ├── chatml.json │ │ ├── codefuse-deepseek-33b.json │ │ ├── codegeex.json │ │ ├── codellama-70b.json │ │ ├── codeqwen-1.5.json │ │ ├── codestral.json │ │ ├── command-r.json │ │ ├── deepseek-chat-v2.json │ │ ├── deepseek-coder-33b.json │ │ ├── deepseek-coder-lite-v2.json │ │ ├── deepseek-lite-v2.json │ │ ├── deepseek-llm-67b.json │ │ ├── deepseek_r1.json │ │ ├── exaone.json │ │ ├── gemma-27b.json │ │ ├── gemma.json │ │ ├── glm-4.json │ │ ├── granite-20b-instruct.json │ │ ├── guanaco.json │ │ ├── limarp-alpaca.json │ │ ├── limarp.json │ │ ├── llama3.json │ │ ├── magicoder-S-DS-6.7b.json │ │ ├── midnight-miqu-user-assistant.json │ │ ├── mistral-small-2501.json │ │ ├── mistral.json │ │ ├── openchat.json │ │ ├── phi-4.json │ │ ├── phi-medium.json │ │ ├── phind-codellama-34b-v2-official.json │ │ ├── phind-codellama-34b-v2-recommended.json │ │ ├── systemuserassistant.json │ │ ├── tulu.json │ │ ├── userassistant.json │ │ ├── userassistantwizard.json │ │ ├── vicuna-1.1.json │ │ ├── vicuna.json │ │ └── wilmerai.json │ ├── Routing │ │ ├── _archived │ │ │ ├── assistantMultiModelCategoriesConfig.json │ │ │ ├── assistantSingleModelCategoriesConfig.json │ │ │ ├── groupChatExampleCategoriesConfig.json │ │ │ ├── openwebuiMultiModelCategoriesConfig.json │ │ │ ├── openwebuiSingleModelCategoriesConfig.json │ │ │ ├── socgOpenWebUINoRoutingCodingMultiModelCategoriesConfig.json │ │ │ └── socgOpenWebUINoRoutingGeneralMultiModelCategoriesConfig.json │ │ ├── _defaultCategoriesConfig.json │ │ └── _exampleCustomCategoriesConfig.json │ ├── Users │ │ ├── _archived │ │ │ ├── assistant-multi-model.json │ │ │ ├── assistant-single-model.json │ │ │ ├── convo-roleplay-dual-model.json │ │ │ ├── convo-roleplay-single-model.json │ │ │ ├── group-chat-example.json │ │ │ ├── openwebui-norouting-dual-model.json │ │ │ ├── openwebui-norouting-single-model.json │ │ │ ├── openwebui-routing-multi-model.json │ │ │ ├── openwebui-routing-single-model.json │ │ │ ├── socg-openwebui-norouting-coding-complex-multi-model.json │ │ │ ├── socg-openwebui-norouting-coding-dual-multi-model.json │ │ │ ├── socg-openwebui-norouting-coding-reasoning-multi-model.json │ │ │ ├── socg-openwebui-norouting-coding-single-multi-model.json │ │ │ ├── socg-openwebui-norouting-general-multi-model.json │ │ │ └── socg-openwebui-norouting-general-offline-wikipedia.json │ │ ├── _current-user.json │ │ ├── _example_assistant_with_vector_memory.json │ │ ├── _example_coding_workflow.json │ │ ├── _example_game_bot_with_file_memory.json │ │ ├── _example_general_workflow.json │ │ ├── _example_recursive_coding_workflow_poc.json │ │ ├── _example_simple_router_no_memory.json │ │ ├── _example_task_workflow.json │ │ ├── _example_wikipedia_multi_step_workflow.json │ │ ├── _example_wikipedia_quick_workflow.json │ │ └── isevendays-openwebui-norouting-general-offline-mcp.json │ ├── Workflows │ │ ├── _archived │ │ │ ├── assistant-multi-model │ │ │ │ ├── CodingWorkflow-LargeModel-Centric.json │ │ │ │ ├── CodingWorkflow-MultiModel-Centric.json │ │ │ │ ├── ConversationalWorkflow-New.json │ │ │ │ ├── ConversationalWorkflow-WorkflowLocked.json │ │ │ │ ├── CustomCategorizationWorkflow.json │ │ │ │ ├── CustomConversationMemoryToolWorkflow.json │ │ │ │ ├── Factual-Wiki-Workflow.json │ │ │ │ ├── GetChatSummaryToolWorkflow.json │ │ │ │ ├── MathWorkflow-LargeModel-Centric.json │ │ │ │ ├── MemoryFileToolWorkflow.json │ │ │ │ ├── ReasoningWorkflow-LargeModel-Centric.json │ │ │ │ ├── RecentMemoryToolWorkflow.json │ │ │ │ ├── SlowButQualityRagParallelProcessor.json │ │ │ │ ├── Technical-Workflow.json │ │ │ │ ├── _DefaultWorkflow.json │ │ │ │ └── _DiscussionId-MemoryFile-Workflow-Settings.json │ │ │ ├── assistant-single-model │ │ │ │ ├── CodingWorkflow-LargeModel-Centric.json │ │ │ │ ├── CodingWorkflow-SmallModel-Centric.json │ │ │ │ ├── ConversationalWorkflow-New.json │ │ │ │ ├── CustomCategorizationWorkflow.json │ │ │ │ ├── CustomConversationMemoryToolWorkflow.json │ │ │ │ ├── Factual-Wiki-Workflow.json │ │ │ │ ├── GetChatSummaryToolWorkflow.json │ │ │ │ ├── MathWorkflow-LargeModel-Centric.json │ │ │ │ ├── MemoryFileToolWorkflow.json │ │ │ │ ├── ReasoningWorkflow-LargeModel-Centric.json │ │ │ │ ├── RecentMemoryToolWorkflow.json │ │ │ │ ├── SlowButQualityRagParallelProcessor.json │ │ │ │ ├── Technical-Workflow.json │ │ │ │ ├── _DefaultWorkflow.json │ │ │ │ └── _DiscussionId-MemoryFile-Workflow-Settings.json │ │ │ ├── convo-roleplay-dual-model │ │ │ │ ├── CustomConversationMemoryToolWorkflow.json │ │ │ │ ├── FullCustomWorkflow-ChatSummary-Synchronous.json │ │ │ │ ├── FullCustomWorkflow-ChatSummary-WorkflowLocked.json │ │ │ │ ├── FullCustomWorkflow-ChatSummary.json │ │ │ │ ├── GetChatSummaryToolWorkflow.json │ │ │ │ ├── MemoryFileToolWorkflow.json │ │ │ │ ├── RecentMemoryToolWorkflow.json │ │ │ │ ├── SlowButQualityRagParallelProcessor.json │ │ │ │ ├── _DefaultWorkflow.json │ │ │ │ └── _DiscussionId-MemoryFile-Workflow-Settings.json │ │ │ ├── convo-roleplay-single-model │ │ │ │ ├── CustomConversationMemoryToolWorkflow.json │ │ │ │ ├── FullCustomWorkflow-ChatSummary-Synchronous.json │ │ │ │ ├── FullCustomWorkflow-ChatSummary-WorkflowLocked.json │ │ │ │ ├── FullCustomWorkflow-ChatSummary.json │ │ │ │ ├── GetChatSummaryToolWorkflow.json │ │ │ │ ├── MemoryFileToolWorkflow.json │ │ │ │ ├── RecentMemoryToolWorkflow.json │ │ │ │ ├── SlowButQualityRagParallelProcessor.json │ │ │ │ ├── _DefaultWorkflow.json │ │ │ │ └── _DiscussionId-MemoryFile-Workflow-Settings.json │ │ │ ├── group-chat-example │ │ │ │ ├── ChatGpt-4o-Workflow-OnePrompt.json │ │ │ │ ├── Claire-TwoPrompt.json │ │ │ │ ├── CustomCategorizationWorkflow.json │ │ │ │ ├── DataFinder-Factual-Workflow.json │ │ │ │ ├── Eve-TwoPrompt.json │ │ │ │ ├── LePi-OnePrompt.json │ │ │ │ ├── Lex-TwoPrompt.json │ │ │ │ ├── MrDramaLlama-OnePrompt.json │ │ │ │ └── MusicalMinstral-OnePrompt.json │ │ │ ├── openwebui-norouting-dual-model │ │ │ │ ├── ConversationalWorkflow-New.json │ │ │ │ ├── ConversationalWorkflow-WorkflowLocked.json │ │ │ │ ├── CustomConversationMemoryToolWorkflow.json │ │ │ │ ├── GetChatSummaryToolWorkflow.json │ │ │ │ ├── MemoryFileToolWorkflow.json │ │ │ │ ├── RecentMemoryToolWorkflow.json │ │ │ │ ├── SlowButQualityRagParallelProcessor.json │ │ │ │ ├── _DefaultWorkflow.json │ │ │ │ └── _DiscussionId-MemoryFile-Workflow-Settings.json │ │ │ ├── openwebui-norouting-single-model │ │ │ │ ├── ConversationalWorkflow-New.json │ │ │ │ ├── CustomConversationMemoryToolWorkflow.json │ │ │ │ ├── GetChatSummaryToolWorkflow.json │ │ │ │ ├── MemoryFileToolWorkflow.json │ │ │ │ ├── RecentMemoryToolWorkflow.json │ │ │ │ ├── SlowButQualityRagParallelProcessor.json │ │ │ │ ├── _DefaultWorkflow.json │ │ │ │ └── _DiscussionId-MemoryFile-Workflow-Settings.json │ │ │ ├── openwebui-routing-multi-model │ │ │ │ ├── Application-Task-Workflow.json │ │ │ │ ├── CodingWorkflow-LargeModel-Centric.json │ │ │ │ ├── CodingWorkflow-MultiModel-Centric.json │ │ │ │ ├── ConversationalWorkflow-New.json │ │ │ │ ├── ConversationalWorkflow-WorkflowLocked.json │ │ │ │ ├── CustomCategorizationWorkflow.json │ │ │ │ ├── CustomConversationMemoryToolWorkflow.json │ │ │ │ ├── Factual-Wiki-Workflow.json │ │ │ │ ├── GetChatSummaryToolWorkflow.json │ │ │ │ ├── MathWorkflow-LargeModel-Centric.json │ │ │ │ ├── MemoryFileToolWorkflow.json │ │ │ │ ├── ReasoningWorkflow-LargeModel-Centric.json │ │ │ │ ├── RecentMemoryToolWorkflow.json │ │ │ │ ├── SlowButQualityRagParallelProcessor.json │ │ │ │ ├── Technical-Workflow.json │ │ │ │ ├── _DefaultWorkflow.json │ │ │ │ └── _DiscussionId-MemoryFile-Workflow-Settings.json │ │ │ ├── openwebui-routing-single-model │ │ │ │ ├── Application-Task-Workflow.json │ │ │ │ ├── CodingWorkflow-LargeModel-Centric.json │ │ │ │ ├── ConversationalWorkflow-New.json │ │ │ │ ├── CustomCategorizationWorkflow.json │ │ │ │ ├── CustomConversationMemoryToolWorkflow.json │ │ │ │ ├── Factual-Wiki-Workflow.json │ │ │ │ ├── GetChatSummaryToolWorkflow.json │ │ │ │ ├── MathWorkflow-LargeModel-Centric.json │ │ │ │ ├── MemoryFileToolWorkflow.json │ │ │ │ ├── ReasoningWorkflow-LargeModel-Centric.json │ │ │ │ ├── RecentMemoryToolWorkflow.json │ │ │ │ ├── SlowButQualityRagParallelProcessor.json │ │ │ │ ├── Technical-Workflow.json │ │ │ │ ├── _DefaultWorkflow.json │ │ │ │ └── _DiscussionId-MemoryFile-Workflow-Settings.json │ │ │ ├── socg-openwebui-norouting-coding-complex-multi-model │ │ │ │ ├── Application-Task-Workflow.json │ │ │ │ ├── CodingWorkflow.json │ │ │ │ ├── CustomCategorizationWorkflow.json │ │ │ │ ├── _DefaultWorkflow.json │ │ │ │ └── _DiscussionId-MemoryFile-Workflow-Settings.json │ │ │ ├── socg-openwebui-norouting-coding-dual-multi-model │ │ │ │ ├── Application-Task-Workflow.json │ │ │ │ ├── CodingWorkflow.json │ │ │ │ ├── CustomCategorizationWorkflow.json │ │ │ │ ├── _DefaultWorkflow.json │ │ │ │ └── _DiscussionId-MemoryFile-Workflow-Settings.json │ │ │ ├── socg-openwebui-norouting-coding-reasoning-multi-model │ │ │ │ ├── Application-Task-Workflow.json │ │ │ │ ├── CodingWorkflow.json │ │ │ │ ├── CustomCategorizationWorkflow.json │ │ │ │ ├── _DefaultWorkflow.json │ │ │ │ └── _DiscussionId-MemoryFile-Workflow-Settings.json │ │ │ ├── socg-openwebui-norouting-coding-single-multi-model │ │ │ │ ├── Application-Task-Workflow.json │ │ │ │ ├── CodingWorkflow.json │ │ │ │ ├── CustomCategorizationWorkflow.json │ │ │ │ ├── _DefaultWorkflow.json │ │ │ │ └── _DiscussionId-MemoryFile-Workflow-Settings.json │ │ │ ├── socg-openwebui-norouting-general-multi-model │ │ │ │ ├── Application-Task-Workflow.json │ │ │ │ ├── CustomCategorizationWorkflow.json │ │ │ │ ├── GeneralWorkflow.json │ │ │ │ ├── _DefaultWorkflow.json │ │ │ │ └── _DiscussionId-MemoryFile-Workflow-Settings.json │ │ │ └── socg-openwebui-norouting-general-offline-wikipedia │ │ │ │ ├── Application-Task-Workflow.json │ │ │ │ ├── CustomCategorizationWorkflow.json │ │ │ │ ├── GeneralWorkflow.json │ │ │ │ ├── _DefaultWorkflow.json │ │ │ │ └── _DiscussionId-MemoryFile-Workflow-Settings.json │ │ ├── _common │ │ │ ├── Coding_With_Image_Workflow.json │ │ │ ├── Coding_With_Image_Workflow_Multi_Step.json │ │ │ ├── Coding_Workflow.json │ │ │ ├── Coding_Workflow_Multi_Step.json │ │ │ ├── General_Fast_With_Image_Workflow.json │ │ │ ├── General_Fast_Workflow.json │ │ │ ├── General_ReasoningModel_With_Image_Workflow.json │ │ │ ├── General_ReasoningModel_Workflow.json │ │ │ ├── General_With_Image_Workflow.json │ │ │ ├── General_With_Image_Workflow_Confirmation_Step.json │ │ │ ├── General_With_Image_Workflow_Multi_Step.json │ │ │ ├── General_Workflow.json │ │ │ ├── General_Workflow_Confirmation_Step.json │ │ │ ├── General_Workflow_Multi_Step.json │ │ │ ├── General_Workflow_Replaceable_Endpoint.json │ │ │ ├── Recursive_Coding_Core.json │ │ │ ├── Recursive_Coding_Finalizer.json │ │ │ ├── Recursive_Coding_Orchestrator.json │ │ │ ├── Util_Workflow_Wiki_Extra_Search_Keyword_Generation.json │ │ │ ├── Util_Workflow_Wiki_Search_And_Summarize.json │ │ │ ├── Wiki_Multi_Pass_With_Image_Workflow.json │ │ │ ├── Wiki_Multi_Pass_Workflow.json │ │ │ ├── Wiki_With_Image_Workflow.json │ │ │ ├── Wiki_Workflow.json │ │ │ └── _DoNothing.json │ │ ├── _example_assistant_with_vector_memory │ │ │ ├── CustomWorkflow-VectorMemory-Simple.json │ │ │ ├── Memory_Vector_Workflow.json │ │ │ ├── _DefaultWorkflow.json │ │ │ ├── _DiscussionId-MemoryFile-Workflow-Settings.json │ │ │ └── _README.txt │ │ ├── _example_coding_workflow │ │ │ ├── Custom_Workflow.json │ │ │ └── _DefaultWorkflow.json │ │ ├── _example_game_bot_with_file_memory │ │ │ ├── Game_Workflow.json │ │ │ ├── GetChatSummaryToolWorkflow.json │ │ │ ├── _DefaultWorkflow.json │ │ │ ├── _DiscussionId-MemoryFile-Workflow-Settings.json │ │ │ └── _README.txt │ │ ├── _example_general_workflow │ │ │ ├── Custom_Workflow.json │ │ │ └── _DefaultWorkflow.json │ │ ├── _example_recursive_coding_workflow_poc │ │ │ ├── Custom_Workflow.json │ │ │ └── _DefaultWorkflow.json │ │ ├── _example_simple_router_no_memory │ │ │ ├── Coding-Route-Workflow.json │ │ │ ├── CustomCategorizationWorkflow.json │ │ │ ├── General-Route-Workflow.json │ │ │ ├── Wiki-Route-Workflow.json │ │ │ └── _DefaultWorkflow.json │ │ ├── _example_task_workflow │ │ │ ├── TaskWorkflow.json │ │ │ ├── _DefaultWorkflow.json │ │ │ └── _README.txt │ │ ├── _example_wikipedia_multi_step_workflow │ │ │ ├── Custom_Workflow.json │ │ │ └── _DefaultWorkflow.json │ │ ├── _example_wikipedia_quick_workflow │ │ │ ├── Custom_Workflow.json │ │ │ └── _DefaultWorkflow.json │ │ └── isevendays-openwebui-norouting-general-offline-mcp │ │ │ ├── Application-Task-Workflow.json │ │ │ ├── CustomCategorizationWorkflow.json │ │ │ ├── MCPToolsWorkflow.json │ │ │ ├── _DefaultWorkflow.json │ │ │ └── _DiscussionId-MemoryFile-Workflow-Settings.json │ └── default_tool_prompt.txt └── modules │ ├── README_MCP_TOOLS.md │ ├── ensure_system_prompt.py │ ├── mcp_prompt_utils.py │ ├── mcp_service_discoverer.py │ ├── mcp_tool_executor.py │ ├── mcp_workflow_integration.py │ ├── sanitize_llm_response.py │ └── workflow_utils.py ├── README.md ├── Tests ├── api │ ├── handlers │ │ └── impl │ │ │ ├── test_api_cancellation.py │ │ │ ├── test_ollama_api_handler.py │ │ │ └── test_openai_api_handler.py │ ├── test_api_helpers.py │ ├── test_api_server.py │ └── test_workflow_gateway.py ├── conftest.py ├── integration │ └── test_nested_workflow_cancellation.py ├── llmapis │ ├── handlers │ │ ├── base │ │ │ ├── test_base_chat_completions_handler.py │ │ │ └── test_base_llm_api_handler_cancellation.py │ │ └── impl │ │ │ ├── test_llmapis_claude_api_handler.py │ │ │ ├── test_llmapis_koboldcpp_api_handler.py │ │ │ ├── test_llmapis_koboldcpp_api_image_specific_handler.py │ │ │ ├── test_llmapis_ollama_chat_api_handler.py │ │ │ ├── test_llmapis_ollama_chat_api_image_specific_handler.py │ │ │ ├── test_llmapis_ollama_generate_api_handler.py │ │ │ ├── test_llmapis_openai_chat_api_image_specific_handler.py │ │ │ ├── test_llmapis_openai_chat_handler.py │ │ │ └── test_llmapis_openai_completions_api_handler.py │ └── test_llm_api.py ├── services │ ├── test_cancellation_service.py │ ├── test_llm_dispatch_service.py │ ├── test_llm_service.py │ ├── test_locking_service.py │ ├── test_memory_service.py │ ├── test_prompt_categorization_service.py │ ├── test_response_builder_service.py │ └── test_timestamp_service.py ├── utilities │ ├── test_config_utils.py │ ├── test_datetime_utils.py │ ├── test_file_utils.py │ ├── test_hashing_utils.py │ ├── test_prompt_extraction_utils.py │ ├── test_prompt_manipulation_utils.py │ ├── test_prompt_template_utils.py │ ├── test_search_utils.py │ ├── test_streaming_utils.py │ ├── test_text_utils.py │ └── test_vector_db_utils.py └── workflows │ ├── handlers │ └── impl │ │ ├── test_memory_node_handler.py │ │ ├── test_specialized_node_handler.py │ │ ├── test_standard_node_handler.py │ │ ├── test_sub_workflow_node_handler.py │ │ └── test_tool_node_handler.py │ ├── managers │ ├── test_workflow_manager.py │ └── test_workflow_variable_manager.py │ ├── processors │ ├── test_workflow_processor_cancellation.py │ └── test_workflows_processor.py │ ├── streaming │ └── test_response_handler.py │ └── tools │ ├── test_dynamic_module_loader.py │ ├── test_offline_wikipedia_api_tool.py │ └── test_slow_but_quality_rag_tool.py ├── ThirdParty-Licenses ├── Flask │ └── LICENSE.txt ├── README.md ├── eventlet │ └── LICENSE ├── jinja │ └── LICENSE.txt ├── pillow │ └── LICENSE.txt ├── requests │ ├── LICENSE.txt │ └── NOTICE.txt ├── scikit-learn │ └── COPYING.txt ├── urllib3 │ └── LICENSE.txt └── waitress │ ├── COPYRIGHT.txt │ └── LICENSE.txt ├── logs └── _logsGoHere.txt ├── pytest.ini ├── requirements-test.txt ├── requirements.txt ├── run_eventlet.py ├── run_macos.sh ├── run_waitress.py ├── run_windows.bat └── server.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Doc_Resources/Media/Gifs/Search-Gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Doc_Resources/Media/Gifs/Search-Gif.gif -------------------------------------------------------------------------------- /Doc_Resources/Media/Gifs/Wilmer-Coding-Workflow-Zero-Shot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Doc_Resources/Media/Gifs/Wilmer-Coding-Workflow-Zero-Shot.gif -------------------------------------------------------------------------------- /Doc_Resources/Media/Images/Completion_Seed_Roses_Red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Doc_Resources/Media/Images/Completion_Seed_Roses_Red.png -------------------------------------------------------------------------------- /Doc_Resources/Media/Images/OW_ollama_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Doc_Resources/Media/Images/OW_ollama_settings.png -------------------------------------------------------------------------------- /Doc_Resources/Media/Images/ST_Instruct_Context_Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Doc_Resources/Media/Images/ST_Instruct_Context_Settings.png -------------------------------------------------------------------------------- /Doc_Resources/Media/Images/ST_chat_completion_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Doc_Resources/Media/Images/ST_chat_completion_settings.png -------------------------------------------------------------------------------- /Doc_Resources/Media/Images/ST_ollama_text_completion_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Doc_Resources/Media/Images/ST_ollama_text_completion_settings.png -------------------------------------------------------------------------------- /Doc_Resources/Media/Images/ST_text_completion_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Doc_Resources/Media/Images/ST_text_completion_settings.png -------------------------------------------------------------------------------- /Doc_Resources/Media/Images/Wilmer-Assistant-Workflow-Example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Doc_Resources/Media/Images/Wilmer-Assistant-Workflow-Example.jpg -------------------------------------------------------------------------------- /Doc_Resources/Media/Images/Wilmer-Categorization-Workflow-Example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Doc_Resources/Media/Images/Wilmer-Categorization-Workflow-Example.png -------------------------------------------------------------------------------- /Doc_Resources/Media/Images/Wilmer-Groupchat-Workflow-Example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Doc_Resources/Media/Images/Wilmer-Groupchat-Workflow-Example.png -------------------------------------------------------------------------------- /Doc_Resources/Media/Images/Wilmer-Simple-Coding-Workflow-Example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Doc_Resources/Media/Images/Wilmer-Simple-Coding-Workflow-Example.jpg -------------------------------------------------------------------------------- /Doc_Resources/Media/Images/Wilmer_Example_Flow_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Doc_Resources/Media/Images/Wilmer_Example_Flow_1.png -------------------------------------------------------------------------------- /Doc_Resources/Media/Images/Wilmer_Example_Flow_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Doc_Resources/Media/Images/Wilmer_Example_Flow_2.png -------------------------------------------------------------------------------- /Doc_Resources/Media/Images/Wilmer_Privacy_Claude_Code_2025-10-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Doc_Resources/Media/Images/Wilmer_Privacy_Claude_Code_2025-10-12.png -------------------------------------------------------------------------------- /Doc_Resources/Media/Images/Wilmer_Workflow_Example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Doc_Resources/Media/Images/Wilmer_Workflow_Example.png -------------------------------------------------------------------------------- /Doc_Resources/Media/Images/Wilmer_Workflow_Example_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Doc_Resources/Media/Images/Wilmer_Workflow_Example_2.png -------------------------------------------------------------------------------- /Doc_Resources/Media/Images/Wilmer_Workflow_Example_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Doc_Resources/Media/Images/Wilmer_Workflow_Example_3.png -------------------------------------------------------------------------------- /Doc_Resources/SillyTavern/ContextTemplate/WilmerAI_context_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Doc_Resources/SillyTavern/ContextTemplate/WilmerAI_context_template.json -------------------------------------------------------------------------------- /Doc_Resources/SillyTavern/Group-Chat-Characters/Advisory-Team/CLAIRE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Doc_Resources/SillyTavern/Group-Chat-Characters/Advisory-Team/CLAIRE.png -------------------------------------------------------------------------------- /Doc_Resources/SillyTavern/Group-Chat-Characters/Advisory-Team/Datafinder-Interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Doc_Resources/SillyTavern/Group-Chat-Characters/Advisory-Team/Datafinder-Interface.png -------------------------------------------------------------------------------- /Doc_Resources/SillyTavern/Group-Chat-Characters/Advisory-Team/EVE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Doc_Resources/SillyTavern/Group-Chat-Characters/Advisory-Team/EVE.png -------------------------------------------------------------------------------- /Doc_Resources/SillyTavern/Group-Chat-Characters/Advisory-Team/LEX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Doc_Resources/SillyTavern/Group-Chat-Characters/Advisory-Team/LEX.png -------------------------------------------------------------------------------- /Doc_Resources/SillyTavern/Group-Chat-Characters/Dev-Team/Le-Pi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Doc_Resources/SillyTavern/Group-Chat-Characters/Dev-Team/Le-Pi.png -------------------------------------------------------------------------------- /Doc_Resources/SillyTavern/Group-Chat-Characters/Dev-Team/Mr-Drama-Llama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Doc_Resources/SillyTavern/Group-Chat-Characters/Dev-Team/Mr-Drama-Llama.png -------------------------------------------------------------------------------- /Doc_Resources/SillyTavern/Group-Chat-Characters/Dev-Team/Musical-Minstral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Doc_Resources/SillyTavern/Group-Chat-Characters/Dev-Team/Musical-Minstral.png -------------------------------------------------------------------------------- /Doc_Resources/SillyTavern/InstructTemplate/WilmerAI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Doc_Resources/SillyTavern/InstructTemplate/WilmerAI.json -------------------------------------------------------------------------------- /Docs/Custom_Python_Node_Example_Script/MyTestModule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/Custom_Python_Node_Example_Script/MyTestModule.py -------------------------------------------------------------------------------- /Docs/Custom_Python_Node_Example_Script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/Custom_Python_Node_Example_Script/README.md -------------------------------------------------------------------------------- /Docs/Developer_Docs/Features_And_Packages/Api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/Developer_Docs/Features_And_Packages/Api.md -------------------------------------------------------------------------------- /Docs/Developer_Docs/Features_And_Packages/Custom_Workflows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/Developer_Docs/Features_And_Packages/Custom_Workflows.md -------------------------------------------------------------------------------- /Docs/Developer_Docs/Features_And_Packages/LLM_Apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/Developer_Docs/Features_And_Packages/LLM_Apis.md -------------------------------------------------------------------------------- /Docs/Developer_Docs/Features_And_Packages/LLM_Apis_Remove_Unwanted_Text_From_Llm_Stream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/Developer_Docs/Features_And_Packages/LLM_Apis_Remove_Unwanted_Text_From_Llm_Stream.md -------------------------------------------------------------------------------- /Docs/Developer_Docs/Features_And_Packages/Memories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/Developer_Docs/Features_And_Packages/Memories.md -------------------------------------------------------------------------------- /Docs/Developer_Docs/Features_And_Packages/Unit_Tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/Developer_Docs/Features_And_Packages/Unit_Tests.md -------------------------------------------------------------------------------- /Docs/Developer_Docs/Features_And_Packages/Unit_Tests_LLM_Apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/Developer_Docs/Features_And_Packages/Unit_Tests_LLM_Apis.md -------------------------------------------------------------------------------- /Docs/Developer_Docs/Features_And_Packages/Wilmer_Prompt_Flow_Beginning_To_End.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/Developer_Docs/Features_And_Packages/Wilmer_Prompt_Flow_Beginning_To_End.md -------------------------------------------------------------------------------- /Docs/Developer_Docs/Features_And_Packages/Workflow_Variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/Developer_Docs/Features_And_Packages/Workflow_Variables.md -------------------------------------------------------------------------------- /Docs/Developer_Docs/Features_And_Packages/Workflows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/Developer_Docs/Features_And_Packages/Workflows.md -------------------------------------------------------------------------------- /Docs/Developer_Docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/Developer_Docs/README.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Core_Features/Adaptable_Front_End_Api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Core_Features/Adaptable_Front_End_Api.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Core_Features/Adaptable_LLM_Backend_Apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Core_Features/Adaptable_LLM_Backend_Apis.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Core_Features/Custom_Python_Scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Core_Features/Custom_Python_Scripts.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Core_Features/Memories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Core_Features/Memories.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Core_Features/Nested_Workflows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Core_Features/Nested_Workflows.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Core_Features/Offline_Wikipedia_Support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Core_Features/Offline_Wikipedia_Support.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Core_Features/Prompt_Routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Core_Features/Prompt_Routing.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Core_Features/Prompt_Routing_In_Workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Core_Features/Prompt_Routing_In_Workflow.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Core_Features/TimeStamps_And_Time_Tracking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Core_Features/TimeStamps_And_Time_Tracking.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Core_Features/Workflow_Jinja2_Support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Core_Features/Workflow_Jinja2_Support.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Core_Features/Workflows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Core_Features/Workflows.md -------------------------------------------------------------------------------- /Docs/User_Documentation/LLM_Assisted_Setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/LLM_Assisted_Setup.md -------------------------------------------------------------------------------- /Docs/User_Documentation/LLM_Assisted_Workflow_Generation/Default_Endpoints_And_Presets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/LLM_Assisted_Workflow_Generation/Default_Endpoints_And_Presets.md -------------------------------------------------------------------------------- /Docs/User_Documentation/LLM_Assisted_Workflow_Generation/Example_Guide_Wikipedia_Search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/LLM_Assisted_Workflow_Generation/Example_Guide_Wikipedia_Search.md -------------------------------------------------------------------------------- /Docs/User_Documentation/LLM_Assisted_Workflow_Generation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/LLM_Assisted_Workflow_Generation/README.md -------------------------------------------------------------------------------- /Docs/User_Documentation/LLM_Assisted_Workflow_Generation/Recursive_Workflows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/LLM_Assisted_Workflow_Generation/Recursive_Workflows.md -------------------------------------------------------------------------------- /Docs/User_Documentation/LLM_Assisted_Workflow_Generation/Workflow_Prompting_Methodologies_Socg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/LLM_Assisted_Workflow_Generation/Workflow_Prompting_Methodologies_Socg.md -------------------------------------------------------------------------------- /Docs/User_Documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/README.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/Configuration_Files/ApiType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/Configuration_Files/ApiType.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/Configuration_Files/Endpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/Configuration_Files/Endpoint.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/Configuration_Files/Preset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/Configuration_Files/Preset.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/Configuration_Files/PromptTemplates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/Configuration_Files/PromptTemplates.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/Configuration_Files/Routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/Configuration_Files/Routing.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/Configuration_Files/User.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/Configuration_Files/User.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/Open-WebUI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/Open-WebUI.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/SillyTavern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/SillyTavern.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/Workflow_Details/Nodes/Arithmetic_Processor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/Workflow_Details/Nodes/Arithmetic_Processor.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/Workflow_Details/Nodes/Conditional.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/Workflow_Details/Nodes/Conditional.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/Workflow_Details/Nodes/ConditionalCustomWorkflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/Workflow_Details/Nodes/ConditionalCustomWorkflow.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/Workflow_Details/Nodes/CustomWorkflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/Workflow_Details/Nodes/CustomWorkflow.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/Workflow_Details/Nodes/GetCustomFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/Workflow_Details/Nodes/GetCustomFile.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/Workflow_Details/Nodes/Image_Processor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/Workflow_Details/Nodes/Image_Processor.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/Workflow_Details/Nodes/Memory_Nodes/ChatSummarySummarizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/Workflow_Details/Nodes/Memory_Nodes/ChatSummarySummarizer.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/Workflow_Details/Nodes/Memory_Nodes/FullChatSummary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/Workflow_Details/Nodes/Memory_Nodes/FullChatSummary.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/Workflow_Details/Nodes/Memory_Nodes/GetCurrentSummaryFromFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/Workflow_Details/Nodes/Memory_Nodes/GetCurrentSummaryFromFile.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/Workflow_Details/Nodes/Memory_Nodes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/Workflow_Details/Nodes/Memory_Nodes/README.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/Workflow_Details/Nodes/Memory_Nodes/RecentMemory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/Workflow_Details/Nodes/Memory_Nodes/RecentMemory.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/Workflow_Details/Nodes/Memory_Nodes/RecentMemorySummarizerTool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/Workflow_Details/Nodes/Memory_Nodes/RecentMemorySummarizerTool.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/Workflow_Details/Nodes/Memory_Nodes/VectorMemorySearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/Workflow_Details/Nodes/Memory_Nodes/VectorMemorySearch.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/Workflow_Details/Nodes/Memory_Nodes/Vector_QualityMemory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/Workflow_Details/Nodes/Memory_Nodes/Vector_QualityMemory.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/Workflow_Details/Nodes/Offline_Wikipedia.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/Workflow_Details/Nodes/Offline_Wikipedia.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/Workflow_Details/Nodes/PythonModule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/Workflow_Details/Nodes/PythonModule.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/Workflow_Details/Nodes/SaveCustomFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/Workflow_Details/Nodes/SaveCustomFile.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/Workflow_Details/Nodes/Standard_Conversational.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/Workflow_Details/Nodes/Standard_Conversational.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/Workflow_Details/Nodes/StaticResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/Workflow_Details/Nodes/StaticResponse.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/Workflow_Details/Nodes/String_Concatenator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/Workflow_Details/Nodes/String_Concatenator.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/Workflow_Details/Nodes/WorkflowLock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/Workflow_Details/Nodes/WorkflowLock.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/Workflow_Details/Workflow_Features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/Workflow_Details/Workflow_Features.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/Workflow_Details/Workflow_Nodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/Workflow_Details/Workflow_Nodes.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/Workflow_Details/Workflow_Nodes_Memories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/Workflow_Details/Workflow_Nodes_Memories.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/Workflow_Details/Workflow_Variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/Workflow_Details/Workflow_Variables.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/Workflow_Details/Workflows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/Workflow_Details/Workflows.md -------------------------------------------------------------------------------- /Docs/User_Documentation/Setup/_Getting-Start_Wilmer-Api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Docs/User_Documentation/Setup/_Getting-Start_Wilmer-Api.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/LICENSE -------------------------------------------------------------------------------- /Middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Middleware/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Middleware/api/api_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/api/api_helpers.py -------------------------------------------------------------------------------- /Middleware/api/api_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/api/api_server.py -------------------------------------------------------------------------------- /Middleware/api/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/api/app.py -------------------------------------------------------------------------------- /Middleware/api/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Middleware/api/handlers/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Middleware/api/handlers/base/base_api_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/api/handlers/base/base_api_handler.py -------------------------------------------------------------------------------- /Middleware/api/handlers/impl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Middleware/api/handlers/impl/ollama_api_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/api/handlers/impl/ollama_api_handler.py -------------------------------------------------------------------------------- /Middleware/api/handlers/impl/openai_api_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/api/handlers/impl/openai_api_handler.py -------------------------------------------------------------------------------- /Middleware/api/workflow_gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/api/workflow_gateway.py -------------------------------------------------------------------------------- /Middleware/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Middleware/common/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/common/constants.py -------------------------------------------------------------------------------- /Middleware/common/instance_global_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/common/instance_global_variables.py -------------------------------------------------------------------------------- /Middleware/exceptions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Middleware/exceptions/early_termination_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/exceptions/early_termination_exception.py -------------------------------------------------------------------------------- /Middleware/llmapis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Middleware/llmapis/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Middleware/llmapis/handlers/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Middleware/llmapis/handlers/base/base_chat_completions_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/llmapis/handlers/base/base_chat_completions_handler.py -------------------------------------------------------------------------------- /Middleware/llmapis/handlers/base/base_completions_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/llmapis/handlers/base/base_completions_handler.py -------------------------------------------------------------------------------- /Middleware/llmapis/handlers/base/base_llm_api_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/llmapis/handlers/base/base_llm_api_handler.py -------------------------------------------------------------------------------- /Middleware/llmapis/handlers/impl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Middleware/llmapis/handlers/impl/claude_api_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/llmapis/handlers/impl/claude_api_handler.py -------------------------------------------------------------------------------- /Middleware/llmapis/handlers/impl/koboldcpp_api_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/llmapis/handlers/impl/koboldcpp_api_handler.py -------------------------------------------------------------------------------- /Middleware/llmapis/handlers/impl/koboldcpp_api_image_specific_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/llmapis/handlers/impl/koboldcpp_api_image_specific_handler.py -------------------------------------------------------------------------------- /Middleware/llmapis/handlers/impl/ollama_chat_api_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/llmapis/handlers/impl/ollama_chat_api_handler.py -------------------------------------------------------------------------------- /Middleware/llmapis/handlers/impl/ollama_chat_api_image_specific_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/llmapis/handlers/impl/ollama_chat_api_image_specific_handler.py -------------------------------------------------------------------------------- /Middleware/llmapis/handlers/impl/ollama_generate_api_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/llmapis/handlers/impl/ollama_generate_api_handler.py -------------------------------------------------------------------------------- /Middleware/llmapis/handlers/impl/openai_api_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/llmapis/handlers/impl/openai_api_handler.py -------------------------------------------------------------------------------- /Middleware/llmapis/handlers/impl/openai_chat_api_image_specific_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/llmapis/handlers/impl/openai_chat_api_image_specific_handler.py -------------------------------------------------------------------------------- /Middleware/llmapis/handlers/impl/openai_completions_api_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/llmapis/handlers/impl/openai_completions_api_handler.py -------------------------------------------------------------------------------- /Middleware/llmapis/llm_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/llmapis/llm_api.py -------------------------------------------------------------------------------- /Middleware/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Middleware/models/llm_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/models/llm_handler.py -------------------------------------------------------------------------------- /Middleware/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Middleware/services/cancellation_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/services/cancellation_service.py -------------------------------------------------------------------------------- /Middleware/services/llm_dispatch_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/services/llm_dispatch_service.py -------------------------------------------------------------------------------- /Middleware/services/llm_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/services/llm_service.py -------------------------------------------------------------------------------- /Middleware/services/locking_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/services/locking_service.py -------------------------------------------------------------------------------- /Middleware/services/memory_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/services/memory_service.py -------------------------------------------------------------------------------- /Middleware/services/prompt_categorization_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/services/prompt_categorization_service.py -------------------------------------------------------------------------------- /Middleware/services/response_builder_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/services/response_builder_service.py -------------------------------------------------------------------------------- /Middleware/services/timestamp_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/services/timestamp_service.py -------------------------------------------------------------------------------- /Middleware/utilities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Middleware/utilities/config_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/utilities/config_utils.py -------------------------------------------------------------------------------- /Middleware/utilities/datetime_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/utilities/datetime_utils.py -------------------------------------------------------------------------------- /Middleware/utilities/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/utilities/file_utils.py -------------------------------------------------------------------------------- /Middleware/utilities/hashing_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/utilities/hashing_utils.py -------------------------------------------------------------------------------- /Middleware/utilities/prompt_extraction_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/utilities/prompt_extraction_utils.py -------------------------------------------------------------------------------- /Middleware/utilities/prompt_manipulation_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/utilities/prompt_manipulation_utils.py -------------------------------------------------------------------------------- /Middleware/utilities/prompt_template_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/utilities/prompt_template_utils.py -------------------------------------------------------------------------------- /Middleware/utilities/search_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/utilities/search_utils.py -------------------------------------------------------------------------------- /Middleware/utilities/streaming_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/utilities/streaming_utils.py -------------------------------------------------------------------------------- /Middleware/utilities/text_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/utilities/text_utils.py -------------------------------------------------------------------------------- /Middleware/utilities/vector_db_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/utilities/vector_db_utils.py -------------------------------------------------------------------------------- /Middleware/workflows/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Middleware/workflows/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Middleware/workflows/handlers/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Middleware/workflows/handlers/base/base_workflow_node_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/workflows/handlers/base/base_workflow_node_handler.py -------------------------------------------------------------------------------- /Middleware/workflows/handlers/impl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Middleware/workflows/handlers/impl/memory_node_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/workflows/handlers/impl/memory_node_handler.py -------------------------------------------------------------------------------- /Middleware/workflows/handlers/impl/specialized_node_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/workflows/handlers/impl/specialized_node_handler.py -------------------------------------------------------------------------------- /Middleware/workflows/handlers/impl/standard_node_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/workflows/handlers/impl/standard_node_handler.py -------------------------------------------------------------------------------- /Middleware/workflows/handlers/impl/sub_workflow_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/workflows/handlers/impl/sub_workflow_handler.py -------------------------------------------------------------------------------- /Middleware/workflows/handlers/impl/tool_node_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/workflows/handlers/impl/tool_node_handler.py -------------------------------------------------------------------------------- /Middleware/workflows/managers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Middleware/workflows/managers/workflow_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/workflows/managers/workflow_manager.py -------------------------------------------------------------------------------- /Middleware/workflows/managers/workflow_variable_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/workflows/managers/workflow_variable_manager.py -------------------------------------------------------------------------------- /Middleware/workflows/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Middleware/workflows/models/execution_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/workflows/models/execution_context.py -------------------------------------------------------------------------------- /Middleware/workflows/processors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Middleware/workflows/processors/workflows_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/workflows/processors/workflows_processor.py -------------------------------------------------------------------------------- /Middleware/workflows/streaming/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Middleware/workflows/streaming/response_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/workflows/streaming/response_handler.py -------------------------------------------------------------------------------- /Middleware/workflows/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Middleware/workflows/tools/dynamic_module_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/workflows/tools/dynamic_module_loader.py -------------------------------------------------------------------------------- /Middleware/workflows/tools/offline_wikipedia_api_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/workflows/tools/offline_wikipedia_api_tool.py -------------------------------------------------------------------------------- /Middleware/workflows/tools/parallel_llm_processing_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/workflows/tools/parallel_llm_processing_tool.py -------------------------------------------------------------------------------- /Middleware/workflows/tools/slow_but_quality_rag_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Middleware/workflows/tools/slow_but_quality_rag_tool.py -------------------------------------------------------------------------------- /Public/Configs/ApiTypes/Claude.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/ApiTypes/Claude.json -------------------------------------------------------------------------------- /Public/Configs/ApiTypes/KoboldCpp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/ApiTypes/KoboldCpp.json -------------------------------------------------------------------------------- /Public/Configs/ApiTypes/KoboldCppImageSpecific.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/ApiTypes/KoboldCppImageSpecific.json -------------------------------------------------------------------------------- /Public/Configs/ApiTypes/LlamaCppServer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/ApiTypes/LlamaCppServer.json -------------------------------------------------------------------------------- /Public/Configs/ApiTypes/OllamaApiChat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/ApiTypes/OllamaApiChat.json -------------------------------------------------------------------------------- /Public/Configs/ApiTypes/OllamaApiChatImageSpecific.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/ApiTypes/OllamaApiChatImageSpecific.json -------------------------------------------------------------------------------- /Public/Configs/ApiTypes/OllamaApiGenerate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/ApiTypes/OllamaApiGenerate.json -------------------------------------------------------------------------------- /Public/Configs/ApiTypes/Open-AI-API.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/ApiTypes/Open-AI-API.json -------------------------------------------------------------------------------- /Public/Configs/ApiTypes/OpenAI-Compatible-Completions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/ApiTypes/OpenAI-Compatible-Completions.json -------------------------------------------------------------------------------- /Public/Configs/ApiTypes/OpenAIApiChatImageSpecific.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/ApiTypes/OpenAIApiChatImageSpecific.json -------------------------------------------------------------------------------- /Public/Configs/ApiTypes/Text-Generation-WebUI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/ApiTypes/Text-Generation-WebUI.json -------------------------------------------------------------------------------- /Public/Configs/ApiTypes/mlx-lm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/ApiTypes/mlx-lm.json -------------------------------------------------------------------------------- /Public/Configs/Endpoints/DefaultEndpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Endpoints/DefaultEndpoint.json -------------------------------------------------------------------------------- /Public/Configs/Endpoints/_archived/assistant-multi-model/Assistant-Multi-Model-Math-Endpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Endpoints/_archived/assistant-multi-model/Assistant-Multi-Model-Math-Endpoint.json -------------------------------------------------------------------------------- /Public/Configs/Endpoints/_archived/assistant-single-model/Assistant-Single-Model-Endpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Endpoints/_archived/assistant-single-model/Assistant-Single-Model-Endpoint.json -------------------------------------------------------------------------------- /Public/Configs/Endpoints/_archived/group-chat-example/Group-Chat-Example-ChatGPT4o-Endpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Endpoints/_archived/group-chat-example/Group-Chat-Example-ChatGPT4o-Endpoint.json -------------------------------------------------------------------------------- /Public/Configs/Endpoints/_archived/group-chat-example/Group-Chat-Example-Claire-Endpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Endpoints/_archived/group-chat-example/Group-Chat-Example-Claire-Endpoint.json -------------------------------------------------------------------------------- /Public/Configs/Endpoints/_archived/group-chat-example/Group-Chat-Example-Datafinder-Endpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Endpoints/_archived/group-chat-example/Group-Chat-Example-Datafinder-Endpoint.json -------------------------------------------------------------------------------- /Public/Configs/Endpoints/_archived/group-chat-example/Group-Chat-Example-Eve-Endpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Endpoints/_archived/group-chat-example/Group-Chat-Example-Eve-Endpoint.json -------------------------------------------------------------------------------- /Public/Configs/Endpoints/_archived/group-chat-example/Group-Chat-Example-LePi-Endpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Endpoints/_archived/group-chat-example/Group-Chat-Example-LePi-Endpoint.json -------------------------------------------------------------------------------- /Public/Configs/Endpoints/_archived/group-chat-example/Group-Chat-Example-Lex-Endpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Endpoints/_archived/group-chat-example/Group-Chat-Example-Lex-Endpoint.json -------------------------------------------------------------------------------- /Public/Configs/Endpoints/_archived/openai-vision-endpoint/Image-Endpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Endpoints/_archived/openai-vision-endpoint/Image-Endpoint.json -------------------------------------------------------------------------------- /Public/Configs/Endpoints/_example-endpoints/chatgpt-4o-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Endpoints/_example-endpoints/chatgpt-4o-example.json -------------------------------------------------------------------------------- /Public/Configs/Endpoints/_example-endpoints/claude-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Endpoints/_example-endpoints/claude-example.json -------------------------------------------------------------------------------- /Public/Configs/Endpoints/_example-endpoints/koboldcpp_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Endpoints/_example-endpoints/koboldcpp_example.json -------------------------------------------------------------------------------- /Public/Configs/Endpoints/_example-endpoints/llama-cpp-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Endpoints/_example-endpoints/llama-cpp-server.json -------------------------------------------------------------------------------- /Public/Configs/Endpoints/_example-endpoints/ollama-api-chat-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Endpoints/_example-endpoints/ollama-api-chat-example.json -------------------------------------------------------------------------------- /Public/Configs/Endpoints/_example-endpoints/ollama-api-generate-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Endpoints/_example-endpoints/ollama-api-generate-example.json -------------------------------------------------------------------------------- /Public/Configs/Endpoints/_example-endpoints/specific_examples/Qwen3-32b-No-Think-LlamaCpp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Endpoints/_example-endpoints/specific_examples/Qwen3-32b-No-Think-LlamaCpp.json -------------------------------------------------------------------------------- /Public/Configs/Endpoints/_example-endpoints/text-generation-webui-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Endpoints/_example-endpoints/text-generation-webui-example.json -------------------------------------------------------------------------------- /Public/Configs/Endpoints/_example_users/Coding-Endpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Endpoints/_example_users/Coding-Endpoint.json -------------------------------------------------------------------------------- /Public/Configs/Endpoints/_example_users/Coding-Fast-Endpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Endpoints/_example_users/Coding-Fast-Endpoint.json -------------------------------------------------------------------------------- /Public/Configs/Endpoints/_example_users/General-Endpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Endpoints/_example_users/General-Endpoint.json -------------------------------------------------------------------------------- /Public/Configs/Endpoints/_example_users/General-Fast-Endpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Endpoints/_example_users/General-Fast-Endpoint.json -------------------------------------------------------------------------------- /Public/Configs/Endpoints/_example_users/General-Rag-Endpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Endpoints/_example_users/General-Rag-Endpoint.json -------------------------------------------------------------------------------- /Public/Configs/Endpoints/_example_users/General-Rag-Fast-Endpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Endpoints/_example_users/General-Rag-Fast-Endpoint.json -------------------------------------------------------------------------------- /Public/Configs/Endpoints/_example_users/General-Reasoning-Endpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Endpoints/_example_users/General-Reasoning-Endpoint.json -------------------------------------------------------------------------------- /Public/Configs/Endpoints/_example_users/Image-Endpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Endpoints/_example_users/Image-Endpoint.json -------------------------------------------------------------------------------- /Public/Configs/Endpoints/_example_users/Memory-Generation-Endpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Endpoints/_example_users/Memory-Generation-Endpoint.json -------------------------------------------------------------------------------- /Public/Configs/Endpoints/_example_users/Responder-Endpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Endpoints/_example_users/Responder-Endpoint.json -------------------------------------------------------------------------------- /Public/Configs/Endpoints/_example_users/Thinker-Endpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Endpoints/_example_users/Thinker-Endpoint.json -------------------------------------------------------------------------------- /Public/Configs/Endpoints/_example_users/Worker-Endpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Endpoints/_example_users/Worker-Endpoint.json -------------------------------------------------------------------------------- /Public/Configs/Endpoints/isevendays-openwebui-norouting-general-offline-mcp/Worker-Endpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Endpoints/isevendays-openwebui-norouting-general-offline-mcp/Worker-Endpoint.json -------------------------------------------------------------------------------- /Public/Configs/Presets/ClaudeMessages/_Available_Presets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/ClaudeMessages/_Available_Presets.json -------------------------------------------------------------------------------- /Public/Configs/Presets/ClaudeMessages/_example_users/Coder_Preset.json: -------------------------------------------------------------------------------- 1 | { 2 | "temperature": 0.3 3 | } 4 | -------------------------------------------------------------------------------- /Public/Configs/Presets/ClaudeMessages/_example_users/Factual_Preset.json: -------------------------------------------------------------------------------- 1 | { 2 | "temperature": 0.3 3 | } 4 | -------------------------------------------------------------------------------- /Public/Configs/Presets/ClaudeMessages/_example_users/Image_Preset.json: -------------------------------------------------------------------------------- 1 | { 2 | "temperature": 0.3 3 | } 4 | -------------------------------------------------------------------------------- /Public/Configs/Presets/ClaudeMessages/_example_users/Reasoning_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/ClaudeMessages/_example_users/Reasoning_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/ClaudeMessages/_example_users/Responder_Preset.json: -------------------------------------------------------------------------------- 1 | { 2 | "temperature": 0.3 3 | } 4 | -------------------------------------------------------------------------------- /Public/Configs/Presets/ClaudeMessages/_example_users/Summarization_Preset.json: -------------------------------------------------------------------------------- 1 | { 2 | "temperature": 0.3 3 | } 4 | -------------------------------------------------------------------------------- /Public/Configs/Presets/ClaudeMessages/_example_users/Thinker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/ClaudeMessages/_example_users/Thinker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/ClaudeMessages/_example_users/Worker_LowTemp_Preset.json: -------------------------------------------------------------------------------- 1 | { 2 | "temperature": 0.15 3 | } 4 | -------------------------------------------------------------------------------- /Public/Configs/Presets/ClaudeMessages/_example_users/Worker_Preset.json: -------------------------------------------------------------------------------- 1 | { 2 | "temperature": 0.3 3 | } 4 | -------------------------------------------------------------------------------- /Public/Configs/Presets/ClaudeMessages/isevendays-openwebui-norouting-general-offline-mcp/Responder_Preset.json: -------------------------------------------------------------------------------- 1 | { 2 | "temperature": 0.3 3 | } 4 | -------------------------------------------------------------------------------- /Public/Configs/Presets/ClaudeMessages/isevendays-openwebui-norouting-general-offline-mcp/Worker_Preset.json: -------------------------------------------------------------------------------- 1 | { 2 | "temperature": 0.3 3 | } 4 | -------------------------------------------------------------------------------- /Public/Configs/Presets/KoboldCpp/_example_users/Coder_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/KoboldCpp/_example_users/Coder_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/KoboldCpp/_example_users/Factual_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/KoboldCpp/_example_users/Factual_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/KoboldCpp/_example_users/Image_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/KoboldCpp/_example_users/Image_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/KoboldCpp/_example_users/Reasoning_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/KoboldCpp/_example_users/Reasoning_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/KoboldCpp/_example_users/Responder_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/KoboldCpp/_example_users/Responder_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/KoboldCpp/_example_users/Summarization_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/KoboldCpp/_example_users/Summarization_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/KoboldCpp/_example_users/Thinker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/KoboldCpp/_example_users/Thinker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/KoboldCpp/_example_users/Worker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/KoboldCpp/_example_users/Worker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/OllamaApiChat/_example_users/Coder_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/OllamaApiChat/_example_users/Coder_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/OllamaApiChat/_example_users/Factual_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/OllamaApiChat/_example_users/Factual_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/OllamaApiChat/_example_users/Image_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/OllamaApiChat/_example_users/Image_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/OllamaApiChat/_example_users/Reasoning_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/OllamaApiChat/_example_users/Reasoning_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/OllamaApiChat/_example_users/Responder_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/OllamaApiChat/_example_users/Responder_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/OllamaApiChat/_example_users/Summarization_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/OllamaApiChat/_example_users/Summarization_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/OllamaApiChat/_example_users/Thinker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/OllamaApiChat/_example_users/Thinker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/OllamaApiChat/_example_users/Worker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/OllamaApiChat/_example_users/Worker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/OllamaApiGenerate/_example_users/Coder_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/OllamaApiGenerate/_example_users/Coder_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/OllamaApiGenerate/_example_users/Factual_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/OllamaApiGenerate/_example_users/Factual_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/OllamaApiGenerate/_example_users/Image_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/OllamaApiGenerate/_example_users/Image_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/OllamaApiGenerate/_example_users/Reasoning_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/OllamaApiGenerate/_example_users/Reasoning_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/OllamaApiGenerate/_example_users/Responder_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/OllamaApiGenerate/_example_users/Responder_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/OllamaApiGenerate/_example_users/Summarization_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/OllamaApiGenerate/_example_users/Summarization_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/OllamaApiGenerate/_example_users/Thinker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/OllamaApiGenerate/_example_users/Thinker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/OllamaApiGenerate/_example_users/Worker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/OllamaApiGenerate/_example_users/Worker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/OpenAiCompatibleApis/_example_users/Coder_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/OpenAiCompatibleApis/_example_users/Coder_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/OpenAiCompatibleApis/_example_users/Factual_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/OpenAiCompatibleApis/_example_users/Factual_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/OpenAiCompatibleApis/_example_users/Image_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/OpenAiCompatibleApis/_example_users/Image_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/OpenAiCompatibleApis/_example_users/Reasoning_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/OpenAiCompatibleApis/_example_users/Reasoning_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/OpenAiCompatibleApis/_example_users/Responder_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/OpenAiCompatibleApis/_example_users/Responder_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/OpenAiCompatibleApis/_example_users/Summarization_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/OpenAiCompatibleApis/_example_users/Summarization_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/OpenAiCompatibleApis/_example_users/Thinker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/OpenAiCompatibleApis/_example_users/Thinker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/OpenAiCompatibleApis/_example_users/Worker_LowTemp_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/OpenAiCompatibleApis/_example_users/Worker_LowTemp_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/OpenAiCompatibleApis/_example_users/Worker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/OpenAiCompatibleApis/_example_users/Worker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/Text-Generation-WebUI/_example_users/Coder_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/Text-Generation-WebUI/_example_users/Coder_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/Text-Generation-WebUI/_example_users/Factual_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/Text-Generation-WebUI/_example_users/Factual_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/Text-Generation-WebUI/_example_users/Image_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/Text-Generation-WebUI/_example_users/Image_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/Text-Generation-WebUI/_example_users/Reasoning_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/Text-Generation-WebUI/_example_users/Reasoning_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/Text-Generation-WebUI/_example_users/Responder_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/Text-Generation-WebUI/_example_users/Responder_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/Text-Generation-WebUI/_example_users/Summarization_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/Text-Generation-WebUI/_example_users/Summarization_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/Text-Generation-WebUI/_example_users/Thinker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/Text-Generation-WebUI/_example_users/Thinker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/Text-Generation-WebUI/_example_users/Worker_LowTemp_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/Text-Generation-WebUI/_example_users/Worker_LowTemp_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/Text-Generation-WebUI/_example_users/Worker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/Text-Generation-WebUI/_example_users/Worker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/Almost_Deterministic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/Almost_Deterministic.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/Coding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/Coding.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/Default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/Default.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/Min-P.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/Min-P.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/assistant-multi-model/Categorizer_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/assistant-multi-model/Categorizer_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/assistant-multi-model/Coder_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/assistant-multi-model/Coder_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/assistant-multi-model/Conversational_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/assistant-multi-model/Conversational_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/assistant-multi-model/Factual_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/assistant-multi-model/Factual_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/assistant-multi-model/Math_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/assistant-multi-model/Math_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/assistant-multi-model/MemoryChatSummary_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/assistant-multi-model/MemoryChatSummary_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/assistant-multi-model/Reasoning_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/assistant-multi-model/Reasoning_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/assistant-multi-model/Technical_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/assistant-multi-model/Technical_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/assistant-multi-model/Worker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/assistant-multi-model/Worker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/assistant-single-model/Categorizer_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/assistant-single-model/Categorizer_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/assistant-single-model/Coder_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/assistant-single-model/Coder_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/assistant-single-model/Conversational_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/assistant-single-model/Conversational_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/assistant-single-model/Factual_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/assistant-single-model/Factual_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/assistant-single-model/Math_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/assistant-single-model/Math_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/assistant-single-model/MemoryChatSummary_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/assistant-single-model/MemoryChatSummary_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/assistant-single-model/Reasoning_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/assistant-single-model/Reasoning_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/assistant-single-model/Technical_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/assistant-single-model/Technical_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/assistant-single-model/Worker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/assistant-single-model/Worker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/convo-roleplay-dual-model/Responder_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/convo-roleplay-dual-model/Responder_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/convo-roleplay-dual-model/Summarization_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/convo-roleplay-dual-model/Summarization_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/convo-roleplay-dual-model/Worker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/convo-roleplay-dual-model/Worker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/convo-roleplay-single-model/Responder_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/convo-roleplay-single-model/Responder_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/convo-roleplay-single-model/Summarization_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/convo-roleplay-single-model/Summarization_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/convo-roleplay-single-model/Worker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/convo-roleplay-single-model/Worker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/group-chat-example/BusinessGroup_Speaker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/group-chat-example/BusinessGroup_Speaker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/group-chat-example/Categorization_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/group-chat-example/Categorization_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/group-chat-example/Claire_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/group-chat-example/Claire_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/group-chat-example/Datafinder_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/group-chat-example/Datafinder_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/group-chat-example/Eve_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/group-chat-example/Eve_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/group-chat-example/LePi_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/group-chat-example/LePi_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/group-chat-example/Lex_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/group-chat-example/Lex_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/group-chat-example/MrDramaLlama_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/group-chat-example/MrDramaLlama_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/group-chat-example/MusicalMinstral_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/group-chat-example/MusicalMinstral_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/openwebui-norouting-dual-model/Responder_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/openwebui-norouting-dual-model/Responder_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/openwebui-norouting-dual-model/Worker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/openwebui-norouting-dual-model/Worker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/openwebui-norouting-single-model/Responder_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/openwebui-norouting-single-model/Responder_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/openwebui-norouting-single-model/Worker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/openwebui-norouting-single-model/Worker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/openwebui-routing-multi-model/Categorizer_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/openwebui-routing-multi-model/Categorizer_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/openwebui-routing-multi-model/Coder_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/openwebui-routing-multi-model/Coder_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/openwebui-routing-multi-model/Factual_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/openwebui-routing-multi-model/Factual_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/openwebui-routing-multi-model/Math_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/openwebui-routing-multi-model/Math_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/openwebui-routing-multi-model/Reasoning_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/openwebui-routing-multi-model/Reasoning_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/openwebui-routing-multi-model/Technical_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/openwebui-routing-multi-model/Technical_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/openwebui-routing-multi-model/Worker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/openwebui-routing-multi-model/Worker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/openwebui-routing-single-model/Categorizer_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/openwebui-routing-single-model/Categorizer_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/openwebui-routing-single-model/Coder_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/openwebui-routing-single-model/Coder_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/openwebui-routing-single-model/Factual_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/openwebui-routing-single-model/Factual_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/openwebui-routing-single-model/Math_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/openwebui-routing-single-model/Math_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/openwebui-routing-single-model/Reasoning_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/openwebui-routing-single-model/Reasoning_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/openwebui-routing-single-model/Technical_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/openwebui-routing-single-model/Technical_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/KoboldCpp/openwebui-routing-single-model/Worker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/KoboldCpp/openwebui-routing-single-model/Worker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/Almost_Deterministic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/Almost_Deterministic.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/Coding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/Coding.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/Default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/Default.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/Min-P.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/Min-P.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/__Preset_With_Model_Load_Options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/__Preset_With_Model_Load_Options.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/assistant-multi-model/Categorizer_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/assistant-multi-model/Categorizer_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/assistant-multi-model/Coder_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/assistant-multi-model/Coder_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/assistant-multi-model/Conversational_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/assistant-multi-model/Conversational_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/assistant-multi-model/Factual_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/assistant-multi-model/Factual_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/assistant-multi-model/Math_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/assistant-multi-model/Math_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/assistant-multi-model/Reasoning_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/assistant-multi-model/Reasoning_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/assistant-multi-model/Technical_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/assistant-multi-model/Technical_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/assistant-multi-model/Worker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/assistant-multi-model/Worker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/assistant-single-model/Categorizer_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/assistant-single-model/Categorizer_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/assistant-single-model/Coder_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/assistant-single-model/Coder_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/assistant-single-model/Conversational_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/assistant-single-model/Conversational_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/assistant-single-model/Factual_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/assistant-single-model/Factual_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/assistant-single-model/Math_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/assistant-single-model/Math_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/assistant-single-model/Reasoning_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/assistant-single-model/Reasoning_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/assistant-single-model/Technical_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/assistant-single-model/Technical_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/assistant-single-model/Worker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/assistant-single-model/Worker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/convo-roleplay-dual-model/Responder_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/convo-roleplay-dual-model/Responder_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/convo-roleplay-dual-model/Worker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/convo-roleplay-dual-model/Worker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/convo-roleplay-single-model/Responder_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/convo-roleplay-single-model/Responder_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/convo-roleplay-single-model/Worker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/convo-roleplay-single-model/Worker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/group-chat-example/Categorization_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/group-chat-example/Categorization_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/group-chat-example/Claire_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/group-chat-example/Claire_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/group-chat-example/Datafinder_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/group-chat-example/Datafinder_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/group-chat-example/Eve_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/group-chat-example/Eve_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/group-chat-example/LePi_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/group-chat-example/LePi_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/group-chat-example/Lex_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/group-chat-example/Lex_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/group-chat-example/MrDramaLlama_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/group-chat-example/MrDramaLlama_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/group-chat-example/MusicalMinstral_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/group-chat-example/MusicalMinstral_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/openwebui-norouting-dual-model/Worker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/openwebui-norouting-dual-model/Worker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/openwebui-routing-multi-model/Coder_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/openwebui-routing-multi-model/Coder_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/openwebui-routing-multi-model/Factual_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/openwebui-routing-multi-model/Factual_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/openwebui-routing-multi-model/Math_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/openwebui-routing-multi-model/Math_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/openwebui-routing-multi-model/Worker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/openwebui-routing-multi-model/Worker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/openwebui-routing-single-model/Coder_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/openwebui-routing-single-model/Coder_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/openwebui-routing-single-model/Factual_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/openwebui-routing-single-model/Factual_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/openwebui-routing-single-model/Math_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/openwebui-routing-single-model/Math_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiChat/openwebui-routing-single-model/Worker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiChat/openwebui-routing-single-model/Worker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiGenerate/Almost_Deterministic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiGenerate/Almost_Deterministic.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiGenerate/Coding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiGenerate/Coding.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiGenerate/Default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiGenerate/Default.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiGenerate/Min-P.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiGenerate/Min-P.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiGenerate/__Preset_With_Model_Load_Options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiGenerate/__Preset_With_Model_Load_Options.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiGenerate/assistant-multi-model/Categorizer_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiGenerate/assistant-multi-model/Categorizer_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiGenerate/assistant-multi-model/Coder_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiGenerate/assistant-multi-model/Coder_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiGenerate/assistant-multi-model/Factual_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiGenerate/assistant-multi-model/Factual_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiGenerate/assistant-multi-model/Math_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiGenerate/assistant-multi-model/Math_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiGenerate/assistant-multi-model/Reasoning_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiGenerate/assistant-multi-model/Reasoning_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiGenerate/assistant-multi-model/Technical_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiGenerate/assistant-multi-model/Technical_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiGenerate/assistant-multi-model/Worker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiGenerate/assistant-multi-model/Worker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiGenerate/assistant-single-model/Categorizer_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiGenerate/assistant-single-model/Categorizer_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiGenerate/assistant-single-model/Coder_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiGenerate/assistant-single-model/Coder_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiGenerate/assistant-single-model/Factual_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiGenerate/assistant-single-model/Factual_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiGenerate/assistant-single-model/Math_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiGenerate/assistant-single-model/Math_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiGenerate/assistant-single-model/Reasoning_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiGenerate/assistant-single-model/Reasoning_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiGenerate/assistant-single-model/Technical_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiGenerate/assistant-single-model/Technical_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiGenerate/assistant-single-model/Worker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiGenerate/assistant-single-model/Worker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiGenerate/convo-roleplay-dual-model/Worker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiGenerate/convo-roleplay-dual-model/Worker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiGenerate/convo-roleplay-single-model/Worker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiGenerate/convo-roleplay-single-model/Worker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiGenerate/group-chat-example/Categorization_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiGenerate/group-chat-example/Categorization_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiGenerate/group-chat-example/Claire_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiGenerate/group-chat-example/Claire_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiGenerate/group-chat-example/Datafinder_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiGenerate/group-chat-example/Datafinder_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiGenerate/group-chat-example/Eve_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiGenerate/group-chat-example/Eve_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiGenerate/group-chat-example/LePi_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiGenerate/group-chat-example/LePi_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiGenerate/group-chat-example/Lex_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiGenerate/group-chat-example/Lex_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiGenerate/group-chat-example/MrDramaLlama_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiGenerate/group-chat-example/MrDramaLlama_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiGenerate/group-chat-example/MusicalMinstral_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiGenerate/group-chat-example/MusicalMinstral_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OllamaApiGenerate/openwebui-routing-multi-model/Math_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OllamaApiGenerate/openwebui-routing-multi-model/Math_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OpenAiCompatibleApis/Almost_Deterministic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OpenAiCompatibleApis/Almost_Deterministic.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OpenAiCompatibleApis/Coding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OpenAiCompatibleApis/Coding.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OpenAiCompatibleApis/Default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OpenAiCompatibleApis/Default.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OpenAiCompatibleApis/OpenAI-API.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OpenAiCompatibleApis/OpenAI-API.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OpenAiCompatibleApis/assistant-multi-model/Coder_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OpenAiCompatibleApis/assistant-multi-model/Coder_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OpenAiCompatibleApis/assistant-multi-model/Factual_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OpenAiCompatibleApis/assistant-multi-model/Factual_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OpenAiCompatibleApis/assistant-multi-model/Math_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OpenAiCompatibleApis/assistant-multi-model/Math_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OpenAiCompatibleApis/assistant-multi-model/Reasoning_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OpenAiCompatibleApis/assistant-multi-model/Reasoning_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OpenAiCompatibleApis/assistant-multi-model/Technical_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OpenAiCompatibleApis/assistant-multi-model/Technical_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OpenAiCompatibleApis/assistant-multi-model/Worker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OpenAiCompatibleApis/assistant-multi-model/Worker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OpenAiCompatibleApis/assistant-single-model/Coder_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OpenAiCompatibleApis/assistant-single-model/Coder_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OpenAiCompatibleApis/assistant-single-model/Factual_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OpenAiCompatibleApis/assistant-single-model/Factual_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OpenAiCompatibleApis/assistant-single-model/Math_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OpenAiCompatibleApis/assistant-single-model/Math_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OpenAiCompatibleApis/assistant-single-model/Worker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OpenAiCompatibleApis/assistant-single-model/Worker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OpenAiCompatibleApis/group-chat-example/Claire_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OpenAiCompatibleApis/group-chat-example/Claire_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OpenAiCompatibleApis/group-chat-example/Datafinder_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OpenAiCompatibleApis/group-chat-example/Datafinder_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OpenAiCompatibleApis/group-chat-example/Eve_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OpenAiCompatibleApis/group-chat-example/Eve_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OpenAiCompatibleApis/group-chat-example/LePi_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OpenAiCompatibleApis/group-chat-example/LePi_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OpenAiCompatibleApis/group-chat-example/Lex_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OpenAiCompatibleApis/group-chat-example/Lex_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/OpenAiCompatibleApis/group-chat-example/MrDramaLlama_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/OpenAiCompatibleApis/group-chat-example/MrDramaLlama_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/Text-Generation-WebUI/Almost_Deterministic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/Text-Generation-WebUI/Almost_Deterministic.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/Text-Generation-WebUI/Coding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/Text-Generation-WebUI/Coding.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/Text-Generation-WebUI/Default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/Text-Generation-WebUI/Default.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/Text-Generation-WebUI/assistant-multi-model/Coder_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/Text-Generation-WebUI/assistant-multi-model/Coder_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/Text-Generation-WebUI/assistant-multi-model/Factual_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/Text-Generation-WebUI/assistant-multi-model/Factual_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/Text-Generation-WebUI/assistant-multi-model/Math_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/Text-Generation-WebUI/assistant-multi-model/Math_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/Text-Generation-WebUI/assistant-multi-model/Worker_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/Text-Generation-WebUI/assistant-multi-model/Worker_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/Text-Generation-WebUI/assistant-single-model/Math_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/Text-Generation-WebUI/assistant-single-model/Math_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/Text-Generation-WebUI/group-chat-example/Claire_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/Text-Generation-WebUI/group-chat-example/Claire_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/Text-Generation-WebUI/group-chat-example/Eve_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/Text-Generation-WebUI/group-chat-example/Eve_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/Text-Generation-WebUI/group-chat-example/LePi_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/Text-Generation-WebUI/group-chat-example/LePi_Preset.json -------------------------------------------------------------------------------- /Public/Configs/Presets/_archived/Text-Generation-WebUI/group-chat-example/Lex_Preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Presets/_archived/Text-Generation-WebUI/group-chat-example/Lex_Preset.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/_chatonly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/_chatonly.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/alpaca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/alpaca.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/cerebrum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/cerebrum.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/chatml-variant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/chatml-variant.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/chatml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/chatml.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/codefuse-deepseek-33b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/codefuse-deepseek-33b.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/codegeex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/codegeex.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/codellama-70b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/codellama-70b.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/codeqwen-1.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/codeqwen-1.5.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/codestral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/codestral.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/command-r.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/command-r.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/deepseek-chat-v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/deepseek-chat-v2.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/deepseek-coder-33b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/deepseek-coder-33b.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/deepseek-coder-lite-v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/deepseek-coder-lite-v2.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/deepseek-lite-v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/deepseek-lite-v2.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/deepseek-llm-67b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/deepseek-llm-67b.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/deepseek_r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/deepseek_r1.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/exaone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/exaone.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/gemma-27b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/gemma-27b.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/gemma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/gemma.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/glm-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/glm-4.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/granite-20b-instruct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/granite-20b-instruct.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/guanaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/guanaco.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/limarp-alpaca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/limarp-alpaca.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/limarp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/limarp.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/llama3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/llama3.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/magicoder-S-DS-6.7b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/magicoder-S-DS-6.7b.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/midnight-miqu-user-assistant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/midnight-miqu-user-assistant.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/mistral-small-2501.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/mistral-small-2501.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/mistral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/mistral.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/openchat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/openchat.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/phi-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/phi-4.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/phi-medium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/phi-medium.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/phind-codellama-34b-v2-official.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/phind-codellama-34b-v2-official.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/phind-codellama-34b-v2-recommended.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/phind-codellama-34b-v2-recommended.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/systemuserassistant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/systemuserassistant.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/tulu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/tulu.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/userassistant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/userassistant.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/userassistantwizard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/userassistantwizard.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/vicuna-1.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/vicuna-1.1.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/vicuna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/vicuna.json -------------------------------------------------------------------------------- /Public/Configs/PromptTemplates/wilmerai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/PromptTemplates/wilmerai.json -------------------------------------------------------------------------------- /Public/Configs/Routing/_archived/assistantMultiModelCategoriesConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Routing/_archived/assistantMultiModelCategoriesConfig.json -------------------------------------------------------------------------------- /Public/Configs/Routing/_archived/assistantSingleModelCategoriesConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Routing/_archived/assistantSingleModelCategoriesConfig.json -------------------------------------------------------------------------------- /Public/Configs/Routing/_archived/groupChatExampleCategoriesConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Routing/_archived/groupChatExampleCategoriesConfig.json -------------------------------------------------------------------------------- /Public/Configs/Routing/_archived/openwebuiMultiModelCategoriesConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Routing/_archived/openwebuiMultiModelCategoriesConfig.json -------------------------------------------------------------------------------- /Public/Configs/Routing/_archived/openwebuiSingleModelCategoriesConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Routing/_archived/openwebuiSingleModelCategoriesConfig.json -------------------------------------------------------------------------------- /Public/Configs/Routing/_archived/socgOpenWebUINoRoutingCodingMultiModelCategoriesConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Routing/_archived/socgOpenWebUINoRoutingCodingMultiModelCategoriesConfig.json -------------------------------------------------------------------------------- /Public/Configs/Routing/_archived/socgOpenWebUINoRoutingGeneralMultiModelCategoriesConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Routing/_archived/socgOpenWebUINoRoutingGeneralMultiModelCategoriesConfig.json -------------------------------------------------------------------------------- /Public/Configs/Routing/_defaultCategoriesConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Routing/_defaultCategoriesConfig.json -------------------------------------------------------------------------------- /Public/Configs/Routing/_exampleCustomCategoriesConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Routing/_exampleCustomCategoriesConfig.json -------------------------------------------------------------------------------- /Public/Configs/Users/_archived/assistant-multi-model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Users/_archived/assistant-multi-model.json -------------------------------------------------------------------------------- /Public/Configs/Users/_archived/assistant-single-model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Users/_archived/assistant-single-model.json -------------------------------------------------------------------------------- /Public/Configs/Users/_archived/convo-roleplay-dual-model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Users/_archived/convo-roleplay-dual-model.json -------------------------------------------------------------------------------- /Public/Configs/Users/_archived/convo-roleplay-single-model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Users/_archived/convo-roleplay-single-model.json -------------------------------------------------------------------------------- /Public/Configs/Users/_archived/group-chat-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Users/_archived/group-chat-example.json -------------------------------------------------------------------------------- /Public/Configs/Users/_archived/openwebui-norouting-dual-model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Users/_archived/openwebui-norouting-dual-model.json -------------------------------------------------------------------------------- /Public/Configs/Users/_archived/openwebui-norouting-single-model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Users/_archived/openwebui-norouting-single-model.json -------------------------------------------------------------------------------- /Public/Configs/Users/_archived/openwebui-routing-multi-model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Users/_archived/openwebui-routing-multi-model.json -------------------------------------------------------------------------------- /Public/Configs/Users/_archived/openwebui-routing-single-model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Users/_archived/openwebui-routing-single-model.json -------------------------------------------------------------------------------- /Public/Configs/Users/_archived/socg-openwebui-norouting-coding-complex-multi-model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Users/_archived/socg-openwebui-norouting-coding-complex-multi-model.json -------------------------------------------------------------------------------- /Public/Configs/Users/_archived/socg-openwebui-norouting-coding-dual-multi-model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Users/_archived/socg-openwebui-norouting-coding-dual-multi-model.json -------------------------------------------------------------------------------- /Public/Configs/Users/_archived/socg-openwebui-norouting-coding-reasoning-multi-model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Users/_archived/socg-openwebui-norouting-coding-reasoning-multi-model.json -------------------------------------------------------------------------------- /Public/Configs/Users/_archived/socg-openwebui-norouting-coding-single-multi-model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Users/_archived/socg-openwebui-norouting-coding-single-multi-model.json -------------------------------------------------------------------------------- /Public/Configs/Users/_archived/socg-openwebui-norouting-general-multi-model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Users/_archived/socg-openwebui-norouting-general-multi-model.json -------------------------------------------------------------------------------- /Public/Configs/Users/_archived/socg-openwebui-norouting-general-offline-wikipedia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Users/_archived/socg-openwebui-norouting-general-offline-wikipedia.json -------------------------------------------------------------------------------- /Public/Configs/Users/_current-user.json: -------------------------------------------------------------------------------- 1 | { 2 | "currentUser": "_example_general_workflow" 3 | } 4 | -------------------------------------------------------------------------------- /Public/Configs/Users/_example_assistant_with_vector_memory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Users/_example_assistant_with_vector_memory.json -------------------------------------------------------------------------------- /Public/Configs/Users/_example_coding_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Users/_example_coding_workflow.json -------------------------------------------------------------------------------- /Public/Configs/Users/_example_game_bot_with_file_memory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Users/_example_game_bot_with_file_memory.json -------------------------------------------------------------------------------- /Public/Configs/Users/_example_general_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Users/_example_general_workflow.json -------------------------------------------------------------------------------- /Public/Configs/Users/_example_recursive_coding_workflow_poc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Users/_example_recursive_coding_workflow_poc.json -------------------------------------------------------------------------------- /Public/Configs/Users/_example_simple_router_no_memory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Users/_example_simple_router_no_memory.json -------------------------------------------------------------------------------- /Public/Configs/Users/_example_task_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Users/_example_task_workflow.json -------------------------------------------------------------------------------- /Public/Configs/Users/_example_wikipedia_multi_step_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Users/_example_wikipedia_multi_step_workflow.json -------------------------------------------------------------------------------- /Public/Configs/Users/_example_wikipedia_quick_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Users/_example_wikipedia_quick_workflow.json -------------------------------------------------------------------------------- /Public/Configs/Users/isevendays-openwebui-norouting-general-offline-mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Users/isevendays-openwebui-norouting-general-offline-mcp.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/assistant-multi-model/ConversationalWorkflow-New.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/assistant-multi-model/ConversationalWorkflow-New.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/assistant-multi-model/CustomCategorizationWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/assistant-multi-model/CustomCategorizationWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/assistant-multi-model/Factual-Wiki-Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/assistant-multi-model/Factual-Wiki-Workflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/assistant-multi-model/GetChatSummaryToolWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/assistant-multi-model/GetChatSummaryToolWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/assistant-multi-model/MathWorkflow-LargeModel-Centric.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/assistant-multi-model/MathWorkflow-LargeModel-Centric.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/assistant-multi-model/MemoryFileToolWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/assistant-multi-model/MemoryFileToolWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/assistant-multi-model/RecentMemoryToolWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/assistant-multi-model/RecentMemoryToolWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/assistant-multi-model/Technical-Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/assistant-multi-model/Technical-Workflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/assistant-multi-model/_DefaultWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/assistant-multi-model/_DefaultWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/assistant-single-model/ConversationalWorkflow-New.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/assistant-single-model/ConversationalWorkflow-New.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/assistant-single-model/CustomCategorizationWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/assistant-single-model/CustomCategorizationWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/assistant-single-model/Factual-Wiki-Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/assistant-single-model/Factual-Wiki-Workflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/assistant-single-model/GetChatSummaryToolWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/assistant-single-model/GetChatSummaryToolWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/assistant-single-model/MathWorkflow-LargeModel-Centric.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/assistant-single-model/MathWorkflow-LargeModel-Centric.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/assistant-single-model/MemoryFileToolWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/assistant-single-model/MemoryFileToolWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/assistant-single-model/RecentMemoryToolWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/assistant-single-model/RecentMemoryToolWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/assistant-single-model/Technical-Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/assistant-single-model/Technical-Workflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/assistant-single-model/_DefaultWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/assistant-single-model/_DefaultWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/convo-roleplay-dual-model/GetChatSummaryToolWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/convo-roleplay-dual-model/GetChatSummaryToolWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/convo-roleplay-dual-model/MemoryFileToolWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/convo-roleplay-dual-model/MemoryFileToolWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/convo-roleplay-dual-model/RecentMemoryToolWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/convo-roleplay-dual-model/RecentMemoryToolWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/convo-roleplay-dual-model/_DefaultWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/convo-roleplay-dual-model/_DefaultWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/convo-roleplay-single-model/GetChatSummaryToolWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/convo-roleplay-single-model/GetChatSummaryToolWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/convo-roleplay-single-model/MemoryFileToolWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/convo-roleplay-single-model/MemoryFileToolWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/convo-roleplay-single-model/RecentMemoryToolWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/convo-roleplay-single-model/RecentMemoryToolWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/convo-roleplay-single-model/_DefaultWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/convo-roleplay-single-model/_DefaultWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/group-chat-example/ChatGpt-4o-Workflow-OnePrompt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/group-chat-example/ChatGpt-4o-Workflow-OnePrompt.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/group-chat-example/Claire-TwoPrompt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/group-chat-example/Claire-TwoPrompt.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/group-chat-example/CustomCategorizationWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/group-chat-example/CustomCategorizationWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/group-chat-example/DataFinder-Factual-Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/group-chat-example/DataFinder-Factual-Workflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/group-chat-example/Eve-TwoPrompt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/group-chat-example/Eve-TwoPrompt.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/group-chat-example/LePi-OnePrompt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/group-chat-example/LePi-OnePrompt.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/group-chat-example/Lex-TwoPrompt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/group-chat-example/Lex-TwoPrompt.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/group-chat-example/MrDramaLlama-OnePrompt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/group-chat-example/MrDramaLlama-OnePrompt.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/group-chat-example/MusicalMinstral-OnePrompt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/group-chat-example/MusicalMinstral-OnePrompt.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/openwebui-norouting-dual-model/MemoryFileToolWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/openwebui-norouting-dual-model/MemoryFileToolWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/openwebui-norouting-dual-model/_DefaultWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/openwebui-norouting-dual-model/_DefaultWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/openwebui-norouting-single-model/_DefaultWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/openwebui-norouting-single-model/_DefaultWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/openwebui-routing-multi-model/Factual-Wiki-Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/openwebui-routing-multi-model/Factual-Wiki-Workflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/openwebui-routing-multi-model/MemoryFileToolWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/openwebui-routing-multi-model/MemoryFileToolWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/openwebui-routing-multi-model/RecentMemoryToolWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/openwebui-routing-multi-model/RecentMemoryToolWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/openwebui-routing-multi-model/Technical-Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/openwebui-routing-multi-model/Technical-Workflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/openwebui-routing-multi-model/_DefaultWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/openwebui-routing-multi-model/_DefaultWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/openwebui-routing-single-model/Factual-Wiki-Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/openwebui-routing-single-model/Factual-Wiki-Workflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/openwebui-routing-single-model/MemoryFileToolWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/openwebui-routing-single-model/MemoryFileToolWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/openwebui-routing-single-model/Technical-Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/openwebui-routing-single-model/Technical-Workflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_archived/openwebui-routing-single-model/_DefaultWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_archived/openwebui-routing-single-model/_DefaultWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_common/Coding_With_Image_Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_common/Coding_With_Image_Workflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_common/Coding_With_Image_Workflow_Multi_Step.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_common/Coding_With_Image_Workflow_Multi_Step.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_common/Coding_Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_common/Coding_Workflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_common/Coding_Workflow_Multi_Step.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_common/Coding_Workflow_Multi_Step.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_common/General_Fast_With_Image_Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_common/General_Fast_With_Image_Workflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_common/General_Fast_Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_common/General_Fast_Workflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_common/General_ReasoningModel_With_Image_Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_common/General_ReasoningModel_With_Image_Workflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_common/General_ReasoningModel_Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_common/General_ReasoningModel_Workflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_common/General_With_Image_Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_common/General_With_Image_Workflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_common/General_With_Image_Workflow_Confirmation_Step.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_common/General_With_Image_Workflow_Confirmation_Step.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_common/General_With_Image_Workflow_Multi_Step.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_common/General_With_Image_Workflow_Multi_Step.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_common/General_Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_common/General_Workflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_common/General_Workflow_Confirmation_Step.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_common/General_Workflow_Confirmation_Step.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_common/General_Workflow_Multi_Step.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_common/General_Workflow_Multi_Step.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_common/General_Workflow_Replaceable_Endpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_common/General_Workflow_Replaceable_Endpoint.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_common/Recursive_Coding_Core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_common/Recursive_Coding_Core.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_common/Recursive_Coding_Finalizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_common/Recursive_Coding_Finalizer.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_common/Recursive_Coding_Orchestrator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_common/Recursive_Coding_Orchestrator.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_common/Util_Workflow_Wiki_Extra_Search_Keyword_Generation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_common/Util_Workflow_Wiki_Extra_Search_Keyword_Generation.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_common/Util_Workflow_Wiki_Search_And_Summarize.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_common/Util_Workflow_Wiki_Search_And_Summarize.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_common/Wiki_Multi_Pass_With_Image_Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_common/Wiki_Multi_Pass_With_Image_Workflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_common/Wiki_Multi_Pass_Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_common/Wiki_Multi_Pass_Workflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_common/Wiki_With_Image_Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_common/Wiki_With_Image_Workflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_common/Wiki_Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_common/Wiki_Workflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_common/_DoNothing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_common/_DoNothing.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_example_assistant_with_vector_memory/Memory_Vector_Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_example_assistant_with_vector_memory/Memory_Vector_Workflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_example_assistant_with_vector_memory/_DefaultWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_example_assistant_with_vector_memory/_DefaultWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_example_assistant_with_vector_memory/_README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_example_assistant_with_vector_memory/_README.txt -------------------------------------------------------------------------------- /Public/Configs/Workflows/_example_coding_workflow/Custom_Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_example_coding_workflow/Custom_Workflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_example_coding_workflow/_DefaultWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_example_coding_workflow/_DefaultWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_example_game_bot_with_file_memory/Game_Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_example_game_bot_with_file_memory/Game_Workflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_example_game_bot_with_file_memory/GetChatSummaryToolWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_example_game_bot_with_file_memory/GetChatSummaryToolWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_example_game_bot_with_file_memory/_DefaultWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_example_game_bot_with_file_memory/_DefaultWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_example_game_bot_with_file_memory/_README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_example_game_bot_with_file_memory/_README.txt -------------------------------------------------------------------------------- /Public/Configs/Workflows/_example_general_workflow/Custom_Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_example_general_workflow/Custom_Workflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_example_general_workflow/_DefaultWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_example_general_workflow/_DefaultWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_example_recursive_coding_workflow_poc/Custom_Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_example_recursive_coding_workflow_poc/Custom_Workflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_example_recursive_coding_workflow_poc/_DefaultWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_example_recursive_coding_workflow_poc/_DefaultWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_example_simple_router_no_memory/Coding-Route-Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_example_simple_router_no_memory/Coding-Route-Workflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_example_simple_router_no_memory/CustomCategorizationWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_example_simple_router_no_memory/CustomCategorizationWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_example_simple_router_no_memory/General-Route-Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_example_simple_router_no_memory/General-Route-Workflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_example_simple_router_no_memory/Wiki-Route-Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_example_simple_router_no_memory/Wiki-Route-Workflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_example_simple_router_no_memory/_DefaultWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_example_simple_router_no_memory/_DefaultWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_example_task_workflow/TaskWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_example_task_workflow/TaskWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_example_task_workflow/_DefaultWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_example_task_workflow/_DefaultWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_example_task_workflow/_README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_example_task_workflow/_README.txt -------------------------------------------------------------------------------- /Public/Configs/Workflows/_example_wikipedia_multi_step_workflow/Custom_Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_example_wikipedia_multi_step_workflow/Custom_Workflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_example_wikipedia_multi_step_workflow/_DefaultWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_example_wikipedia_multi_step_workflow/_DefaultWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_example_wikipedia_quick_workflow/Custom_Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_example_wikipedia_quick_workflow/Custom_Workflow.json -------------------------------------------------------------------------------- /Public/Configs/Workflows/_example_wikipedia_quick_workflow/_DefaultWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/Workflows/_example_wikipedia_quick_workflow/_DefaultWorkflow.json -------------------------------------------------------------------------------- /Public/Configs/default_tool_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/Configs/default_tool_prompt.txt -------------------------------------------------------------------------------- /Public/modules/README_MCP_TOOLS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/modules/README_MCP_TOOLS.md -------------------------------------------------------------------------------- /Public/modules/ensure_system_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/modules/ensure_system_prompt.py -------------------------------------------------------------------------------- /Public/modules/mcp_prompt_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/modules/mcp_prompt_utils.py -------------------------------------------------------------------------------- /Public/modules/mcp_service_discoverer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/modules/mcp_service_discoverer.py -------------------------------------------------------------------------------- /Public/modules/mcp_tool_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/modules/mcp_tool_executor.py -------------------------------------------------------------------------------- /Public/modules/mcp_workflow_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/modules/mcp_workflow_integration.py -------------------------------------------------------------------------------- /Public/modules/sanitize_llm_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/modules/sanitize_llm_response.py -------------------------------------------------------------------------------- /Public/modules/workflow_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Public/modules/workflow_utils.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/README.md -------------------------------------------------------------------------------- /Tests/api/handlers/impl/test_api_cancellation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/api/handlers/impl/test_api_cancellation.py -------------------------------------------------------------------------------- /Tests/api/handlers/impl/test_ollama_api_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/api/handlers/impl/test_ollama_api_handler.py -------------------------------------------------------------------------------- /Tests/api/handlers/impl/test_openai_api_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/api/handlers/impl/test_openai_api_handler.py -------------------------------------------------------------------------------- /Tests/api/test_api_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/api/test_api_helpers.py -------------------------------------------------------------------------------- /Tests/api/test_api_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/api/test_api_server.py -------------------------------------------------------------------------------- /Tests/api/test_workflow_gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/api/test_workflow_gateway.py -------------------------------------------------------------------------------- /Tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/conftest.py -------------------------------------------------------------------------------- /Tests/integration/test_nested_workflow_cancellation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/integration/test_nested_workflow_cancellation.py -------------------------------------------------------------------------------- /Tests/llmapis/handlers/base/test_base_chat_completions_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/llmapis/handlers/base/test_base_chat_completions_handler.py -------------------------------------------------------------------------------- /Tests/llmapis/handlers/base/test_base_llm_api_handler_cancellation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/llmapis/handlers/base/test_base_llm_api_handler_cancellation.py -------------------------------------------------------------------------------- /Tests/llmapis/handlers/impl/test_llmapis_claude_api_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/llmapis/handlers/impl/test_llmapis_claude_api_handler.py -------------------------------------------------------------------------------- /Tests/llmapis/handlers/impl/test_llmapis_koboldcpp_api_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/llmapis/handlers/impl/test_llmapis_koboldcpp_api_handler.py -------------------------------------------------------------------------------- /Tests/llmapis/handlers/impl/test_llmapis_koboldcpp_api_image_specific_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/llmapis/handlers/impl/test_llmapis_koboldcpp_api_image_specific_handler.py -------------------------------------------------------------------------------- /Tests/llmapis/handlers/impl/test_llmapis_ollama_chat_api_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/llmapis/handlers/impl/test_llmapis_ollama_chat_api_handler.py -------------------------------------------------------------------------------- /Tests/llmapis/handlers/impl/test_llmapis_ollama_chat_api_image_specific_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/llmapis/handlers/impl/test_llmapis_ollama_chat_api_image_specific_handler.py -------------------------------------------------------------------------------- /Tests/llmapis/handlers/impl/test_llmapis_ollama_generate_api_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/llmapis/handlers/impl/test_llmapis_ollama_generate_api_handler.py -------------------------------------------------------------------------------- /Tests/llmapis/handlers/impl/test_llmapis_openai_chat_api_image_specific_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/llmapis/handlers/impl/test_llmapis_openai_chat_api_image_specific_handler.py -------------------------------------------------------------------------------- /Tests/llmapis/handlers/impl/test_llmapis_openai_chat_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/llmapis/handlers/impl/test_llmapis_openai_chat_handler.py -------------------------------------------------------------------------------- /Tests/llmapis/handlers/impl/test_llmapis_openai_completions_api_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/llmapis/handlers/impl/test_llmapis_openai_completions_api_handler.py -------------------------------------------------------------------------------- /Tests/llmapis/test_llm_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/llmapis/test_llm_api.py -------------------------------------------------------------------------------- /Tests/services/test_cancellation_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/services/test_cancellation_service.py -------------------------------------------------------------------------------- /Tests/services/test_llm_dispatch_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/services/test_llm_dispatch_service.py -------------------------------------------------------------------------------- /Tests/services/test_llm_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/services/test_llm_service.py -------------------------------------------------------------------------------- /Tests/services/test_locking_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/services/test_locking_service.py -------------------------------------------------------------------------------- /Tests/services/test_memory_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/services/test_memory_service.py -------------------------------------------------------------------------------- /Tests/services/test_prompt_categorization_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/services/test_prompt_categorization_service.py -------------------------------------------------------------------------------- /Tests/services/test_response_builder_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/services/test_response_builder_service.py -------------------------------------------------------------------------------- /Tests/services/test_timestamp_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/services/test_timestamp_service.py -------------------------------------------------------------------------------- /Tests/utilities/test_config_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/utilities/test_config_utils.py -------------------------------------------------------------------------------- /Tests/utilities/test_datetime_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/utilities/test_datetime_utils.py -------------------------------------------------------------------------------- /Tests/utilities/test_file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/utilities/test_file_utils.py -------------------------------------------------------------------------------- /Tests/utilities/test_hashing_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/utilities/test_hashing_utils.py -------------------------------------------------------------------------------- /Tests/utilities/test_prompt_extraction_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/utilities/test_prompt_extraction_utils.py -------------------------------------------------------------------------------- /Tests/utilities/test_prompt_manipulation_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/utilities/test_prompt_manipulation_utils.py -------------------------------------------------------------------------------- /Tests/utilities/test_prompt_template_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/utilities/test_prompt_template_utils.py -------------------------------------------------------------------------------- /Tests/utilities/test_search_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/utilities/test_search_utils.py -------------------------------------------------------------------------------- /Tests/utilities/test_streaming_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/utilities/test_streaming_utils.py -------------------------------------------------------------------------------- /Tests/utilities/test_text_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/utilities/test_text_utils.py -------------------------------------------------------------------------------- /Tests/utilities/test_vector_db_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/utilities/test_vector_db_utils.py -------------------------------------------------------------------------------- /Tests/workflows/handlers/impl/test_memory_node_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/workflows/handlers/impl/test_memory_node_handler.py -------------------------------------------------------------------------------- /Tests/workflows/handlers/impl/test_specialized_node_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/workflows/handlers/impl/test_specialized_node_handler.py -------------------------------------------------------------------------------- /Tests/workflows/handlers/impl/test_standard_node_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/workflows/handlers/impl/test_standard_node_handler.py -------------------------------------------------------------------------------- /Tests/workflows/handlers/impl/test_sub_workflow_node_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/workflows/handlers/impl/test_sub_workflow_node_handler.py -------------------------------------------------------------------------------- /Tests/workflows/handlers/impl/test_tool_node_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/workflows/handlers/impl/test_tool_node_handler.py -------------------------------------------------------------------------------- /Tests/workflows/managers/test_workflow_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/workflows/managers/test_workflow_manager.py -------------------------------------------------------------------------------- /Tests/workflows/managers/test_workflow_variable_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/workflows/managers/test_workflow_variable_manager.py -------------------------------------------------------------------------------- /Tests/workflows/processors/test_workflow_processor_cancellation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/workflows/processors/test_workflow_processor_cancellation.py -------------------------------------------------------------------------------- /Tests/workflows/processors/test_workflows_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/workflows/processors/test_workflows_processor.py -------------------------------------------------------------------------------- /Tests/workflows/streaming/test_response_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/workflows/streaming/test_response_handler.py -------------------------------------------------------------------------------- /Tests/workflows/tools/test_dynamic_module_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/workflows/tools/test_dynamic_module_loader.py -------------------------------------------------------------------------------- /Tests/workflows/tools/test_offline_wikipedia_api_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/workflows/tools/test_offline_wikipedia_api_tool.py -------------------------------------------------------------------------------- /Tests/workflows/tools/test_slow_but_quality_rag_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/Tests/workflows/tools/test_slow_but_quality_rag_tool.py -------------------------------------------------------------------------------- /ThirdParty-Licenses/Flask/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/ThirdParty-Licenses/Flask/LICENSE.txt -------------------------------------------------------------------------------- /ThirdParty-Licenses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/ThirdParty-Licenses/README.md -------------------------------------------------------------------------------- /ThirdParty-Licenses/eventlet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/ThirdParty-Licenses/eventlet/LICENSE -------------------------------------------------------------------------------- /ThirdParty-Licenses/jinja/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/ThirdParty-Licenses/jinja/LICENSE.txt -------------------------------------------------------------------------------- /ThirdParty-Licenses/pillow/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/ThirdParty-Licenses/pillow/LICENSE.txt -------------------------------------------------------------------------------- /ThirdParty-Licenses/requests/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/ThirdParty-Licenses/requests/LICENSE.txt -------------------------------------------------------------------------------- /ThirdParty-Licenses/requests/NOTICE.txt: -------------------------------------------------------------------------------- 1 | Requests 2 | Copyright 2019 Kenneth Reitz 3 | -------------------------------------------------------------------------------- /ThirdParty-Licenses/scikit-learn/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/ThirdParty-Licenses/scikit-learn/COPYING.txt -------------------------------------------------------------------------------- /ThirdParty-Licenses/urllib3/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/ThirdParty-Licenses/urllib3/LICENSE.txt -------------------------------------------------------------------------------- /ThirdParty-Licenses/waitress/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Zope Foundation and Contributors -------------------------------------------------------------------------------- /ThirdParty-Licenses/waitress/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/ThirdParty-Licenses/waitress/LICENSE.txt -------------------------------------------------------------------------------- /logs/_logsGoHere.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/requirements-test.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_eventlet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/run_eventlet.py -------------------------------------------------------------------------------- /run_macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/run_macos.sh -------------------------------------------------------------------------------- /run_waitress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/run_waitress.py -------------------------------------------------------------------------------- /run_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/run_windows.bat -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeOddCodeGuy/WilmerAI/HEAD/server.py --------------------------------------------------------------------------------