├── .github └── workflows │ └── python-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── llm-benchmark.gif ├── llm_benchmark ├── __init__.py ├── check_models.py ├── check_ollama.py ├── data │ ├── benchmark1.yml │ ├── benchmark2.yml │ ├── benchmark_models_16gb_ram.yml │ ├── benchmark_models_2gb_ram.yml │ ├── benchmark_models_32gb_ram.yml │ ├── benchmark_models_3gb_ram.yml │ ├── benchmark_models_4gb_ram.yml │ ├── benchmark_models_8gb_ram.yml │ └── img │ │ ├── sample1.jpg │ │ ├── sample2.jpg │ │ ├── sample3.jpg │ │ ├── sample4.jpg │ │ └── sample5.jpg ├── main.py ├── query_llm.py ├── run_benchmark.py ├── run_benchmark_one.py ├── security_connection │ ├── __init__.py │ ├── connection.py │ └── security.py └── systeminfo │ ├── __init__.py │ └── sysmain.py ├── pyproject.toml ├── requirements.txt ├── setup.py └── tests └── test_pytest.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidatatools/ollama-benchmark/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidatatools/ollama-benchmark/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidatatools/ollama-benchmark/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidatatools/ollama-benchmark/HEAD/README.md -------------------------------------------------------------------------------- /llm-benchmark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidatatools/ollama-benchmark/HEAD/llm-benchmark.gif -------------------------------------------------------------------------------- /llm_benchmark/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /llm_benchmark/check_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidatatools/ollama-benchmark/HEAD/llm_benchmark/check_models.py -------------------------------------------------------------------------------- /llm_benchmark/check_ollama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidatatools/ollama-benchmark/HEAD/llm_benchmark/check_ollama.py -------------------------------------------------------------------------------- /llm_benchmark/data/benchmark1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidatatools/ollama-benchmark/HEAD/llm_benchmark/data/benchmark1.yml -------------------------------------------------------------------------------- /llm_benchmark/data/benchmark2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidatatools/ollama-benchmark/HEAD/llm_benchmark/data/benchmark2.yml -------------------------------------------------------------------------------- /llm_benchmark/data/benchmark_models_16gb_ram.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidatatools/ollama-benchmark/HEAD/llm_benchmark/data/benchmark_models_16gb_ram.yml -------------------------------------------------------------------------------- /llm_benchmark/data/benchmark_models_2gb_ram.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidatatools/ollama-benchmark/HEAD/llm_benchmark/data/benchmark_models_2gb_ram.yml -------------------------------------------------------------------------------- /llm_benchmark/data/benchmark_models_32gb_ram.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidatatools/ollama-benchmark/HEAD/llm_benchmark/data/benchmark_models_32gb_ram.yml -------------------------------------------------------------------------------- /llm_benchmark/data/benchmark_models_3gb_ram.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidatatools/ollama-benchmark/HEAD/llm_benchmark/data/benchmark_models_3gb_ram.yml -------------------------------------------------------------------------------- /llm_benchmark/data/benchmark_models_4gb_ram.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidatatools/ollama-benchmark/HEAD/llm_benchmark/data/benchmark_models_4gb_ram.yml -------------------------------------------------------------------------------- /llm_benchmark/data/benchmark_models_8gb_ram.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidatatools/ollama-benchmark/HEAD/llm_benchmark/data/benchmark_models_8gb_ram.yml -------------------------------------------------------------------------------- /llm_benchmark/data/img/sample1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidatatools/ollama-benchmark/HEAD/llm_benchmark/data/img/sample1.jpg -------------------------------------------------------------------------------- /llm_benchmark/data/img/sample2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidatatools/ollama-benchmark/HEAD/llm_benchmark/data/img/sample2.jpg -------------------------------------------------------------------------------- /llm_benchmark/data/img/sample3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidatatools/ollama-benchmark/HEAD/llm_benchmark/data/img/sample3.jpg -------------------------------------------------------------------------------- /llm_benchmark/data/img/sample4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidatatools/ollama-benchmark/HEAD/llm_benchmark/data/img/sample4.jpg -------------------------------------------------------------------------------- /llm_benchmark/data/img/sample5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidatatools/ollama-benchmark/HEAD/llm_benchmark/data/img/sample5.jpg -------------------------------------------------------------------------------- /llm_benchmark/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidatatools/ollama-benchmark/HEAD/llm_benchmark/main.py -------------------------------------------------------------------------------- /llm_benchmark/query_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidatatools/ollama-benchmark/HEAD/llm_benchmark/query_llm.py -------------------------------------------------------------------------------- /llm_benchmark/run_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidatatools/ollama-benchmark/HEAD/llm_benchmark/run_benchmark.py -------------------------------------------------------------------------------- /llm_benchmark/run_benchmark_one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidatatools/ollama-benchmark/HEAD/llm_benchmark/run_benchmark_one.py -------------------------------------------------------------------------------- /llm_benchmark/security_connection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /llm_benchmark/security_connection/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidatatools/ollama-benchmark/HEAD/llm_benchmark/security_connection/connection.py -------------------------------------------------------------------------------- /llm_benchmark/security_connection/security.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /llm_benchmark/systeminfo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /llm_benchmark/systeminfo/sysmain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidatatools/ollama-benchmark/HEAD/llm_benchmark/systeminfo/sysmain.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidatatools/ollama-benchmark/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidatatools/ollama-benchmark/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidatatools/ollama-benchmark/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_pytest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidatatools/ollama-benchmark/HEAD/tests/test_pytest.py --------------------------------------------------------------------------------