From 40f7ebcf89a435ecd738b9ed41424e1264c4f64a Mon Sep 17 00:00:00 2001 From: bojiang Date: Sat, 6 Jul 2024 14:39:50 +0800 Subject: [PATCH] rename to openllm-models --- DEVELOPMENT.md | 4 ++-- openllm_next/common.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 052b6f22..87459002 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -98,10 +98,10 @@ There are a few ways to contribute to the repository structure for OpenLLM: ### Adding bentos -OpenLLM now also manages a [generated bento repository](https://github.com/bentoml/openllm-repo/tree/main). If you update and modify and generated bentos, make sure to update the recipe and added the generated bentos under `bentoml/bentos`. +OpenLLM now also manages a [generated bento repository](https://github.com/bentoml/openllm-models/tree/main). If you update and modify and generated bentos, make sure to update the recipe and added the generated bentos under `bentoml/bentos`. ### Adding repos -If you wish to create a your own managed git repo, you should follow the structure of [bentoml/openllm-repo](https://github.com/bentoml/openllm-repo/tree/main). +If you wish to create a your own managed git repo, you should follow the structure of [bentoml/openllm-models](https://github.com/bentoml/openllm-models/tree/main). To add your custom repo, do `openllm repo add ` diff --git a/openllm_next/common.py b/openllm_next/common.py index 27007292..8451c4a2 100644 --- a/openllm_next/common.py +++ b/openllm_next/common.py @@ -90,7 +90,7 @@ def output(content, level=0, style=None, end=None): class Config(SimpleNamespace): repos: dict[str, str] = { - "default": "git+https://github.com/bentoml/openllm-repo@main" + "default": "git+https://github.com/bentoml/openllm-models@main" } default_repo: str = "default"