├── .gitignore ├── .idea ├── .gitignore ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── llmops.iml ├── misc.xml └── modules.xml ├── README.md ├── README_ZH.md ├── api ├── .dockerignore ├── .env ├── .idea │ ├── .gitignore │ ├── dataSources.xml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── llmops-api.iml │ ├── misc.xml │ └── modules.xml ├── Dockerfile ├── README.md ├── app │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── __init__.cpython-311.pyc │ │ └── __init__.cpython-39.pyc │ └── http │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── __init__.cpython-39.pyc │ │ ├── app.cpython-310.pyc │ │ ├── app.cpython-39.pyc │ │ ├── module.cpython-310.pyc │ │ └── module.cpython-39.pyc │ │ ├── app.py │ │ └── module.py ├── config │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── __init__.cpython-39.pyc │ │ ├── config.cpython-310.pyc │ │ ├── config.cpython-39.pyc │ │ ├── default_config.cpython-310.pyc │ │ └── default_config.cpython-39.pyc │ ├── config.py │ └── default_config.py ├── docker │ └── entrypoint.sh ├── internal │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ └── __init__.cpython-39.pyc │ ├── core │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ │ ├── agent │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ ├── agents │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── agent_queue_manager.cpython-39.pyc │ │ │ │ │ ├── base_agent.cpython-39.pyc │ │ │ │ │ ├── function_call_agent.cpython-39.pyc │ │ │ │ │ └── react_agent.cpython-39.pyc │ │ │ │ ├── agent_queue_manager.py │ │ │ │ ├── base_agent.py │ │ │ │ ├── function_call_agent.py │ │ │ │ └── react_agent.py │ │ │ └── entities │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── agent_entity.cpython-39.pyc │ │ │ │ └── queue_entity.cpython-39.pyc │ │ │ │ ├── agent_entity.py │ │ │ │ └── queue_entity.py │ │ ├── builtin_apps │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── builtin_app_manager.cpython-39.pyc │ │ │ ├── builtin_app_manager.py │ │ │ ├── builtin_apps │ │ │ │ ├── __init__.py │ │ │ │ ├── llm_product_manager.yaml │ │ │ │ └── travel_assistant.yaml │ │ │ ├── categories │ │ │ │ ├── __init__.py │ │ │ │ └── categories.yaml │ │ │ └── entities │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── builtin_app_entity.cpython-39.pyc │ │ │ │ └── category_entity.cpython-39.pyc │ │ │ │ ├── builtin_app_entity.py │ │ │ │ └── category_entity.py │ │ ├── file_extractor │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── file_extractor.cpython-39.pyc │ │ │ └── file_extractor.py │ │ ├── language_model │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── language_model_manager.cpython-39.pyc │ │ │ ├── entities │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── default_model_parameter_template.cpython-39.pyc │ │ │ │ │ ├── model_entity.cpython-39.pyc │ │ │ │ │ └── provider_entity.cpython-39.pyc │ │ │ │ ├── default_model_parameter_template.py │ │ │ │ ├── model_entity.py │ │ │ │ └── provider_entity.py │ │ │ ├── language_model_manager.py │ │ │ └── providers │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ ├── deepseek │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── chat.cpython-39.pyc │ │ │ │ ├── _asset │ │ │ │ │ ├── icon.png │ │ │ │ │ └── icon.png:Zone.Identifier │ │ │ │ ├── chat.py │ │ │ │ ├── deepseek-chat.yaml │ │ │ │ └── positions.yaml │ │ │ │ ├── moonshot │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── chat.cpython-39.pyc │ │ │ │ ├── _asset │ │ │ │ │ └── icon.png │ │ │ │ ├── chat.py │ │ │ │ ├── moonshot-v1-128k.yaml │ │ │ │ ├── moonshot-v1-32k.yaml │ │ │ │ ├── moonshot-v1-8k.yaml │ │ │ │ └── positions.yaml │ │ │ │ ├── ollama │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── chat.cpython-39.pyc │ │ │ │ ├── _asset │ │ │ │ │ └── icon.svg │ │ │ │ ├── chat.py │ │ │ │ ├── deepseek-r1-8b.yaml │ │ │ │ └── positions.yaml │ │ │ │ ├── openai │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── chat.cpython-39.pyc │ │ │ │ │ └── completion.cpython-39.pyc │ │ │ │ ├── _asset │ │ │ │ │ └── icon.svg │ │ │ │ ├── chat.py │ │ │ │ ├── completion.py │ │ │ │ ├── gpt-4o-mini.yaml │ │ │ │ ├── gpt-4o.yaml │ │ │ │ └── positions.yaml │ │ │ │ ├── providers.yaml │ │ │ │ ├── tongyi │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── chat.cpython-39.pyc │ │ │ │ ├── _asset │ │ │ │ │ └── icon.png │ │ │ │ ├── chat.py │ │ │ │ ├── positions.yaml │ │ │ │ ├── qwen-max.yaml │ │ │ │ └── qwen-plus.yaml │ │ │ │ └── wenxin │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── chat.cpython-39.pyc │ │ │ │ ├── _asset │ │ │ │ └── icon.png │ │ │ │ ├── chat.py │ │ │ │ ├── ernie-3.5-128k.yaml │ │ │ │ ├── ernie-3.5-8k.yaml │ │ │ │ ├── ernie-4.0-8k.yaml │ │ │ │ └── positions.yaml │ │ ├── memory │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── token_buffer_memory.cpython-39.pyc │ │ │ └── token_buffer_memory.py │ │ ├── retrievers │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── full_text_retriever.cpython-39.pyc │ │ │ │ └── semantic.cpython-39.pyc │ │ │ ├── full_text_retriever.py │ │ │ └── semantic.py │ │ ├── tools │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ ├── api_tools │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ ├── entities │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── openapi_schema.cpython-39.pyc │ │ │ │ │ │ └── tool_entity.cpython-39.pyc │ │ │ │ │ ├── openapi_schema.py │ │ │ │ │ └── tool_entity.py │ │ │ │ └── providers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── api_provider_manager.cpython-39.pyc │ │ │ │ │ └── api_provider_manager.py │ │ │ └── builtin_tools │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ │ ├── categories │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── builtin_category_manager.cpython-39.pyc │ │ │ │ ├── builtin_category_manager.py │ │ │ │ ├── categories.yaml │ │ │ │ └── icons │ │ │ │ │ ├── image.svg │ │ │ │ │ ├── other.svg │ │ │ │ │ ├── search.svg │ │ │ │ │ ├── tool.svg │ │ │ │ │ └── weather.svg │ │ │ │ ├── entities │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── category_entity.cpython-39.pyc │ │ │ │ │ ├── provider_entity.cpython-39.pyc │ │ │ │ │ └── tool_entity.cpython-39.pyc │ │ │ │ ├── category_entity.py │ │ │ │ ├── provider_entity.py │ │ │ │ └── tool_entity.py │ │ │ │ └── providers │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── builtin_provider_manager.cpython-39.pyc │ │ │ │ ├── builtin_provider_manager.py │ │ │ │ ├── dalle │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── dalle3.cpython-39.pyc │ │ │ │ ├── _asset │ │ │ │ │ └── icon.png │ │ │ │ ├── dalle3.py │ │ │ │ ├── dalle3.yaml │ │ │ │ └── positions.yaml │ │ │ │ ├── duckduckgo │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── duckduckgo_search.cpython-39.pyc │ │ │ │ ├── _asset │ │ │ │ │ └── icon.svg │ │ │ │ ├── duckduckgo_search.py │ │ │ │ ├── duckduckgo_search.yaml │ │ │ │ └── positions.yaml │ │ │ │ ├── gaode │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── gaode_weather.cpython-39.pyc │ │ │ │ ├── _asset │ │ │ │ │ └── icon.png │ │ │ │ ├── gaode_weather.py │ │ │ │ ├── gaode_weather.yaml │ │ │ │ └── positions.yaml │ │ │ │ ├── google │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── google_serper.cpython-39.pyc │ │ │ │ ├── _asset │ │ │ │ │ └── icon.svg │ │ │ │ ├── google_serper.py │ │ │ │ ├── google_serper.yaml │ │ │ │ └── positions.yaml │ │ │ │ ├── providers.yaml │ │ │ │ ├── time │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── current_time.cpython-39.pyc │ │ │ │ ├── _asset │ │ │ │ │ └── icon.svg │ │ │ │ ├── current_time.py │ │ │ │ ├── current_time.yaml │ │ │ │ └── positions.yaml │ │ │ │ └── wikipedia │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── wikipedia_search.cpython-39.pyc │ │ │ │ ├── _asset │ │ │ │ └── icon.svg │ │ │ │ ├── positions.yaml │ │ │ │ ├── wikipedia_search.py │ │ │ │ └── wikipedia_search.yaml │ │ ├── unstructured │ │ │ └── nltk_data │ │ │ │ ├── taggers │ │ │ │ ├── averaged_perceptron_tagger │ │ │ │ │ └── averaged_perceptron_tagger.pickle │ │ │ │ └── averaged_perceptron_tagger_eng │ │ │ │ │ ├── averaged_perceptron_tagger_eng.classes.json │ │ │ │ │ ├── averaged_perceptron_tagger_eng.tagdict.json │ │ │ │ │ └── averaged_perceptron_tagger_eng.weights.json │ │ │ │ └── tokenizers │ │ │ │ ├── punkt │ │ │ │ ├── .DS_Store │ │ │ │ ├── PY3 │ │ │ │ │ ├── README │ │ │ │ │ ├── czech.pickle │ │ │ │ │ ├── danish.pickle │ │ │ │ │ ├── dutch.pickle │ │ │ │ │ ├── english.pickle │ │ │ │ │ ├── estonian.pickle │ │ │ │ │ ├── finnish.pickle │ │ │ │ │ ├── french.pickle │ │ │ │ │ ├── german.pickle │ │ │ │ │ ├── greek.pickle │ │ │ │ │ ├── italian.pickle │ │ │ │ │ ├── malayalam.pickle │ │ │ │ │ ├── norwegian.pickle │ │ │ │ │ ├── polish.pickle │ │ │ │ │ ├── portuguese.pickle │ │ │ │ │ ├── russian.pickle │ │ │ │ │ ├── slovene.pickle │ │ │ │ │ ├── spanish.pickle │ │ │ │ │ ├── swedish.pickle │ │ │ │ │ └── turkish.pickle │ │ │ │ ├── README │ │ │ │ ├── czech.pickle │ │ │ │ ├── danish.pickle │ │ │ │ ├── dutch.pickle │ │ │ │ ├── english.pickle │ │ │ │ ├── estonian.pickle │ │ │ │ ├── finnish.pickle │ │ │ │ ├── french.pickle │ │ │ │ ├── german.pickle │ │ │ │ ├── greek.pickle │ │ │ │ ├── italian.pickle │ │ │ │ ├── malayalam.pickle │ │ │ │ ├── norwegian.pickle │ │ │ │ ├── polish.pickle │ │ │ │ ├── portuguese.pickle │ │ │ │ ├── russian.pickle │ │ │ │ ├── slovene.pickle │ │ │ │ ├── spanish.pickle │ │ │ │ ├── swedish.pickle │ │ │ │ └── turkish.pickle │ │ │ │ └── punkt_tab │ │ │ │ ├── README │ │ │ │ ├── czech │ │ │ │ ├── abbrev_types.txt │ │ │ │ ├── collocations.tab │ │ │ │ ├── ortho_context.tab │ │ │ │ └── sent_starters.txt │ │ │ │ ├── danish │ │ │ │ ├── abbrev_types.txt │ │ │ │ ├── collocations.tab │ │ │ │ ├── ortho_context.tab │ │ │ │ └── sent_starters.txt │ │ │ │ ├── dutch │ │ │ │ ├── abbrev_types.txt │ │ │ │ ├── collocations.tab │ │ │ │ ├── ortho_context.tab │ │ │ │ └── sent_starters.txt │ │ │ │ ├── english │ │ │ │ ├── abbrev_types.txt │ │ │ │ ├── collocations.tab │ │ │ │ ├── ortho_context.tab │ │ │ │ └── sent_starters.txt │ │ │ │ ├── estonian │ │ │ │ ├── abbrev_types.txt │ │ │ │ ├── collocations.tab │ │ │ │ ├── ortho_context.tab │ │ │ │ └── sent_starters.txt │ │ │ │ ├── finnish │ │ │ │ ├── abbrev_types.txt │ │ │ │ ├── collocations.tab │ │ │ │ ├── ortho_context.tab │ │ │ │ └── sent_starters.txt │ │ │ │ ├── french │ │ │ │ ├── abbrev_types.txt │ │ │ │ ├── collocations.tab │ │ │ │ ├── ortho_context.tab │ │ │ │ └── sent_starters.txt │ │ │ │ ├── german │ │ │ │ ├── abbrev_types.txt │ │ │ │ ├── collocations.tab │ │ │ │ ├── ortho_context.tab │ │ │ │ └── sent_starters.txt │ │ │ │ ├── greek │ │ │ │ ├── abbrev_types.txt │ │ │ │ ├── collocations.tab │ │ │ │ ├── ortho_context.tab │ │ │ │ └── sent_starters.txt │ │ │ │ ├── italian │ │ │ │ ├── abbrev_types.txt │ │ │ │ ├── collocations.tab │ │ │ │ ├── ortho_context.tab │ │ │ │ └── sent_starters.txt │ │ │ │ ├── malayalam │ │ │ │ ├── abbrev_types.txt │ │ │ │ ├── collocations.tab │ │ │ │ ├── ortho_context.tab │ │ │ │ └── sent_starters.txt │ │ │ │ ├── norwegian │ │ │ │ ├── abbrev_types.txt │ │ │ │ ├── collocations.tab │ │ │ │ ├── ortho_context.tab │ │ │ │ └── sent_starters.txt │ │ │ │ ├── polish │ │ │ │ ├── abbrev_types.txt │ │ │ │ ├── collocations.tab │ │ │ │ ├── ortho_context.tab │ │ │ │ └── sent_starters.txt │ │ │ │ ├── portuguese │ │ │ │ ├── abbrev_types.txt │ │ │ │ ├── collocations.tab │ │ │ │ ├── ortho_context.tab │ │ │ │ └── sent_starters.txt │ │ │ │ ├── russian │ │ │ │ ├── abbrev_types.txt │ │ │ │ ├── collocations.tab │ │ │ │ ├── ortho_context.tab │ │ │ │ └── sent_starters.txt │ │ │ │ ├── slovene │ │ │ │ ├── abbrev_types.txt │ │ │ │ ├── collocations.tab │ │ │ │ ├── ortho_context.tab │ │ │ │ └── sent_starters.txt │ │ │ │ ├── spanish │ │ │ │ ├── abbrev_types.txt │ │ │ │ ├── collocations.tab │ │ │ │ ├── ortho_context.tab │ │ │ │ └── sent_starters.txt │ │ │ │ ├── swedish │ │ │ │ ├── abbrev_types.txt │ │ │ │ ├── collocations.tab │ │ │ │ ├── ortho_context.tab │ │ │ │ └── sent_starters.txt │ │ │ │ └── turkish │ │ │ │ ├── abbrev_types.txt │ │ │ │ ├── collocations.tab │ │ │ │ ├── ortho_context.tab │ │ │ │ └── sent_starters.txt │ │ ├── vector_store │ │ │ ├── index.faiss │ │ │ └── index.pkl │ │ └── workflow │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── workflow.cpython-39.pyc │ │ │ ├── entities │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── edge_entity.cpython-39.pyc │ │ │ │ ├── node_entity.cpython-39.pyc │ │ │ │ ├── variable_entity.cpython-39.pyc │ │ │ │ └── workflow_entity.cpython-39.pyc │ │ │ ├── edge_entity.py │ │ │ ├── node_entity.py │ │ │ ├── variable_entity.py │ │ │ └── workflow_entity.py │ │ │ ├── nodes │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── base_node.cpython-39.pyc │ │ │ ├── base_node.py │ │ │ ├── code │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── code_entity.cpython-39.pyc │ │ │ │ │ └── code_node.cpython-39.pyc │ │ │ │ ├── code_entity.py │ │ │ │ └── code_node.py │ │ │ ├── dataset_retrieval │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── dataset_retrieval_entity.cpython-39.pyc │ │ │ │ │ └── dataset_retrieval_node.cpython-39.pyc │ │ │ │ ├── dataset_retrieval_entity.py │ │ │ │ └── dataset_retrieval_node.py │ │ │ ├── end │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── end_entity.cpython-39.pyc │ │ │ │ │ └── end_node.cpython-39.pyc │ │ │ │ ├── end_entity.py │ │ │ │ └── end_node.py │ │ │ ├── http_request │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── http_request_entity.cpython-39.pyc │ │ │ │ │ └── http_request_node.cpython-39.pyc │ │ │ │ ├── http_request_entity.py │ │ │ │ └── http_request_node.py │ │ │ ├── llm │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── llm_entity.cpython-39.pyc │ │ │ │ │ └── llm_node.cpython-39.pyc │ │ │ │ ├── llm_entity.py │ │ │ │ └── llm_node.py │ │ │ ├── start │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── start_entity.cpython-39.pyc │ │ │ │ │ └── start_node.cpython-39.pyc │ │ │ │ ├── start_entity.py │ │ │ │ └── start_node.py │ │ │ ├── template_transform │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── template_transform_entity.cpython-39.pyc │ │ │ │ │ └── template_transform_node.cpython-39.pyc │ │ │ │ ├── template_transform_entity.py │ │ │ │ └── template_transform_node.py │ │ │ └── tool │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── tool_entity.cpython-39.pyc │ │ │ │ └── tool_node.cpython-39.pyc │ │ │ │ ├── tool_entity.py │ │ │ │ └── tool_node.py │ │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── helper.cpython-39.pyc │ │ │ └── helper.py │ │ │ └── workflow.py │ ├── entity │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── ai_entity.cpython-39.pyc │ │ │ ├── app_entity.cpython-39.pyc │ │ │ ├── cache_entity.cpython-39.pyc │ │ │ ├── conversation_entity.cpython-39.pyc │ │ │ ├── dataset_entity.cpython-39.pyc │ │ │ ├── jieba_entity.cpython-39.pyc │ │ │ ├── upload_file_entity.cpython-39.pyc │ │ │ └── workflow_entity.cpython-39.pyc │ │ ├── ai_entity.py │ │ ├── app_entity.py │ │ ├── cache_entity.py │ │ ├── conversation_entity.py │ │ ├── dataset_entity.py │ │ ├── jieba_entity.py │ │ ├── upload_file_entity.py │ │ └── workflow_entity.py │ ├── exception │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── exception.cpython-310.pyc │ │ │ └── exception.cpython-39.pyc │ │ └── exception.py │ ├── extension │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── celery_extension.cpython-39.pyc │ │ │ ├── database_extension.cpython-310.pyc │ │ │ ├── database_extension.cpython-39.pyc │ │ │ ├── logging_extension.cpython-39.pyc │ │ │ ├── login_extension.cpython-39.pyc │ │ │ ├── migrate_extension.cpython-310.pyc │ │ │ ├── migrate_extension.cpython-39.pyc │ │ │ ├── redis_extension.cpython-39.pyc │ │ │ └── weaviate_extension.cpython-39.pyc │ │ ├── celery_extension.py │ │ ├── database_extension.py │ │ ├── logging_extension.py │ │ ├── login_extension.py │ │ ├── migrate_extension.py │ │ ├── redis_extension.py │ │ └── weaviate_extension.py │ ├── handler │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── account_handler.cpython-39.pyc │ │ │ ├── ai_handler.cpython-39.pyc │ │ │ ├── analysis_handler.cpython-39.pyc │ │ │ ├── api_key_handler.cpython-39.pyc │ │ │ ├── api_tool_handler.cpython-39.pyc │ │ │ ├── app_handler.cpython-310.pyc │ │ │ ├── app_handler.cpython-39.pyc │ │ │ ├── assistant_agent_handler.cpython-39.pyc │ │ │ ├── auth_handler.cpython-39.pyc │ │ │ ├── builtin_app_handler.cpython-39.pyc │ │ │ ├── builtin_tool_handler.cpython-39.pyc │ │ │ ├── conversation_handler.cpython-39.pyc │ │ │ ├── dataset_handler.cpython-39.pyc │ │ │ ├── document_handler.cpython-39.pyc │ │ │ ├── language_model_handler.cpython-39.pyc │ │ │ ├── oauth_handler.cpython-39.pyc │ │ │ ├── openapi_handler.cpython-39.pyc │ │ │ ├── segment_handler.cpython-39.pyc │ │ │ ├── upload_file_handler.cpython-39.pyc │ │ │ ├── web_app_handler.cpython-39.pyc │ │ │ └── workflow_handler.cpython-39.pyc │ │ ├── account_handler.py │ │ ├── ai_handler.py │ │ ├── analysis_handler.py │ │ ├── api_key_handler.py │ │ ├── api_tool_handler.py │ │ ├── app_handler.py │ │ ├── assistant_agent_handler.py │ │ ├── auth_handler.py │ │ ├── builtin_app_handler.py │ │ ├── builtin_tool_handler.py │ │ ├── conversation_handler.py │ │ ├── dataset_handler.py │ │ ├── document_handler.py │ │ ├── language_model_handler.py │ │ ├── oauth_handler.py │ │ ├── openapi_handler.py │ │ ├── segment_handler.py │ │ ├── upload_file_handler.py │ │ ├── web_app_handler.py │ │ └── workflow_handler.py │ ├── lib │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── helper.cpython-39.pyc │ │ └── helper.py │ ├── middleware │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── middleware.cpython-39.pyc │ │ └── middleware.py │ ├── migration │ │ ├── README │ │ ├── __pycache__ │ │ │ ├── env.cpython-310.pyc │ │ │ └── env.cpython-39.pyc │ │ ├── alembic.ini │ │ ├── env.py │ │ ├── script.py.mako │ │ └── versions │ │ │ ├── 09b68127ca41_.py │ │ │ ├── 09ca1473ee05_.py │ │ │ ├── 0a9f4c627c6b_.py │ │ │ ├── 220a6ac3acd4_.py │ │ │ ├── 352fdd9a242c_.py │ │ │ ├── 35de684db809_.py │ │ │ ├── 3af1461df100_.py │ │ │ ├── 4bd8c0f7ec6a_.py │ │ │ ├── 56bccd738896_.py │ │ │ ├── 7e241d9cc651_.py │ │ │ ├── 8042a1160a4d_.py │ │ │ ├── 858200175b1f_.py │ │ │ ├── __pycache__ │ │ │ ├── 09b68127ca41_.cpython-310.pyc │ │ │ ├── 09b68127ca41_.cpython-39.pyc │ │ │ ├── 09ca1473ee05_.cpython-39.pyc │ │ │ ├── 0a9f4c627c6b_.cpython-39.pyc │ │ │ ├── 220a6ac3acd4_.cpython-39.pyc │ │ │ ├── 352fdd9a242c_.cpython-39.pyc │ │ │ ├── 35de684db809_.cpython-39.pyc │ │ │ ├── 3af1461df100_.cpython-39.pyc │ │ │ ├── 4bd8c0f7ec6a_.cpython-39.pyc │ │ │ ├── 56bccd738896_.cpython-39.pyc │ │ │ ├── 7e241d9cc651_.cpython-39.pyc │ │ │ ├── 8042a1160a4d_.cpython-39.pyc │ │ │ ├── 858200175b1f_.cpython-310.pyc │ │ │ ├── 858200175b1f_.cpython-39.pyc │ │ │ ├── ab0fba23ea27_.cpython-39.pyc │ │ │ ├── b52800c83707_.cpython-39.pyc │ │ │ ├── c100026d1885_.cpython-39.pyc │ │ │ └── dbbb4f3fe0c7_.cpython-39.pyc │ │ │ ├── ab0fba23ea27_.py │ │ │ ├── b52800c83707_.py │ │ │ ├── c100026d1885_.py │ │ │ └── dbbb4f3fe0c7_.py │ ├── model │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── account.cpython-39.pyc │ │ │ ├── api_key.cpython-39.pyc │ │ │ ├── api_tool.cpython-39.pyc │ │ │ ├── app.cpython-310.pyc │ │ │ ├── app.cpython-39.pyc │ │ │ ├── conversation.cpython-39.pyc │ │ │ ├── dataset.cpython-39.pyc │ │ │ ├── end_user.cpython-39.pyc │ │ │ ├── upload_file.cpython-39.pyc │ │ │ └── workflow.cpython-39.pyc │ │ ├── account.py │ │ ├── api_key.py │ │ ├── api_tool.py │ │ ├── app.py │ │ ├── conversation.py │ │ ├── dataset.py │ │ ├── end_user.py │ │ ├── upload_file.py │ │ └── workflow.py │ ├── router │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── router.cpython-310.pyc │ │ │ └── router.cpython-39.pyc │ │ └── router.py │ ├── schedule │ │ └── __init__.py │ ├── schema │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── account_schema.cpython-39.pyc │ │ │ ├── ai_schema.cpython-39.pyc │ │ │ ├── api_key_schema.cpython-39.pyc │ │ │ ├── api_tool_schema.cpython-39.pyc │ │ │ ├── app_schema.cpython-310.pyc │ │ │ ├── app_schema.cpython-39.pyc │ │ │ ├── assistant_agent_schema.cpython-39.pyc │ │ │ ├── auth_schema.cpython-39.pyc │ │ │ ├── builtin_app_schema.cpython-39.pyc │ │ │ ├── conversation_schema.cpython-39.pyc │ │ │ ├── dataset_schema.cpython-39.pyc │ │ │ ├── document_schema.cpython-39.pyc │ │ │ ├── oauth_schema.cpython-39.pyc │ │ │ ├── openapi_schema.cpython-39.pyc │ │ │ ├── schema.cpython-39.pyc │ │ │ ├── segment_schema.cpython-39.pyc │ │ │ ├── upload_file_schema.cpython-39.pyc │ │ │ ├── web_app_schema.cpython-39.pyc │ │ │ └── workflow_schema.cpython-39.pyc │ │ ├── account_schema.py │ │ ├── ai_schema.py │ │ ├── api_key_schema.py │ │ ├── api_tool_schema.py │ │ ├── app_schema.py │ │ ├── assistant_agent_schema.py │ │ ├── auth_schema.py │ │ ├── builtin_app_schema.py │ │ ├── conversation_schema.py │ │ ├── dataset_schema.py │ │ ├── document_schema.py │ │ ├── oauth_schema.py │ │ ├── openapi_schema.py │ │ ├── schema.py │ │ ├── segment_schema.py │ │ ├── upload_file_schema.py │ │ ├── web_app_schema.py │ │ └── workflow_schema.py │ ├── server │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── http.cpython-310.pyc │ │ │ └── http.cpython-39.pyc │ │ └── http.py │ ├── service │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── account_service.cpython-39.pyc │ │ │ ├── ai_service.cpython-39.pyc │ │ │ ├── analysis_service.cpython-39.pyc │ │ │ ├── api_key_service.cpython-39.pyc │ │ │ ├── api_tool_service.cpython-39.pyc │ │ │ ├── app_config_service.cpython-39.pyc │ │ │ ├── app_service.cpython-310.pyc │ │ │ ├── app_service.cpython-39.pyc │ │ │ ├── assistant_agent_service.cpython-39.pyc │ │ │ ├── base_service.cpython-39.pyc │ │ │ ├── builtin_app_service.cpython-39.pyc │ │ │ ├── builtin_tool_service.cpython-39.pyc │ │ │ ├── conversation_service.cpython-39.pyc │ │ │ ├── cos_service.cpython-39.pyc │ │ │ ├── dataset_service.cpython-39.pyc │ │ │ ├── document_service.cpython-39.pyc │ │ │ ├── embeddings_service.cpython-39.pyc │ │ │ ├── faiss_service.cpython-39.pyc │ │ │ ├── indexing_service.cpython-39.pyc │ │ │ ├── jieba_service.cpython-39.pyc │ │ │ ├── jwt_service.cpython-39.pyc │ │ │ ├── keyword_table_service.cpython-39.pyc │ │ │ ├── language_model_service.cpython-39.pyc │ │ │ ├── oauth_service.cpython-39.pyc │ │ │ ├── openapi_service.cpython-39.pyc │ │ │ ├── process_rule_service.cpython-39.pyc │ │ │ ├── retrieval_service.cpython-39.pyc │ │ │ ├── segment_service.cpython-39.pyc │ │ │ ├── upload_file_service.cpython-39.pyc │ │ │ ├── vector_database_service.cpython-39.pyc │ │ │ ├── web_app_service.cpython-39.pyc │ │ │ └── workflow_service.cpython-39.pyc │ │ ├── account_service.py │ │ ├── ai_service.py │ │ ├── analysis_service.py │ │ ├── api_key_service.py │ │ ├── api_tool_service.py │ │ ├── app_config_service.py │ │ ├── app_service.py │ │ ├── assistant_agent_service.py │ │ ├── base_service.py │ │ ├── builtin_app_service.py │ │ ├── builtin_tool_service.py │ │ ├── conversation_service.py │ │ ├── cos_service.py │ │ ├── dataset_service.py │ │ ├── document_service.py │ │ ├── embeddings_service.py │ │ ├── faiss_service.py │ │ ├── indexing_service.py │ │ ├── jieba_service.py │ │ ├── jwt_service.py │ │ ├── keyword_table_service.py │ │ ├── language_model_service.py │ │ ├── oauth_service.py │ │ ├── openapi_service.py │ │ ├── process_rule_service.py │ │ ├── retrieval_service.py │ │ ├── segment_service.py │ │ ├── upload_file_service.py │ │ ├── vector_database_service.py │ │ ├── web_app_service.py │ │ └── workflow_service.py │ └── task │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── app_task.cpython-39.pyc │ │ ├── dataset_task.cpython-39.pyc │ │ ├── demo_task.cpython-39.pyc │ │ └── document_task.cpython-39.pyc │ │ ├── app_task.py │ │ ├── dataset_task.py │ │ ├── demo_task.py │ │ └── document_task.py ├── pkg │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ └── __init__.cpython-39.pyc │ ├── oauth │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── github_oauth.cpython-39.pyc │ │ │ └── oauth.cpython-39.pyc │ │ ├── github_oauth.py │ │ └── oauth.py │ ├── paginator │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── paginator.cpython-39.pyc │ │ └── paginator.py │ ├── password │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── password.cpython-39.pyc │ │ └── password.py │ ├── response │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── http_code.cpython-310.pyc │ │ │ ├── http_code.cpython-39.pyc │ │ │ ├── response.cpython-310.pyc │ │ │ └── response.cpython-39.pyc │ │ ├── http_code.py │ │ └── response.py │ └── sqlalchemy │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── __init__.cpython-39.pyc │ │ ├── sqlalchemy.cpython-310.pyc │ │ └── sqlalchemy.cpython-39.pyc │ │ └── sqlalchemy.py ├── pytest.ini ├── requirements-dev.in ├── requirements.in ├── requirements.txt ├── storage │ ├── log │ │ └── log.txt │ ├── memory │ │ └── chat_history.txt │ └── vector_store │ │ └── 01.项目API文档.md └── test │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── __init__.cpython-39.pyc │ ├── conftest.cpython-310-pytest-8.1.1.pyc │ └── conftest.cpython-39-pytest-8.3.5.pyc │ ├── conftest.py │ └── internal │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-310.pyc │ └── __init__.cpython-39.pyc │ └── handler │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── __init__.cpython-39.pyc │ ├── test_api_tool_handler.cpython-39-pytest-8.3.5.pyc │ ├── test_app_handler.cpython-310-pytest-8.1.1.pyc │ ├── test_app_handler.cpython-39-pytest-8.3.5.pyc │ └── test_builtin_tool_handler.cpython-39-pytest-8.3.5.pyc │ ├── test_api_tool_handler.py │ ├── test_app_handler.py │ └── test_builtin_tool_handler.py ├── docker ├── docker-compose.yaml ├── nginx │ ├── conf.d │ │ └── default.conf │ ├── nginx.conf │ └── proxy.conf └── postgres │ └── init.sql └── ui ├── .dockerignore ├── .env ├── .env.development ├── .env.production ├── .eslintrc.cjs ├── .gitignore ├── .prettierrc.json ├── Dockerfile ├── README.md ├── docker └── nginx │ └── nginx.conf ├── env.d.ts ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── public └── favicon.webp ├── src ├── App.vue ├── assets │ ├── images │ │ ├── 403.png │ │ ├── 404.png │ │ └── 404_cloud.png │ ├── logo.svg │ └── styles │ │ ├── main.css │ │ └── markdown.css ├── components │ ├── AgentThought.vue │ ├── AiMessage.vue │ ├── CodeHighLight.vue │ ├── DotFlashing.vue │ ├── HumanMessage.vue │ ├── OverviewIndicator.vue │ └── icons │ │ ├── IconApp.vue │ │ ├── IconAppFull.vue │ │ ├── IconEmpty.vue │ │ ├── IconHome.vue │ │ ├── IconHomeFull.vue │ │ ├── IconOpenApi.vue │ │ ├── IconOpenApiFull.vue │ │ ├── IconSpace.vue │ │ ├── IconSpaceFull.vue │ │ ├── IconTool.vue │ │ └── IconToolFull.vue ├── config │ └── index.ts ├── hooks │ ├── use-account.ts │ ├── use-ai.ts │ ├── use-analysis.ts │ ├── use-api-key.ts │ ├── use-app.ts │ ├── use-assistant-agent.ts │ ├── use-auth.ts │ ├── use-builtin-app.ts │ ├── use-builtin-tool.ts │ ├── use-conversation.ts │ ├── use-dataset.ts │ ├── use-language-model.ts │ ├── use-oauth.ts │ ├── use-tool.ts │ ├── use-upload-file.ts │ ├── use-web-app.ts │ └── use-workflow.ts ├── main.ts ├── models │ ├── account.ts │ ├── analysis.ts │ ├── api-key.ts │ ├── api-tool.ts │ ├── app.ts │ ├── assistant-agent.ts │ ├── auth.ts │ ├── base.ts │ ├── builtin-app.ts │ ├── builtin-tool.ts │ ├── conversation.ts │ ├── dataset.ts │ ├── language-model.ts │ ├── oauth.ts │ ├── upload-file.ts │ ├── web-app.ts │ └── workflow.ts ├── router │ └── index.ts ├── services │ ├── account.ts │ ├── ai.ts │ ├── analysis.ts │ ├── api-key.ts │ ├── api-tool.ts │ ├── app.ts │ ├── assistant-agent.ts │ ├── auth.ts │ ├── builtin-app.ts │ ├── builtin-tool.ts │ ├── conversation.ts │ ├── dataset.ts │ ├── language-model.ts │ ├── oauth.ts │ ├── upload-file.ts │ ├── web-app.ts │ └── workflow.ts ├── shims-vue.d.ts ├── stores │ ├── account.ts │ └── credential.ts ├── utils │ ├── auth.ts │ ├── helper.ts │ ├── request.ts │ └── storage.ts └── views │ ├── auth │ ├── AuthorizeView.vue │ ├── LoginView.vue │ └── components │ │ ├── LoginBanner.vue │ │ └── LoginForm.vue │ ├── errors │ ├── ForbiddenView.vue │ └── NotFoundView.vue │ ├── layouts │ ├── BlankLayout.vue │ ├── DefaultLayout.vue │ └── components │ │ ├── LayoutSidebar.vue │ │ └── SettingModal.vue │ ├── openapi │ ├── IndexView.vue │ ├── OpenAPILayoutView.vue │ ├── api-keys │ │ ├── ListView.vue │ │ └── components │ │ │ └── CreateOrUpdateApiKeyModal.vue │ └── quick-start.ts │ ├── pages │ └── HomeView.vue │ ├── space │ ├── SpaceLayoutView.vue │ ├── apps │ │ ├── AnalysisView.vue │ │ ├── AppLayoutView.vue │ │ ├── DetailView.vue │ │ ├── ListView.vue │ │ ├── PublishedView.vue │ │ └── components │ │ │ ├── AgentAppAbility.vue │ │ │ ├── CreateOrUpdateAppModal.vue │ │ │ ├── ModelConfig.vue │ │ │ ├── PresetPromptTextarea.vue │ │ │ ├── PreviewDebugChat.vue │ │ │ ├── PreviewDebugHeader.vue │ │ │ ├── PublishHistoryDrawer.vue │ │ │ └── abilities │ │ │ ├── DatasetsAbilityItem.vue │ │ │ ├── LongTermMemoryAbilityItem.vue │ │ │ ├── OpeningAbilityItem.vue │ │ │ ├── ReviewConfigAbilityItem.vue │ │ │ ├── SuggestedAfterAnswerAbilityItem.vue │ │ │ ├── ToolsAbilityItem.vue │ │ │ └── WorkflowsAbilityItem.vue │ ├── datasets │ │ ├── ListView.vue │ │ └── documents │ │ │ ├── CreateView.vue │ │ │ ├── ListView.vue │ │ │ ├── components │ │ │ ├── HitTestingModal.vue │ │ │ └── UpdateDocumentNameModal.vue │ │ │ └── segments │ │ │ ├── ListView.vue │ │ │ └── components │ │ │ └── CreateOrUpdateSegmentModal.vue │ ├── tools │ │ └── ListView.vue │ └── workflows │ │ ├── DetailView.vue │ │ ├── ListView.vue │ │ └── components │ │ ├── CreateOrUpdateWorkflowModal.vue │ │ ├── DebugModal.vue │ │ ├── infos │ │ ├── CodeNodeInfo.vue │ │ ├── DatasetRetrievalNodeInfo.vue │ │ ├── EndNodeInfo.vue │ │ ├── HttpRequestNodeInfo.vue │ │ ├── LLMNodeInfo.vue │ │ ├── StartNodeInfo.vue │ │ ├── TemplateTransformNodeInfo.vue │ │ ├── ToolNodeInfo.vue │ │ └── components │ │ │ └── ModelConfig.vue │ │ └── nodes │ │ ├── CodeNode.vue │ │ ├── DatasetRetrievalNode.vue │ │ ├── EndNode.vue │ │ ├── HttpRequestNode.vue │ │ ├── LLMNode.vue │ │ ├── StartNode.vue │ │ ├── TemplateTransformNode.vue │ │ └── ToolNode.vue │ ├── store │ ├── apps │ │ └── ListView.vue │ └── tools │ │ └── ListView.vue │ └── web-apps │ ├── IndexView.vue │ └── components │ └── UpdateNameModal.vue ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json ├── tsconfig.vitest.json ├── vite.config.ts └── vitest.config.ts /.gitignore: -------------------------------------------------------------------------------- 1 | docker/volumes/ 2 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/llmops.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/.idea/llmops.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/README.md -------------------------------------------------------------------------------- /README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/README_ZH.md -------------------------------------------------------------------------------- /api/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/.dockerignore -------------------------------------------------------------------------------- /api/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/.env -------------------------------------------------------------------------------- /api/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/.idea/.gitignore -------------------------------------------------------------------------------- /api/.idea/dataSources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/.idea/dataSources.xml -------------------------------------------------------------------------------- /api/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /api/.idea/llmops-api.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/.idea/llmops-api.iml -------------------------------------------------------------------------------- /api/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/.idea/misc.xml -------------------------------------------------------------------------------- /api/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/.idea/modules.xml -------------------------------------------------------------------------------- /api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/Dockerfile -------------------------------------------------------------------------------- /api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/README.md -------------------------------------------------------------------------------- /api/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/app/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/app/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /api/app/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/app/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /api/app/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/app/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/app/http/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/app/http/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/app/http/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /api/app/http/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/app/http/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/app/http/__pycache__/app.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/app/http/__pycache__/app.cpython-310.pyc -------------------------------------------------------------------------------- /api/app/http/__pycache__/app.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/app/http/__pycache__/app.cpython-39.pyc -------------------------------------------------------------------------------- /api/app/http/__pycache__/module.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/app/http/__pycache__/module.cpython-310.pyc -------------------------------------------------------------------------------- /api/app/http/__pycache__/module.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/app/http/__pycache__/module.cpython-39.pyc -------------------------------------------------------------------------------- /api/app/http/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/app/http/app.py -------------------------------------------------------------------------------- /api/app/http/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/app/http/module.py -------------------------------------------------------------------------------- /api/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/config/__init__.py -------------------------------------------------------------------------------- /api/config/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/config/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /api/config/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/config/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/config/__pycache__/config.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/config/__pycache__/config.cpython-310.pyc -------------------------------------------------------------------------------- /api/config/__pycache__/config.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/config/__pycache__/config.cpython-39.pyc -------------------------------------------------------------------------------- /api/config/__pycache__/default_config.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/config/__pycache__/default_config.cpython-310.pyc -------------------------------------------------------------------------------- /api/config/__pycache__/default_config.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/config/__pycache__/default_config.cpython-39.pyc -------------------------------------------------------------------------------- /api/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/config/config.py -------------------------------------------------------------------------------- /api/config/default_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/config/default_config.py -------------------------------------------------------------------------------- /api/docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/docker/entrypoint.sh -------------------------------------------------------------------------------- /api/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /api/internal/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/core/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/core/agent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/core/agent/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/agent/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/core/agent/agents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/agent/agents/__init__.py -------------------------------------------------------------------------------- /api/internal/core/agent/agents/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/agent/agents/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/core/agent/agents/__pycache__/base_agent.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/agent/agents/__pycache__/base_agent.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/core/agent/agents/__pycache__/react_agent.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/agent/agents/__pycache__/react_agent.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/core/agent/agents/agent_queue_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/agent/agents/agent_queue_manager.py -------------------------------------------------------------------------------- /api/internal/core/agent/agents/base_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/agent/agents/base_agent.py -------------------------------------------------------------------------------- /api/internal/core/agent/agents/function_call_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/agent/agents/function_call_agent.py -------------------------------------------------------------------------------- /api/internal/core/agent/agents/react_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/agent/agents/react_agent.py -------------------------------------------------------------------------------- /api/internal/core/agent/entities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/core/agent/entities/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/agent/entities/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/core/agent/entities/agent_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/agent/entities/agent_entity.py -------------------------------------------------------------------------------- /api/internal/core/agent/entities/queue_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/agent/entities/queue_entity.py -------------------------------------------------------------------------------- /api/internal/core/builtin_apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/builtin_apps/__init__.py -------------------------------------------------------------------------------- /api/internal/core/builtin_apps/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/builtin_apps/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/core/builtin_apps/builtin_app_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/builtin_apps/builtin_app_manager.py -------------------------------------------------------------------------------- /api/internal/core/builtin_apps/builtin_apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/core/builtin_apps/builtin_apps/llm_product_manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/builtin_apps/builtin_apps/llm_product_manager.yaml -------------------------------------------------------------------------------- /api/internal/core/builtin_apps/builtin_apps/travel_assistant.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/builtin_apps/builtin_apps/travel_assistant.yaml -------------------------------------------------------------------------------- /api/internal/core/builtin_apps/categories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/core/builtin_apps/categories/categories.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/builtin_apps/categories/categories.yaml -------------------------------------------------------------------------------- /api/internal/core/builtin_apps/entities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/core/builtin_apps/entities/builtin_app_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/builtin_apps/entities/builtin_app_entity.py -------------------------------------------------------------------------------- /api/internal/core/builtin_apps/entities/category_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/builtin_apps/entities/category_entity.py -------------------------------------------------------------------------------- /api/internal/core/file_extractor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/file_extractor/__init__.py -------------------------------------------------------------------------------- /api/internal/core/file_extractor/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/file_extractor/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/core/file_extractor/file_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/file_extractor/file_extractor.py -------------------------------------------------------------------------------- /api/internal/core/language_model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/language_model/__init__.py -------------------------------------------------------------------------------- /api/internal/core/language_model/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/language_model/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/core/language_model/entities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/core/language_model/entities/model_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/language_model/entities/model_entity.py -------------------------------------------------------------------------------- /api/internal/core/language_model/entities/provider_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/language_model/entities/provider_entity.py -------------------------------------------------------------------------------- /api/internal/core/language_model/language_model_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/language_model/language_model_manager.py -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/deepseek/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/deepseek/_asset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/language_model/providers/deepseek/_asset/icon.png -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/deepseek/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/language_model/providers/deepseek/chat.py -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/deepseek/positions.yaml: -------------------------------------------------------------------------------- 1 | - deepseek-chat 2 | -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/moonshot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/moonshot/_asset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/language_model/providers/moonshot/_asset/icon.png -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/moonshot/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/language_model/providers/moonshot/chat.py -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/moonshot/positions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/language_model/providers/moonshot/positions.yaml -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/ollama/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/ollama/_asset/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/language_model/providers/ollama/_asset/icon.svg -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/ollama/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/language_model/providers/ollama/chat.py -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/ollama/deepseek-r1-8b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/language_model/providers/ollama/deepseek-r1-8b.yaml -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/ollama/positions.yaml: -------------------------------------------------------------------------------- 1 | - deepseek-r1-8b -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/openai/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/openai/_asset/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/language_model/providers/openai/_asset/icon.svg -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/openai/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/language_model/providers/openai/chat.py -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/openai/completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/language_model/providers/openai/completion.py -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/openai/gpt-4o-mini.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/language_model/providers/openai/gpt-4o-mini.yaml -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/openai/gpt-4o.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/language_model/providers/openai/gpt-4o.yaml -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/openai/positions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/language_model/providers/openai/positions.yaml -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/providers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/language_model/providers/providers.yaml -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/tongyi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/tongyi/_asset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/language_model/providers/tongyi/_asset/icon.png -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/tongyi/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/language_model/providers/tongyi/chat.py -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/tongyi/positions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/language_model/providers/tongyi/positions.yaml -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/tongyi/qwen-max.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/language_model/providers/tongyi/qwen-max.yaml -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/tongyi/qwen-plus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/language_model/providers/tongyi/qwen-plus.yaml -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/wenxin/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/wenxin/_asset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/language_model/providers/wenxin/_asset/icon.png -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/wenxin/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/language_model/providers/wenxin/chat.py -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/wenxin/ernie-3.5-128k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/language_model/providers/wenxin/ernie-3.5-128k.yaml -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/wenxin/ernie-3.5-8k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/language_model/providers/wenxin/ernie-3.5-8k.yaml -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/wenxin/ernie-4.0-8k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/language_model/providers/wenxin/ernie-4.0-8k.yaml -------------------------------------------------------------------------------- /api/internal/core/language_model/providers/wenxin/positions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/language_model/providers/wenxin/positions.yaml -------------------------------------------------------------------------------- /api/internal/core/memory/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/memory/__init__.py -------------------------------------------------------------------------------- /api/internal/core/memory/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/memory/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/core/memory/token_buffer_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/memory/token_buffer_memory.py -------------------------------------------------------------------------------- /api/internal/core/retrievers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/retrievers/__init__.py -------------------------------------------------------------------------------- /api/internal/core/retrievers/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/retrievers/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/core/retrievers/__pycache__/semantic.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/retrievers/__pycache__/semantic.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/core/retrievers/full_text_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/retrievers/full_text_retriever.py -------------------------------------------------------------------------------- /api/internal/core/retrievers/semantic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/retrievers/semantic.py -------------------------------------------------------------------------------- /api/internal/core/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/core/tools/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/tools/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/core/tools/api_tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/core/tools/api_tools/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/tools/api_tools/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/core/tools/api_tools/entities/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/tools/api_tools/entities/__init__.py -------------------------------------------------------------------------------- /api/internal/core/tools/api_tools/entities/openapi_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/tools/api_tools/entities/openapi_schema.py -------------------------------------------------------------------------------- /api/internal/core/tools/api_tools/entities/tool_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/tools/api_tools/entities/tool_entity.py -------------------------------------------------------------------------------- /api/internal/core/tools/api_tools/providers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/tools/api_tools/providers/__init__.py -------------------------------------------------------------------------------- /api/internal/core/tools/api_tools/providers/api_provider_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/tools/api_tools/providers/api_provider_manager.py -------------------------------------------------------------------------------- /api/internal/core/tools/builtin_tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/core/tools/builtin_tools/categories/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/tools/builtin_tools/categories/__init__.py -------------------------------------------------------------------------------- /api/internal/core/tools/builtin_tools/categories/categories.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/tools/builtin_tools/categories/categories.yaml -------------------------------------------------------------------------------- /api/internal/core/tools/builtin_tools/categories/icons/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/tools/builtin_tools/categories/icons/image.svg -------------------------------------------------------------------------------- /api/internal/core/tools/builtin_tools/categories/icons/other.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/tools/builtin_tools/categories/icons/other.svg -------------------------------------------------------------------------------- /api/internal/core/tools/builtin_tools/categories/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/tools/builtin_tools/categories/icons/search.svg -------------------------------------------------------------------------------- /api/internal/core/tools/builtin_tools/categories/icons/tool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/tools/builtin_tools/categories/icons/tool.svg -------------------------------------------------------------------------------- /api/internal/core/tools/builtin_tools/categories/icons/weather.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/tools/builtin_tools/categories/icons/weather.svg -------------------------------------------------------------------------------- /api/internal/core/tools/builtin_tools/entities/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/tools/builtin_tools/entities/__init__.py -------------------------------------------------------------------------------- /api/internal/core/tools/builtin_tools/entities/category_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/tools/builtin_tools/entities/category_entity.py -------------------------------------------------------------------------------- /api/internal/core/tools/builtin_tools/entities/provider_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/tools/builtin_tools/entities/provider_entity.py -------------------------------------------------------------------------------- /api/internal/core/tools/builtin_tools/entities/tool_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/tools/builtin_tools/entities/tool_entity.py -------------------------------------------------------------------------------- /api/internal/core/tools/builtin_tools/providers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/tools/builtin_tools/providers/__init__.py -------------------------------------------------------------------------------- /api/internal/core/tools/builtin_tools/providers/dalle/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/tools/builtin_tools/providers/dalle/__init__.py -------------------------------------------------------------------------------- /api/internal/core/tools/builtin_tools/providers/dalle/_asset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/tools/builtin_tools/providers/dalle/_asset/icon.png -------------------------------------------------------------------------------- /api/internal/core/tools/builtin_tools/providers/dalle/dalle3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/tools/builtin_tools/providers/dalle/dalle3.py -------------------------------------------------------------------------------- /api/internal/core/tools/builtin_tools/providers/dalle/dalle3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/tools/builtin_tools/providers/dalle/dalle3.yaml -------------------------------------------------------------------------------- /api/internal/core/tools/builtin_tools/providers/dalle/positions.yaml: -------------------------------------------------------------------------------- 1 | - dalle3 -------------------------------------------------------------------------------- /api/internal/core/tools/builtin_tools/providers/gaode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/tools/builtin_tools/providers/gaode/__init__.py -------------------------------------------------------------------------------- /api/internal/core/tools/builtin_tools/providers/gaode/_asset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/tools/builtin_tools/providers/gaode/_asset/icon.png -------------------------------------------------------------------------------- /api/internal/core/tools/builtin_tools/providers/gaode/positions.yaml: -------------------------------------------------------------------------------- 1 | - gaode_weather -------------------------------------------------------------------------------- /api/internal/core/tools/builtin_tools/providers/google/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/tools/builtin_tools/providers/google/__init__.py -------------------------------------------------------------------------------- /api/internal/core/tools/builtin_tools/providers/google/positions.yaml: -------------------------------------------------------------------------------- 1 | - google_serper -------------------------------------------------------------------------------- /api/internal/core/tools/builtin_tools/providers/providers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/tools/builtin_tools/providers/providers.yaml -------------------------------------------------------------------------------- /api/internal/core/tools/builtin_tools/providers/time/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/tools/builtin_tools/providers/time/__init__.py -------------------------------------------------------------------------------- /api/internal/core/tools/builtin_tools/providers/time/_asset/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/tools/builtin_tools/providers/time/_asset/icon.svg -------------------------------------------------------------------------------- /api/internal/core/tools/builtin_tools/providers/time/current_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/tools/builtin_tools/providers/time/current_time.py -------------------------------------------------------------------------------- /api/internal/core/tools/builtin_tools/providers/time/positions.yaml: -------------------------------------------------------------------------------- 1 | - current_time -------------------------------------------------------------------------------- /api/internal/core/tools/builtin_tools/providers/wikipedia/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/tools/builtin_tools/providers/wikipedia/__init__.py -------------------------------------------------------------------------------- /api/internal/core/tools/builtin_tools/providers/wikipedia/positions.yaml: -------------------------------------------------------------------------------- 1 | - wikipedia_search -------------------------------------------------------------------------------- /api/internal/core/unstructured/nltk_data/tokenizers/punkt/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/unstructured/nltk_data/tokenizers/punkt/.DS_Store -------------------------------------------------------------------------------- /api/internal/core/unstructured/nltk_data/tokenizers/punkt/PY3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/unstructured/nltk_data/tokenizers/punkt/PY3/README -------------------------------------------------------------------------------- /api/internal/core/unstructured/nltk_data/tokenizers/punkt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/unstructured/nltk_data/tokenizers/punkt/README -------------------------------------------------------------------------------- /api/internal/core/unstructured/nltk_data/tokenizers/punkt_tab/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/unstructured/nltk_data/tokenizers/punkt_tab/README -------------------------------------------------------------------------------- /api/internal/core/unstructured/nltk_data/tokenizers/punkt_tab/russian/collocations.tab: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/core/unstructured/nltk_data/tokenizers/punkt_tab/russian/ortho_context.tab: -------------------------------------------------------------------------------- 1 | download 0 -------------------------------------------------------------------------------- /api/internal/core/unstructured/nltk_data/tokenizers/punkt_tab/russian/sent_starters.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/core/vector_store/index.faiss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/vector_store/index.faiss -------------------------------------------------------------------------------- /api/internal/core/vector_store/index.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/vector_store/index.pkl -------------------------------------------------------------------------------- /api/internal/core/workflow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/__init__.py -------------------------------------------------------------------------------- /api/internal/core/workflow/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/core/workflow/__pycache__/workflow.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/__pycache__/workflow.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/core/workflow/entities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/core/workflow/entities/edge_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/entities/edge_entity.py -------------------------------------------------------------------------------- /api/internal/core/workflow/entities/node_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/entities/node_entity.py -------------------------------------------------------------------------------- /api/internal/core/workflow/entities/variable_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/entities/variable_entity.py -------------------------------------------------------------------------------- /api/internal/core/workflow/entities/workflow_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/entities/workflow_entity.py -------------------------------------------------------------------------------- /api/internal/core/workflow/nodes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/nodes/__init__.py -------------------------------------------------------------------------------- /api/internal/core/workflow/nodes/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/nodes/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/core/workflow/nodes/__pycache__/base_node.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/nodes/__pycache__/base_node.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/core/workflow/nodes/base_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/nodes/base_node.py -------------------------------------------------------------------------------- /api/internal/core/workflow/nodes/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/core/workflow/nodes/code/code_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/nodes/code/code_entity.py -------------------------------------------------------------------------------- /api/internal/core/workflow/nodes/code/code_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/nodes/code/code_node.py -------------------------------------------------------------------------------- /api/internal/core/workflow/nodes/dataset_retrieval/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/nodes/dataset_retrieval/__init__.py -------------------------------------------------------------------------------- /api/internal/core/workflow/nodes/end/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/nodes/end/__init__.py -------------------------------------------------------------------------------- /api/internal/core/workflow/nodes/end/end_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/nodes/end/end_entity.py -------------------------------------------------------------------------------- /api/internal/core/workflow/nodes/end/end_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/nodes/end/end_node.py -------------------------------------------------------------------------------- /api/internal/core/workflow/nodes/http_request/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/nodes/http_request/__init__.py -------------------------------------------------------------------------------- /api/internal/core/workflow/nodes/http_request/http_request_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/nodes/http_request/http_request_entity.py -------------------------------------------------------------------------------- /api/internal/core/workflow/nodes/http_request/http_request_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/nodes/http_request/http_request_node.py -------------------------------------------------------------------------------- /api/internal/core/workflow/nodes/llm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/nodes/llm/__init__.py -------------------------------------------------------------------------------- /api/internal/core/workflow/nodes/llm/llm_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/nodes/llm/llm_entity.py -------------------------------------------------------------------------------- /api/internal/core/workflow/nodes/llm/llm_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/nodes/llm/llm_node.py -------------------------------------------------------------------------------- /api/internal/core/workflow/nodes/start/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/nodes/start/__init__.py -------------------------------------------------------------------------------- /api/internal/core/workflow/nodes/start/start_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/nodes/start/start_entity.py -------------------------------------------------------------------------------- /api/internal/core/workflow/nodes/start/start_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/nodes/start/start_node.py -------------------------------------------------------------------------------- /api/internal/core/workflow/nodes/template_transform/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/nodes/template_transform/__init__.py -------------------------------------------------------------------------------- /api/internal/core/workflow/nodes/tool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/nodes/tool/__init__.py -------------------------------------------------------------------------------- /api/internal/core/workflow/nodes/tool/tool_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/nodes/tool/tool_entity.py -------------------------------------------------------------------------------- /api/internal/core/workflow/nodes/tool/tool_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/nodes/tool/tool_node.py -------------------------------------------------------------------------------- /api/internal/core/workflow/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/core/workflow/utils/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/utils/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/core/workflow/utils/__pycache__/helper.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/utils/__pycache__/helper.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/core/workflow/utils/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/utils/helper.py -------------------------------------------------------------------------------- /api/internal/core/workflow/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/core/workflow/workflow.py -------------------------------------------------------------------------------- /api/internal/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/entity/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/entity/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/entity/__pycache__/ai_entity.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/entity/__pycache__/ai_entity.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/entity/__pycache__/app_entity.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/entity/__pycache__/app_entity.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/entity/__pycache__/cache_entity.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/entity/__pycache__/cache_entity.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/entity/__pycache__/conversation_entity.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/entity/__pycache__/conversation_entity.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/entity/__pycache__/dataset_entity.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/entity/__pycache__/dataset_entity.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/entity/__pycache__/jieba_entity.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/entity/__pycache__/jieba_entity.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/entity/__pycache__/upload_file_entity.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/entity/__pycache__/upload_file_entity.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/entity/__pycache__/workflow_entity.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/entity/__pycache__/workflow_entity.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/entity/ai_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/entity/ai_entity.py -------------------------------------------------------------------------------- /api/internal/entity/app_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/entity/app_entity.py -------------------------------------------------------------------------------- /api/internal/entity/cache_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/entity/cache_entity.py -------------------------------------------------------------------------------- /api/internal/entity/conversation_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/entity/conversation_entity.py -------------------------------------------------------------------------------- /api/internal/entity/dataset_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/entity/dataset_entity.py -------------------------------------------------------------------------------- /api/internal/entity/jieba_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/entity/jieba_entity.py -------------------------------------------------------------------------------- /api/internal/entity/upload_file_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/entity/upload_file_entity.py -------------------------------------------------------------------------------- /api/internal/entity/workflow_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/entity/workflow_entity.py -------------------------------------------------------------------------------- /api/internal/exception/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/exception/__init__.py -------------------------------------------------------------------------------- /api/internal/exception/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/exception/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /api/internal/exception/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/exception/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/exception/__pycache__/exception.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/exception/__pycache__/exception.cpython-310.pyc -------------------------------------------------------------------------------- /api/internal/exception/__pycache__/exception.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/exception/__pycache__/exception.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/exception/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/exception/exception.py -------------------------------------------------------------------------------- /api/internal/extension/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /api/internal/extension/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/extension/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /api/internal/extension/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/extension/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/extension/__pycache__/celery_extension.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/extension/__pycache__/celery_extension.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/extension/__pycache__/database_extension.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/extension/__pycache__/database_extension.cpython-310.pyc -------------------------------------------------------------------------------- /api/internal/extension/__pycache__/database_extension.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/extension/__pycache__/database_extension.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/extension/__pycache__/logging_extension.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/extension/__pycache__/logging_extension.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/extension/__pycache__/login_extension.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/extension/__pycache__/login_extension.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/extension/__pycache__/migrate_extension.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/extension/__pycache__/migrate_extension.cpython-310.pyc -------------------------------------------------------------------------------- /api/internal/extension/__pycache__/migrate_extension.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/extension/__pycache__/migrate_extension.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/extension/__pycache__/redis_extension.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/extension/__pycache__/redis_extension.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/extension/__pycache__/weaviate_extension.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/extension/__pycache__/weaviate_extension.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/extension/celery_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/extension/celery_extension.py -------------------------------------------------------------------------------- /api/internal/extension/database_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/extension/database_extension.py -------------------------------------------------------------------------------- /api/internal/extension/logging_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/extension/logging_extension.py -------------------------------------------------------------------------------- /api/internal/extension/login_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/extension/login_extension.py -------------------------------------------------------------------------------- /api/internal/extension/migrate_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/extension/migrate_extension.py -------------------------------------------------------------------------------- /api/internal/extension/redis_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/extension/redis_extension.py -------------------------------------------------------------------------------- /api/internal/extension/weaviate_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/extension/weaviate_extension.py -------------------------------------------------------------------------------- /api/internal/handler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/__init__.py -------------------------------------------------------------------------------- /api/internal/handler/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /api/internal/handler/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/handler/__pycache__/account_handler.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/__pycache__/account_handler.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/handler/__pycache__/ai_handler.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/__pycache__/ai_handler.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/handler/__pycache__/analysis_handler.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/__pycache__/analysis_handler.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/handler/__pycache__/api_key_handler.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/__pycache__/api_key_handler.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/handler/__pycache__/api_tool_handler.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/__pycache__/api_tool_handler.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/handler/__pycache__/app_handler.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/__pycache__/app_handler.cpython-310.pyc -------------------------------------------------------------------------------- /api/internal/handler/__pycache__/app_handler.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/__pycache__/app_handler.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/handler/__pycache__/auth_handler.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/__pycache__/auth_handler.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/handler/__pycache__/builtin_app_handler.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/__pycache__/builtin_app_handler.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/handler/__pycache__/builtin_tool_handler.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/__pycache__/builtin_tool_handler.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/handler/__pycache__/conversation_handler.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/__pycache__/conversation_handler.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/handler/__pycache__/dataset_handler.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/__pycache__/dataset_handler.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/handler/__pycache__/document_handler.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/__pycache__/document_handler.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/handler/__pycache__/oauth_handler.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/__pycache__/oauth_handler.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/handler/__pycache__/openapi_handler.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/__pycache__/openapi_handler.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/handler/__pycache__/segment_handler.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/__pycache__/segment_handler.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/handler/__pycache__/upload_file_handler.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/__pycache__/upload_file_handler.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/handler/__pycache__/web_app_handler.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/__pycache__/web_app_handler.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/handler/__pycache__/workflow_handler.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/__pycache__/workflow_handler.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/handler/account_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/account_handler.py -------------------------------------------------------------------------------- /api/internal/handler/ai_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/ai_handler.py -------------------------------------------------------------------------------- /api/internal/handler/analysis_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/analysis_handler.py -------------------------------------------------------------------------------- /api/internal/handler/api_key_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/api_key_handler.py -------------------------------------------------------------------------------- /api/internal/handler/api_tool_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/api_tool_handler.py -------------------------------------------------------------------------------- /api/internal/handler/app_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/app_handler.py -------------------------------------------------------------------------------- /api/internal/handler/assistant_agent_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/assistant_agent_handler.py -------------------------------------------------------------------------------- /api/internal/handler/auth_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/auth_handler.py -------------------------------------------------------------------------------- /api/internal/handler/builtin_app_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/builtin_app_handler.py -------------------------------------------------------------------------------- /api/internal/handler/builtin_tool_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/builtin_tool_handler.py -------------------------------------------------------------------------------- /api/internal/handler/conversation_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/conversation_handler.py -------------------------------------------------------------------------------- /api/internal/handler/dataset_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/dataset_handler.py -------------------------------------------------------------------------------- /api/internal/handler/document_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/document_handler.py -------------------------------------------------------------------------------- /api/internal/handler/language_model_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/language_model_handler.py -------------------------------------------------------------------------------- /api/internal/handler/oauth_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/oauth_handler.py -------------------------------------------------------------------------------- /api/internal/handler/openapi_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/openapi_handler.py -------------------------------------------------------------------------------- /api/internal/handler/segment_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/segment_handler.py -------------------------------------------------------------------------------- /api/internal/handler/upload_file_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/upload_file_handler.py -------------------------------------------------------------------------------- /api/internal/handler/web_app_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/web_app_handler.py -------------------------------------------------------------------------------- /api/internal/handler/workflow_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/handler/workflow_handler.py -------------------------------------------------------------------------------- /api/internal/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/lib/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/lib/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/lib/__pycache__/helper.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/lib/__pycache__/helper.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/lib/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/lib/helper.py -------------------------------------------------------------------------------- /api/internal/middleware/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/middleware/__init__.py -------------------------------------------------------------------------------- /api/internal/middleware/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/middleware/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/middleware/__pycache__/middleware.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/middleware/__pycache__/middleware.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/middleware/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/middleware/middleware.py -------------------------------------------------------------------------------- /api/internal/migration/README: -------------------------------------------------------------------------------- 1 | Single-database configuration for Flask. 2 | -------------------------------------------------------------------------------- /api/internal/migration/__pycache__/env.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/migration/__pycache__/env.cpython-310.pyc -------------------------------------------------------------------------------- /api/internal/migration/__pycache__/env.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/migration/__pycache__/env.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/migration/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/migration/alembic.ini -------------------------------------------------------------------------------- /api/internal/migration/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/migration/env.py -------------------------------------------------------------------------------- /api/internal/migration/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/migration/script.py.mako -------------------------------------------------------------------------------- /api/internal/migration/versions/09b68127ca41_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/migration/versions/09b68127ca41_.py -------------------------------------------------------------------------------- /api/internal/migration/versions/09ca1473ee05_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/migration/versions/09ca1473ee05_.py -------------------------------------------------------------------------------- /api/internal/migration/versions/0a9f4c627c6b_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/migration/versions/0a9f4c627c6b_.py -------------------------------------------------------------------------------- /api/internal/migration/versions/220a6ac3acd4_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/migration/versions/220a6ac3acd4_.py -------------------------------------------------------------------------------- /api/internal/migration/versions/352fdd9a242c_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/migration/versions/352fdd9a242c_.py -------------------------------------------------------------------------------- /api/internal/migration/versions/35de684db809_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/migration/versions/35de684db809_.py -------------------------------------------------------------------------------- /api/internal/migration/versions/3af1461df100_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/migration/versions/3af1461df100_.py -------------------------------------------------------------------------------- /api/internal/migration/versions/4bd8c0f7ec6a_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/migration/versions/4bd8c0f7ec6a_.py -------------------------------------------------------------------------------- /api/internal/migration/versions/56bccd738896_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/migration/versions/56bccd738896_.py -------------------------------------------------------------------------------- /api/internal/migration/versions/7e241d9cc651_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/migration/versions/7e241d9cc651_.py -------------------------------------------------------------------------------- /api/internal/migration/versions/8042a1160a4d_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/migration/versions/8042a1160a4d_.py -------------------------------------------------------------------------------- /api/internal/migration/versions/858200175b1f_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/migration/versions/858200175b1f_.py -------------------------------------------------------------------------------- /api/internal/migration/versions/ab0fba23ea27_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/migration/versions/ab0fba23ea27_.py -------------------------------------------------------------------------------- /api/internal/migration/versions/b52800c83707_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/migration/versions/b52800c83707_.py -------------------------------------------------------------------------------- /api/internal/migration/versions/c100026d1885_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/migration/versions/c100026d1885_.py -------------------------------------------------------------------------------- /api/internal/migration/versions/dbbb4f3fe0c7_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/migration/versions/dbbb4f3fe0c7_.py -------------------------------------------------------------------------------- /api/internal/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/model/__init__.py -------------------------------------------------------------------------------- /api/internal/model/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/model/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /api/internal/model/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/model/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/model/__pycache__/account.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/model/__pycache__/account.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/model/__pycache__/api_key.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/model/__pycache__/api_key.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/model/__pycache__/api_tool.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/model/__pycache__/api_tool.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/model/__pycache__/app.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/model/__pycache__/app.cpython-310.pyc -------------------------------------------------------------------------------- /api/internal/model/__pycache__/app.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/model/__pycache__/app.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/model/__pycache__/conversation.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/model/__pycache__/conversation.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/model/__pycache__/dataset.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/model/__pycache__/dataset.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/model/__pycache__/end_user.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/model/__pycache__/end_user.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/model/__pycache__/upload_file.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/model/__pycache__/upload_file.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/model/__pycache__/workflow.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/model/__pycache__/workflow.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/model/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/model/account.py -------------------------------------------------------------------------------- /api/internal/model/api_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/model/api_key.py -------------------------------------------------------------------------------- /api/internal/model/api_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/model/api_tool.py -------------------------------------------------------------------------------- /api/internal/model/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/model/app.py -------------------------------------------------------------------------------- /api/internal/model/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/model/conversation.py -------------------------------------------------------------------------------- /api/internal/model/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/model/dataset.py -------------------------------------------------------------------------------- /api/internal/model/end_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/model/end_user.py -------------------------------------------------------------------------------- /api/internal/model/upload_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/model/upload_file.py -------------------------------------------------------------------------------- /api/internal/model/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/model/workflow.py -------------------------------------------------------------------------------- /api/internal/router/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/router/__init__.py -------------------------------------------------------------------------------- /api/internal/router/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/router/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /api/internal/router/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/router/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/router/__pycache__/router.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/router/__pycache__/router.cpython-310.pyc -------------------------------------------------------------------------------- /api/internal/router/__pycache__/router.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/router/__pycache__/router.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/router/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/router/router.py -------------------------------------------------------------------------------- /api/internal/schedule/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/schema/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/__init__.py -------------------------------------------------------------------------------- /api/internal/schema/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /api/internal/schema/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/schema/__pycache__/account_schema.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/__pycache__/account_schema.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/schema/__pycache__/ai_schema.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/__pycache__/ai_schema.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/schema/__pycache__/api_key_schema.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/__pycache__/api_key_schema.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/schema/__pycache__/api_tool_schema.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/__pycache__/api_tool_schema.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/schema/__pycache__/app_schema.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/__pycache__/app_schema.cpython-310.pyc -------------------------------------------------------------------------------- /api/internal/schema/__pycache__/app_schema.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/__pycache__/app_schema.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/schema/__pycache__/assistant_agent_schema.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/__pycache__/assistant_agent_schema.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/schema/__pycache__/auth_schema.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/__pycache__/auth_schema.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/schema/__pycache__/builtin_app_schema.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/__pycache__/builtin_app_schema.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/schema/__pycache__/conversation_schema.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/__pycache__/conversation_schema.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/schema/__pycache__/dataset_schema.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/__pycache__/dataset_schema.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/schema/__pycache__/document_schema.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/__pycache__/document_schema.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/schema/__pycache__/oauth_schema.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/__pycache__/oauth_schema.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/schema/__pycache__/openapi_schema.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/__pycache__/openapi_schema.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/schema/__pycache__/schema.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/__pycache__/schema.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/schema/__pycache__/segment_schema.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/__pycache__/segment_schema.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/schema/__pycache__/upload_file_schema.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/__pycache__/upload_file_schema.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/schema/__pycache__/web_app_schema.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/__pycache__/web_app_schema.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/schema/__pycache__/workflow_schema.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/__pycache__/workflow_schema.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/schema/account_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/account_schema.py -------------------------------------------------------------------------------- /api/internal/schema/ai_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/ai_schema.py -------------------------------------------------------------------------------- /api/internal/schema/api_key_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/api_key_schema.py -------------------------------------------------------------------------------- /api/internal/schema/api_tool_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/api_tool_schema.py -------------------------------------------------------------------------------- /api/internal/schema/app_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/app_schema.py -------------------------------------------------------------------------------- /api/internal/schema/assistant_agent_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/assistant_agent_schema.py -------------------------------------------------------------------------------- /api/internal/schema/auth_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/auth_schema.py -------------------------------------------------------------------------------- /api/internal/schema/builtin_app_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/builtin_app_schema.py -------------------------------------------------------------------------------- /api/internal/schema/conversation_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/conversation_schema.py -------------------------------------------------------------------------------- /api/internal/schema/dataset_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/dataset_schema.py -------------------------------------------------------------------------------- /api/internal/schema/document_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/document_schema.py -------------------------------------------------------------------------------- /api/internal/schema/oauth_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/oauth_schema.py -------------------------------------------------------------------------------- /api/internal/schema/openapi_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/openapi_schema.py -------------------------------------------------------------------------------- /api/internal/schema/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/schema.py -------------------------------------------------------------------------------- /api/internal/schema/segment_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/segment_schema.py -------------------------------------------------------------------------------- /api/internal/schema/upload_file_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/upload_file_schema.py -------------------------------------------------------------------------------- /api/internal/schema/web_app_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/web_app_schema.py -------------------------------------------------------------------------------- /api/internal/schema/workflow_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/schema/workflow_schema.py -------------------------------------------------------------------------------- /api/internal/server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/server/__init__.py -------------------------------------------------------------------------------- /api/internal/server/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/server/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /api/internal/server/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/server/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/server/__pycache__/http.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/server/__pycache__/http.cpython-310.pyc -------------------------------------------------------------------------------- /api/internal/server/__pycache__/http.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/server/__pycache__/http.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/server/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/server/http.py -------------------------------------------------------------------------------- /api/internal/service/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/__init__.py -------------------------------------------------------------------------------- /api/internal/service/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /api/internal/service/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/service/__pycache__/account_service.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/__pycache__/account_service.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/service/__pycache__/ai_service.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/__pycache__/ai_service.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/service/__pycache__/analysis_service.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/__pycache__/analysis_service.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/service/__pycache__/api_key_service.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/__pycache__/api_key_service.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/service/__pycache__/api_tool_service.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/__pycache__/api_tool_service.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/service/__pycache__/app_config_service.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/__pycache__/app_config_service.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/service/__pycache__/app_service.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/__pycache__/app_service.cpython-310.pyc -------------------------------------------------------------------------------- /api/internal/service/__pycache__/app_service.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/__pycache__/app_service.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/service/__pycache__/base_service.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/__pycache__/base_service.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/service/__pycache__/builtin_app_service.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/__pycache__/builtin_app_service.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/service/__pycache__/builtin_tool_service.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/__pycache__/builtin_tool_service.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/service/__pycache__/conversation_service.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/__pycache__/conversation_service.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/service/__pycache__/cos_service.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/__pycache__/cos_service.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/service/__pycache__/dataset_service.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/__pycache__/dataset_service.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/service/__pycache__/document_service.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/__pycache__/document_service.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/service/__pycache__/embeddings_service.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/__pycache__/embeddings_service.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/service/__pycache__/faiss_service.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/__pycache__/faiss_service.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/service/__pycache__/indexing_service.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/__pycache__/indexing_service.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/service/__pycache__/jieba_service.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/__pycache__/jieba_service.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/service/__pycache__/jwt_service.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/__pycache__/jwt_service.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/service/__pycache__/keyword_table_service.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/__pycache__/keyword_table_service.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/service/__pycache__/oauth_service.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/__pycache__/oauth_service.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/service/__pycache__/openapi_service.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/__pycache__/openapi_service.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/service/__pycache__/process_rule_service.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/__pycache__/process_rule_service.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/service/__pycache__/retrieval_service.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/__pycache__/retrieval_service.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/service/__pycache__/segment_service.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/__pycache__/segment_service.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/service/__pycache__/upload_file_service.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/__pycache__/upload_file_service.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/service/__pycache__/web_app_service.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/__pycache__/web_app_service.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/service/__pycache__/workflow_service.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/__pycache__/workflow_service.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/service/account_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/account_service.py -------------------------------------------------------------------------------- /api/internal/service/ai_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/ai_service.py -------------------------------------------------------------------------------- /api/internal/service/analysis_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/analysis_service.py -------------------------------------------------------------------------------- /api/internal/service/api_key_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/api_key_service.py -------------------------------------------------------------------------------- /api/internal/service/api_tool_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/api_tool_service.py -------------------------------------------------------------------------------- /api/internal/service/app_config_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/app_config_service.py -------------------------------------------------------------------------------- /api/internal/service/app_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/app_service.py -------------------------------------------------------------------------------- /api/internal/service/assistant_agent_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/assistant_agent_service.py -------------------------------------------------------------------------------- /api/internal/service/base_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/base_service.py -------------------------------------------------------------------------------- /api/internal/service/builtin_app_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/builtin_app_service.py -------------------------------------------------------------------------------- /api/internal/service/builtin_tool_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/builtin_tool_service.py -------------------------------------------------------------------------------- /api/internal/service/conversation_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/conversation_service.py -------------------------------------------------------------------------------- /api/internal/service/cos_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/cos_service.py -------------------------------------------------------------------------------- /api/internal/service/dataset_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/dataset_service.py -------------------------------------------------------------------------------- /api/internal/service/document_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/document_service.py -------------------------------------------------------------------------------- /api/internal/service/embeddings_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/embeddings_service.py -------------------------------------------------------------------------------- /api/internal/service/faiss_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/faiss_service.py -------------------------------------------------------------------------------- /api/internal/service/indexing_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/indexing_service.py -------------------------------------------------------------------------------- /api/internal/service/jieba_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/jieba_service.py -------------------------------------------------------------------------------- /api/internal/service/jwt_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/jwt_service.py -------------------------------------------------------------------------------- /api/internal/service/keyword_table_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/keyword_table_service.py -------------------------------------------------------------------------------- /api/internal/service/language_model_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/language_model_service.py -------------------------------------------------------------------------------- /api/internal/service/oauth_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/oauth_service.py -------------------------------------------------------------------------------- /api/internal/service/openapi_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/openapi_service.py -------------------------------------------------------------------------------- /api/internal/service/process_rule_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/process_rule_service.py -------------------------------------------------------------------------------- /api/internal/service/retrieval_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/retrieval_service.py -------------------------------------------------------------------------------- /api/internal/service/segment_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/segment_service.py -------------------------------------------------------------------------------- /api/internal/service/upload_file_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/upload_file_service.py -------------------------------------------------------------------------------- /api/internal/service/vector_database_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/vector_database_service.py -------------------------------------------------------------------------------- /api/internal/service/web_app_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/web_app_service.py -------------------------------------------------------------------------------- /api/internal/service/workflow_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/service/workflow_service.py -------------------------------------------------------------------------------- /api/internal/task/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/task/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/task/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/task/__pycache__/app_task.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/task/__pycache__/app_task.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/task/__pycache__/dataset_task.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/task/__pycache__/dataset_task.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/task/__pycache__/demo_task.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/task/__pycache__/demo_task.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/task/__pycache__/document_task.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/task/__pycache__/document_task.cpython-39.pyc -------------------------------------------------------------------------------- /api/internal/task/app_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/task/app_task.py -------------------------------------------------------------------------------- /api/internal/task/dataset_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/task/dataset_task.py -------------------------------------------------------------------------------- /api/internal/task/demo_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/task/demo_task.py -------------------------------------------------------------------------------- /api/internal/task/document_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/internal/task/document_task.py -------------------------------------------------------------------------------- /api/pkg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/pkg/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/pkg/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /api/pkg/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/pkg/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/pkg/oauth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/pkg/oauth/__init__.py -------------------------------------------------------------------------------- /api/pkg/oauth/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/pkg/oauth/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/pkg/oauth/__pycache__/github_oauth.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/pkg/oauth/__pycache__/github_oauth.cpython-39.pyc -------------------------------------------------------------------------------- /api/pkg/oauth/__pycache__/oauth.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/pkg/oauth/__pycache__/oauth.cpython-39.pyc -------------------------------------------------------------------------------- /api/pkg/oauth/github_oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/pkg/oauth/github_oauth.py -------------------------------------------------------------------------------- /api/pkg/oauth/oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/pkg/oauth/oauth.py -------------------------------------------------------------------------------- /api/pkg/paginator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/pkg/paginator/__init__.py -------------------------------------------------------------------------------- /api/pkg/paginator/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/pkg/paginator/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/pkg/paginator/__pycache__/paginator.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/pkg/paginator/__pycache__/paginator.cpython-39.pyc -------------------------------------------------------------------------------- /api/pkg/paginator/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/pkg/paginator/paginator.py -------------------------------------------------------------------------------- /api/pkg/password/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/pkg/password/__init__.py -------------------------------------------------------------------------------- /api/pkg/password/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/pkg/password/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/pkg/password/__pycache__/password.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/pkg/password/__pycache__/password.cpython-39.pyc -------------------------------------------------------------------------------- /api/pkg/password/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/pkg/password/password.py -------------------------------------------------------------------------------- /api/pkg/response/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/pkg/response/__init__.py -------------------------------------------------------------------------------- /api/pkg/response/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/pkg/response/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /api/pkg/response/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/pkg/response/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/pkg/response/__pycache__/http_code.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/pkg/response/__pycache__/http_code.cpython-310.pyc -------------------------------------------------------------------------------- /api/pkg/response/__pycache__/http_code.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/pkg/response/__pycache__/http_code.cpython-39.pyc -------------------------------------------------------------------------------- /api/pkg/response/__pycache__/response.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/pkg/response/__pycache__/response.cpython-310.pyc -------------------------------------------------------------------------------- /api/pkg/response/__pycache__/response.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/pkg/response/__pycache__/response.cpython-39.pyc -------------------------------------------------------------------------------- /api/pkg/response/http_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/pkg/response/http_code.py -------------------------------------------------------------------------------- /api/pkg/response/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/pkg/response/response.py -------------------------------------------------------------------------------- /api/pkg/sqlalchemy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/pkg/sqlalchemy/__init__.py -------------------------------------------------------------------------------- /api/pkg/sqlalchemy/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/pkg/sqlalchemy/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /api/pkg/sqlalchemy/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/pkg/sqlalchemy/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/pkg/sqlalchemy/__pycache__/sqlalchemy.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/pkg/sqlalchemy/__pycache__/sqlalchemy.cpython-310.pyc -------------------------------------------------------------------------------- /api/pkg/sqlalchemy/__pycache__/sqlalchemy.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/pkg/sqlalchemy/__pycache__/sqlalchemy.cpython-39.pyc -------------------------------------------------------------------------------- /api/pkg/sqlalchemy/sqlalchemy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/pkg/sqlalchemy/sqlalchemy.py -------------------------------------------------------------------------------- /api/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/pytest.ini -------------------------------------------------------------------------------- /api/requirements-dev.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/requirements-dev.in -------------------------------------------------------------------------------- /api/requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/requirements.in -------------------------------------------------------------------------------- /api/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/requirements.txt -------------------------------------------------------------------------------- /api/storage/log/log.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/storage/memory/chat_history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/storage/memory/chat_history.txt -------------------------------------------------------------------------------- /api/storage/vector_store/01.项目API文档.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/storage/vector_store/01.项目API文档.md -------------------------------------------------------------------------------- /api/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/test/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/test/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /api/test/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/test/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/test/__pycache__/conftest.cpython-310-pytest-8.1.1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/test/__pycache__/conftest.cpython-310-pytest-8.1.1.pyc -------------------------------------------------------------------------------- /api/test/__pycache__/conftest.cpython-39-pytest-8.3.5.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/test/__pycache__/conftest.cpython-39-pytest-8.3.5.pyc -------------------------------------------------------------------------------- /api/test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/test/conftest.py -------------------------------------------------------------------------------- /api/test/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/test/internal/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/test/internal/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /api/test/internal/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/test/internal/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/test/internal/handler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/test/internal/handler/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/test/internal/handler/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /api/test/internal/handler/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/test/internal/handler/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /api/test/internal/handler/test_api_tool_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/test/internal/handler/test_api_tool_handler.py -------------------------------------------------------------------------------- /api/test/internal/handler/test_app_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/test/internal/handler/test_app_handler.py -------------------------------------------------------------------------------- /api/test/internal/handler/test_builtin_tool_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/api/test/internal/handler/test_builtin_tool_handler.py -------------------------------------------------------------------------------- /docker/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/docker/docker-compose.yaml -------------------------------------------------------------------------------- /docker/nginx/conf.d/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/docker/nginx/conf.d/default.conf -------------------------------------------------------------------------------- /docker/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/docker/nginx/nginx.conf -------------------------------------------------------------------------------- /docker/nginx/proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/docker/nginx/proxy.conf -------------------------------------------------------------------------------- /docker/postgres/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/docker/postgres/init.sql -------------------------------------------------------------------------------- /ui/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .git 4 | *.log 5 | -------------------------------------------------------------------------------- /ui/.env: -------------------------------------------------------------------------------- 1 | VITE_TITLE=AI 2 | VITE_DESCRIPTION=Agent应用开发平台 -------------------------------------------------------------------------------- /ui/.env.development: -------------------------------------------------------------------------------- 1 | VITE_API_PREFIX=http://localhost:5001 -------------------------------------------------------------------------------- /ui/.env.production: -------------------------------------------------------------------------------- 1 | VITE_API_PREFIX=http://82.157.66.198/api 2 | -------------------------------------------------------------------------------- /ui/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/.eslintrc.cjs -------------------------------------------------------------------------------- /ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/.gitignore -------------------------------------------------------------------------------- /ui/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/.prettierrc.json -------------------------------------------------------------------------------- /ui/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/Dockerfile -------------------------------------------------------------------------------- /ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/README.md -------------------------------------------------------------------------------- /ui/docker/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/docker/nginx/nginx.conf -------------------------------------------------------------------------------- /ui/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/index.html -------------------------------------------------------------------------------- /ui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/package-lock.json -------------------------------------------------------------------------------- /ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/package.json -------------------------------------------------------------------------------- /ui/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/postcss.config.js -------------------------------------------------------------------------------- /ui/public/favicon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/public/favicon.webp -------------------------------------------------------------------------------- /ui/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/App.vue -------------------------------------------------------------------------------- /ui/src/assets/images/403.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/assets/images/403.png -------------------------------------------------------------------------------- /ui/src/assets/images/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/assets/images/404.png -------------------------------------------------------------------------------- /ui/src/assets/images/404_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/assets/images/404_cloud.png -------------------------------------------------------------------------------- /ui/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/assets/logo.svg -------------------------------------------------------------------------------- /ui/src/assets/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/assets/styles/main.css -------------------------------------------------------------------------------- /ui/src/assets/styles/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/assets/styles/markdown.css -------------------------------------------------------------------------------- /ui/src/components/AgentThought.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/components/AgentThought.vue -------------------------------------------------------------------------------- /ui/src/components/AiMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/components/AiMessage.vue -------------------------------------------------------------------------------- /ui/src/components/CodeHighLight.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/components/CodeHighLight.vue -------------------------------------------------------------------------------- /ui/src/components/DotFlashing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/components/DotFlashing.vue -------------------------------------------------------------------------------- /ui/src/components/HumanMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/components/HumanMessage.vue -------------------------------------------------------------------------------- /ui/src/components/OverviewIndicator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/components/OverviewIndicator.vue -------------------------------------------------------------------------------- /ui/src/components/icons/IconApp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/components/icons/IconApp.vue -------------------------------------------------------------------------------- /ui/src/components/icons/IconAppFull.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/components/icons/IconAppFull.vue -------------------------------------------------------------------------------- /ui/src/components/icons/IconEmpty.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/components/icons/IconEmpty.vue -------------------------------------------------------------------------------- /ui/src/components/icons/IconHome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/components/icons/IconHome.vue -------------------------------------------------------------------------------- /ui/src/components/icons/IconHomeFull.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/components/icons/IconHomeFull.vue -------------------------------------------------------------------------------- /ui/src/components/icons/IconOpenApi.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/components/icons/IconOpenApi.vue -------------------------------------------------------------------------------- /ui/src/components/icons/IconOpenApiFull.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/components/icons/IconOpenApiFull.vue -------------------------------------------------------------------------------- /ui/src/components/icons/IconSpace.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/components/icons/IconSpace.vue -------------------------------------------------------------------------------- /ui/src/components/icons/IconSpaceFull.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/components/icons/IconSpaceFull.vue -------------------------------------------------------------------------------- /ui/src/components/icons/IconTool.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/components/icons/IconTool.vue -------------------------------------------------------------------------------- /ui/src/components/icons/IconToolFull.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/components/icons/IconToolFull.vue -------------------------------------------------------------------------------- /ui/src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/config/index.ts -------------------------------------------------------------------------------- /ui/src/hooks/use-account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/hooks/use-account.ts -------------------------------------------------------------------------------- /ui/src/hooks/use-ai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/hooks/use-ai.ts -------------------------------------------------------------------------------- /ui/src/hooks/use-analysis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/hooks/use-analysis.ts -------------------------------------------------------------------------------- /ui/src/hooks/use-api-key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/hooks/use-api-key.ts -------------------------------------------------------------------------------- /ui/src/hooks/use-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/hooks/use-app.ts -------------------------------------------------------------------------------- /ui/src/hooks/use-assistant-agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/hooks/use-assistant-agent.ts -------------------------------------------------------------------------------- /ui/src/hooks/use-auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/hooks/use-auth.ts -------------------------------------------------------------------------------- /ui/src/hooks/use-builtin-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/hooks/use-builtin-app.ts -------------------------------------------------------------------------------- /ui/src/hooks/use-builtin-tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/hooks/use-builtin-tool.ts -------------------------------------------------------------------------------- /ui/src/hooks/use-conversation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/hooks/use-conversation.ts -------------------------------------------------------------------------------- /ui/src/hooks/use-dataset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/hooks/use-dataset.ts -------------------------------------------------------------------------------- /ui/src/hooks/use-language-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/hooks/use-language-model.ts -------------------------------------------------------------------------------- /ui/src/hooks/use-oauth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/hooks/use-oauth.ts -------------------------------------------------------------------------------- /ui/src/hooks/use-tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/hooks/use-tool.ts -------------------------------------------------------------------------------- /ui/src/hooks/use-upload-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/hooks/use-upload-file.ts -------------------------------------------------------------------------------- /ui/src/hooks/use-web-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/hooks/use-web-app.ts -------------------------------------------------------------------------------- /ui/src/hooks/use-workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/hooks/use-workflow.ts -------------------------------------------------------------------------------- /ui/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/main.ts -------------------------------------------------------------------------------- /ui/src/models/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/models/account.ts -------------------------------------------------------------------------------- /ui/src/models/analysis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/models/analysis.ts -------------------------------------------------------------------------------- /ui/src/models/api-key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/models/api-key.ts -------------------------------------------------------------------------------- /ui/src/models/api-tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/models/api-tool.ts -------------------------------------------------------------------------------- /ui/src/models/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/models/app.ts -------------------------------------------------------------------------------- /ui/src/models/assistant-agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/models/assistant-agent.ts -------------------------------------------------------------------------------- /ui/src/models/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/models/auth.ts -------------------------------------------------------------------------------- /ui/src/models/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/models/base.ts -------------------------------------------------------------------------------- /ui/src/models/builtin-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/models/builtin-app.ts -------------------------------------------------------------------------------- /ui/src/models/builtin-tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/models/builtin-tool.ts -------------------------------------------------------------------------------- /ui/src/models/conversation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/models/conversation.ts -------------------------------------------------------------------------------- /ui/src/models/dataset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/models/dataset.ts -------------------------------------------------------------------------------- /ui/src/models/language-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/models/language-model.ts -------------------------------------------------------------------------------- /ui/src/models/oauth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/models/oauth.ts -------------------------------------------------------------------------------- /ui/src/models/upload-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/models/upload-file.ts -------------------------------------------------------------------------------- /ui/src/models/web-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/models/web-app.ts -------------------------------------------------------------------------------- /ui/src/models/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/models/workflow.ts -------------------------------------------------------------------------------- /ui/src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/router/index.ts -------------------------------------------------------------------------------- /ui/src/services/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/services/account.ts -------------------------------------------------------------------------------- /ui/src/services/ai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/services/ai.ts -------------------------------------------------------------------------------- /ui/src/services/analysis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/services/analysis.ts -------------------------------------------------------------------------------- /ui/src/services/api-key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/services/api-key.ts -------------------------------------------------------------------------------- /ui/src/services/api-tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/services/api-tool.ts -------------------------------------------------------------------------------- /ui/src/services/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/services/app.ts -------------------------------------------------------------------------------- /ui/src/services/assistant-agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/services/assistant-agent.ts -------------------------------------------------------------------------------- /ui/src/services/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/services/auth.ts -------------------------------------------------------------------------------- /ui/src/services/builtin-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/services/builtin-app.ts -------------------------------------------------------------------------------- /ui/src/services/builtin-tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/services/builtin-tool.ts -------------------------------------------------------------------------------- /ui/src/services/conversation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/services/conversation.ts -------------------------------------------------------------------------------- /ui/src/services/dataset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/services/dataset.ts -------------------------------------------------------------------------------- /ui/src/services/language-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/services/language-model.ts -------------------------------------------------------------------------------- /ui/src/services/oauth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/services/oauth.ts -------------------------------------------------------------------------------- /ui/src/services/upload-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/services/upload-file.ts -------------------------------------------------------------------------------- /ui/src/services/web-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/services/web-app.ts -------------------------------------------------------------------------------- /ui/src/services/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/services/workflow.ts -------------------------------------------------------------------------------- /ui/src/shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/shims-vue.d.ts -------------------------------------------------------------------------------- /ui/src/stores/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/stores/account.ts -------------------------------------------------------------------------------- /ui/src/stores/credential.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/stores/credential.ts -------------------------------------------------------------------------------- /ui/src/utils/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/utils/auth.ts -------------------------------------------------------------------------------- /ui/src/utils/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/utils/helper.ts -------------------------------------------------------------------------------- /ui/src/utils/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/utils/request.ts -------------------------------------------------------------------------------- /ui/src/utils/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/utils/storage.ts -------------------------------------------------------------------------------- /ui/src/views/auth/AuthorizeView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/auth/AuthorizeView.vue -------------------------------------------------------------------------------- /ui/src/views/auth/LoginView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/auth/LoginView.vue -------------------------------------------------------------------------------- /ui/src/views/auth/components/LoginBanner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/auth/components/LoginBanner.vue -------------------------------------------------------------------------------- /ui/src/views/auth/components/LoginForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/auth/components/LoginForm.vue -------------------------------------------------------------------------------- /ui/src/views/errors/ForbiddenView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/errors/ForbiddenView.vue -------------------------------------------------------------------------------- /ui/src/views/errors/NotFoundView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/errors/NotFoundView.vue -------------------------------------------------------------------------------- /ui/src/views/layouts/BlankLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/layouts/BlankLayout.vue -------------------------------------------------------------------------------- /ui/src/views/layouts/DefaultLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/layouts/DefaultLayout.vue -------------------------------------------------------------------------------- /ui/src/views/layouts/components/LayoutSidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/layouts/components/LayoutSidebar.vue -------------------------------------------------------------------------------- /ui/src/views/layouts/components/SettingModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/layouts/components/SettingModal.vue -------------------------------------------------------------------------------- /ui/src/views/openapi/IndexView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/openapi/IndexView.vue -------------------------------------------------------------------------------- /ui/src/views/openapi/OpenAPILayoutView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/openapi/OpenAPILayoutView.vue -------------------------------------------------------------------------------- /ui/src/views/openapi/api-keys/ListView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/openapi/api-keys/ListView.vue -------------------------------------------------------------------------------- /ui/src/views/openapi/quick-start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/openapi/quick-start.ts -------------------------------------------------------------------------------- /ui/src/views/pages/HomeView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/pages/HomeView.vue -------------------------------------------------------------------------------- /ui/src/views/space/SpaceLayoutView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/SpaceLayoutView.vue -------------------------------------------------------------------------------- /ui/src/views/space/apps/AnalysisView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/apps/AnalysisView.vue -------------------------------------------------------------------------------- /ui/src/views/space/apps/AppLayoutView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/apps/AppLayoutView.vue -------------------------------------------------------------------------------- /ui/src/views/space/apps/DetailView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/apps/DetailView.vue -------------------------------------------------------------------------------- /ui/src/views/space/apps/ListView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/apps/ListView.vue -------------------------------------------------------------------------------- /ui/src/views/space/apps/PublishedView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/apps/PublishedView.vue -------------------------------------------------------------------------------- /ui/src/views/space/apps/components/AgentAppAbility.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/apps/components/AgentAppAbility.vue -------------------------------------------------------------------------------- /ui/src/views/space/apps/components/CreateOrUpdateAppModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/apps/components/CreateOrUpdateAppModal.vue -------------------------------------------------------------------------------- /ui/src/views/space/apps/components/ModelConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/apps/components/ModelConfig.vue -------------------------------------------------------------------------------- /ui/src/views/space/apps/components/PresetPromptTextarea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/apps/components/PresetPromptTextarea.vue -------------------------------------------------------------------------------- /ui/src/views/space/apps/components/PreviewDebugChat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/apps/components/PreviewDebugChat.vue -------------------------------------------------------------------------------- /ui/src/views/space/apps/components/PreviewDebugHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/apps/components/PreviewDebugHeader.vue -------------------------------------------------------------------------------- /ui/src/views/space/apps/components/PublishHistoryDrawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/apps/components/PublishHistoryDrawer.vue -------------------------------------------------------------------------------- /ui/src/views/space/apps/components/abilities/DatasetsAbilityItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/apps/components/abilities/DatasetsAbilityItem.vue -------------------------------------------------------------------------------- /ui/src/views/space/apps/components/abilities/OpeningAbilityItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/apps/components/abilities/OpeningAbilityItem.vue -------------------------------------------------------------------------------- /ui/src/views/space/apps/components/abilities/ToolsAbilityItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/apps/components/abilities/ToolsAbilityItem.vue -------------------------------------------------------------------------------- /ui/src/views/space/apps/components/abilities/WorkflowsAbilityItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/apps/components/abilities/WorkflowsAbilityItem.vue -------------------------------------------------------------------------------- /ui/src/views/space/datasets/ListView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/datasets/ListView.vue -------------------------------------------------------------------------------- /ui/src/views/space/datasets/documents/CreateView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/datasets/documents/CreateView.vue -------------------------------------------------------------------------------- /ui/src/views/space/datasets/documents/ListView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/datasets/documents/ListView.vue -------------------------------------------------------------------------------- /ui/src/views/space/datasets/documents/components/HitTestingModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/datasets/documents/components/HitTestingModal.vue -------------------------------------------------------------------------------- /ui/src/views/space/datasets/documents/segments/ListView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/datasets/documents/segments/ListView.vue -------------------------------------------------------------------------------- /ui/src/views/space/tools/ListView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/tools/ListView.vue -------------------------------------------------------------------------------- /ui/src/views/space/workflows/DetailView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/workflows/DetailView.vue -------------------------------------------------------------------------------- /ui/src/views/space/workflows/ListView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/workflows/ListView.vue -------------------------------------------------------------------------------- /ui/src/views/space/workflows/components/DebugModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/workflows/components/DebugModal.vue -------------------------------------------------------------------------------- /ui/src/views/space/workflows/components/infos/CodeNodeInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/workflows/components/infos/CodeNodeInfo.vue -------------------------------------------------------------------------------- /ui/src/views/space/workflows/components/infos/EndNodeInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/workflows/components/infos/EndNodeInfo.vue -------------------------------------------------------------------------------- /ui/src/views/space/workflows/components/infos/LLMNodeInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/workflows/components/infos/LLMNodeInfo.vue -------------------------------------------------------------------------------- /ui/src/views/space/workflows/components/infos/StartNodeInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/workflows/components/infos/StartNodeInfo.vue -------------------------------------------------------------------------------- /ui/src/views/space/workflows/components/infos/ToolNodeInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/workflows/components/infos/ToolNodeInfo.vue -------------------------------------------------------------------------------- /ui/src/views/space/workflows/components/nodes/CodeNode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/workflows/components/nodes/CodeNode.vue -------------------------------------------------------------------------------- /ui/src/views/space/workflows/components/nodes/EndNode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/workflows/components/nodes/EndNode.vue -------------------------------------------------------------------------------- /ui/src/views/space/workflows/components/nodes/HttpRequestNode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/workflows/components/nodes/HttpRequestNode.vue -------------------------------------------------------------------------------- /ui/src/views/space/workflows/components/nodes/LLMNode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/workflows/components/nodes/LLMNode.vue -------------------------------------------------------------------------------- /ui/src/views/space/workflows/components/nodes/StartNode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/workflows/components/nodes/StartNode.vue -------------------------------------------------------------------------------- /ui/src/views/space/workflows/components/nodes/ToolNode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/space/workflows/components/nodes/ToolNode.vue -------------------------------------------------------------------------------- /ui/src/views/store/apps/ListView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/store/apps/ListView.vue -------------------------------------------------------------------------------- /ui/src/views/store/tools/ListView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/store/tools/ListView.vue -------------------------------------------------------------------------------- /ui/src/views/web-apps/IndexView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/web-apps/IndexView.vue -------------------------------------------------------------------------------- /ui/src/views/web-apps/components/UpdateNameModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/src/views/web-apps/components/UpdateNameModal.vue -------------------------------------------------------------------------------- /ui/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/tailwind.config.js -------------------------------------------------------------------------------- /ui/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/tsconfig.app.json -------------------------------------------------------------------------------- /ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/tsconfig.json -------------------------------------------------------------------------------- /ui/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/tsconfig.node.json -------------------------------------------------------------------------------- /ui/tsconfig.vitest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/tsconfig.vitest.json -------------------------------------------------------------------------------- /ui/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/vite.config.ts -------------------------------------------------------------------------------- /ui/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haohao-end/LMForge-End-to-End-LLMOps-Platform-for-Multi-Model-Agents/HEAD/ui/vitest.config.ts --------------------------------------------------------------------------------