mirror of
https://github.com/bentoml/OpenLLM.git
synced 2026-05-06 06:42:45 -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>
16 lines
352 B
Bash
Executable File
16 lines
352 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
GIT_ROOT=$(git rev-parse --show-toplevel)
|
|
|
|
cd "$GIT_ROOT" || exit 1
|
|
|
|
# NOTE that we are using local bazel instead of system bazel.
|
|
bazel run //requirements:pypi.update
|
|
bazel run //:vendor-pypi
|
|
bazel run //requirements:tensorflow.update
|
|
bazel run //:vendor-tensorflow
|
|
bazel run //requirements:tests.update
|
|
bazel run //:vendor-tests
|