mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-06 20:44:58 +00:00
Add pyopenapi fork to the repository, update RFC assets
This commit is contained in:
parent
0d619b9f8e
commit
b60c125c55
12 changed files with 2240 additions and 452 deletions
|
@ -1,6 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
|
||||
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||
# All rights reserved.
|
||||
#
|
||||
|
@ -14,12 +13,11 @@ set -euo pipefail
|
|||
missing_packages=()
|
||||
|
||||
check_package() {
|
||||
if ! pip show "$1" &> /dev/null; then
|
||||
if ! pip show "$1" &>/dev/null; then
|
||||
missing_packages+=("$1")
|
||||
fi
|
||||
}
|
||||
|
||||
check_package python-openapi
|
||||
check_package json-strong-typing
|
||||
|
||||
if [ ${#missing_packages[@]} -ne 0 ]; then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue