mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-11 21:48:36 +00:00
from models.llama3_1 --> from llama_models.llama3_1
This commit is contained in:
parent
c6ef16f6bd
commit
c64b8cba22
22 changed files with 29 additions and 27 deletions
|
@ -4,7 +4,7 @@ import yaml
|
|||
|
||||
from pyopenapi import Info, Options, Server, Specification
|
||||
|
||||
from models.llama3_1.api.datatypes import * # noqa: F403
|
||||
from llama_models.llama3_1.api.datatypes import * # noqa: F403
|
||||
from toolchain.dataset.api import * # noqa: F403
|
||||
from toolchain.evaluations.api import * # noqa: F403
|
||||
from toolchain.inference.api import * # noqa: F403
|
||||
|
|
|
@ -7,7 +7,7 @@ echo "Using temporary directory: $TMPDIR"
|
|||
|
||||
rootdir=$(git rev-parse --show-toplevel)
|
||||
|
||||
files_to_copy=("toolchain/spec/openapi*" "models.llama3_1.api.datatypes.py" "toolchain/inference/api/*.py" "agentic_system/api/*.py" "toolchain/common/*.py" "toolchain/dataset/api/*.py" "toolchain/evaluations/api/*.py" "toolchain/reward_scoring/api/*.py" "toolchain/post_training/api/*.py" "toolchain/safety/api/*.py")
|
||||
files_to_copy=("toolchain/spec/openapi*" "llama_models.llama3_1.api.datatypes.py" "toolchain/inference/api/*.py" "agentic_system/api/*.py" "toolchain/common/*.py" "toolchain/dataset/api/*.py" "toolchain/evaluations/api/*.py" "toolchain/reward_scoring/api/*.py" "toolchain/post_training/api/*.py" "toolchain/safety/api/*.py")
|
||||
for file in "${files_to_copy[@]}"; do
|
||||
relpath="$file"
|
||||
set -x
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
from enum import Enum
|
||||
from typing import Any, Dict, List
|
||||
|
||||
from models.llama3_1.api.datatypes import URL
|
||||
from llama_models.llama3_1.api.datatypes import URL
|
||||
from pydantic import BaseModel, Field
|
||||
|
||||
from strong_typing.schema import json_schema_type
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue