mirror of
https://github.com/bentoml/OpenLLM.git
synced 2026-05-07 07:12:42 -04:00
- add infrastructure, to be implemented: cache, chat history - Base Runnable Implementation, that fits LangChain API - Added a Prompt descriptor and utils. feat: license headers and auto factory impl and CLI Auto construct args from pydantic config Add auto factory for ease of use only provide `/generate` to streamline UX experience CLI > envvar > input contract for configuration fix: serve from a thread fix CLI args chore: cleanup names and refactor imports Signed-off-by: Aaron <29749331+aarnphm@users.noreply.github.com>
26 lines
791 B
Bash
Executable File
26 lines
791 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
BASEDIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]:-$0}")" &> /dev/null && pwd 2> /dev/null)"
|
|
|
|
GIT_ROOT=$(git rev-parse --show-toplevel)
|
|
|
|
cd "$GIT_ROOT" || exit 1
|
|
|
|
bazel run //:buildfmt
|
|
bazel run //:black -- "$GIT_ROOT/src"
|
|
bazel run //:black -- --pyi "$GIT_ROOT/typings" "$GIT_ROOT/src/bentoml/metrics.pyi"
|
|
bazel run //:isort -- "$GIT_ROOT/src"
|
|
|
|
# Running ruff for whole codebase.
|
|
ruff --fix src examples docs tests
|
|
|
|
if command -v buf > /dev/null 2>&1; then
|
|
buf format --config "$GIT_ROOT/src/bentoml/grpc/buf.yaml" -w src/bentoml/grpc
|
|
else
|
|
if command -v docker > /dev/null 2>&1; then
|
|
docker run --init --rm --volume "$GIT_ROOT/src":/workspace --workdir /workspace bufbuild/buf format --config "/workspace/bentoml/grpc/buf.yaml" -w bentoml/grpc
|
|
fi
|
|
fi
|