mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-09 19:29:18 +00:00
tasks registry
This commit is contained in:
parent
041634192a
commit
4764762dd4
9 changed files with 74 additions and 35 deletions
13
llama_stack/distribution/registry/tasks/__init__.py
Normal file
13
llama_stack/distribution/registry/tasks/__init__.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||
# All rights reserved.
|
||||
#
|
||||
# This source code is licensed under the terms described in the LICENSE file in
|
||||
# the root directory of this source tree.
|
||||
# TODO: make these import config based
|
||||
from llama_stack.providers.impls.meta_reference.evals.tasks.mmlu_task import MMLUTask
|
||||
from .task_registry import TaskRegistry
|
||||
|
||||
TaskRegistry.register(
|
||||
"mmlu",
|
||||
MMLUTask,
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue