Skip to content

Commit a6b32cf

Browse files
committed
fix: issues of rename
1 parent 6bf9e3b commit a6b32cf

File tree

5 files changed

+16
-47
lines changed

5 files changed

+16
-47
lines changed

.github/workflows/docker-release.yml

-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ jobs:
3232
echo "VCS_REF=$VCS_REF" >> $GITHUB_ENV
3333
echo "Will build $VCS_REF"
3434
echo "BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_ENV
35-
echo "BUILD_TARGET=clip_executor" >> $GITHUB_ENV
3635
3736
VERSION=$(sed -n '/^__version__ = /p' ./run_gpt/__init__.py | cut -d \' -f2)
3837
V_VERSION=v${VERSION}

Dockerfiles/executor.Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ FROM mosaicml/pytorch:${TORCH_VERSION}_cu${CUDA_VERSION}-python3.10-ubuntu20.04
88
ENV DEBIAN_FRONTEND=noninteractive LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8
99

1010
# copy will almost always invalid the cache
11-
COPY . /open_gpt/
12-
WORKDIR /open_gpt
11+
COPY . /run_gpt/
12+
WORKDIR /run_gpt
1313

1414
RUN python3 -m pip install jina==3.18.0
1515
RUN python3 -m pip install -e .
1616

1717
RUN echo -e "\
1818
jtype: CausualLMExecutor\n\
1919
py_modules:\n\
20-
- open_gpt.serve.executors\n\
20+
- run_gpt.serve.executors\n\
2121
" > config.yml
2222

2323
ENTRYPOINT ["jina", "executor", "--uses", "config.yml", "--timeout-ready", "3600000"]

Dockerfiles/gateway.Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
FROM jinaai/jina:3.18.0-py310-standard
22

3-
COPY . /open_gpt/
4-
WORKDIR /open_gpt
3+
COPY . /run_gpt/
4+
WORKDIR /run_gpt
55

66
RUN python3 -m pip install -e .
77

88

99
RUN echo "\
1010
!Gateway\n\
1111
py_modules:\n\
12-
- open_gpt.serve.gateway\n\
12+
- run_gpt.serve.gateway\n\
1313
" > config.yml
1414

1515

README.md

+9-37
Original file line numberDiff line numberDiff line change
@@ -14,25 +14,23 @@
1414
[![PyPI](https://img.shields.io/pypi/v/run_gpt_torch)](https://pypi.org/project/run_gpt_torch/)
1515
[![PyPI - License](https://img.shields.io/pypi/l/run_gpt_torch)](https://pypi.org/project/run_gpt_torch/)
1616

17-
**RunGPT** is an open-source _cloud-native_ large-scale **_multimodal models_** (LMMs) serving framework.
17+
**RunGPT** is an open-source _cloud-native_ **_large-scale language models_** (LLMs) serving framework.
1818
It is designed to simplify the deployment and management of large language models, on a distributed cluster of GPUs.
19-
We aim to make it a one-stop solution for a centralized and accessible place to gather techniques for optimizing large-scale multimodal models and make them easy to use for everyone.
19+
We aim to make it a one-stop solution for a centralized and accessible place to gather techniques for optimizing LLM and make them easy to use for everyone.
2020

2121

2222
## Table of contents
2323

2424
- [Features](#features)
25-
- [Supported models](#supported-models)
2625
- [Get started](#get-started)
2726
- [Build a model serving in one line](#build-a-model-serving-in-one-line)
2827
- [Cloud-native deployment](#cloud-native-deployment)
2928
- [Roadmap](#roadmap)
3029

3130
## Features
3231

33-
RunGPT provides the following features to make it easy to deploy and serve **large multi-modal models** (LMMs) at scale:
32+
RunGPT provides the following features to make it easy to deploy and serve **large language models** (LLMs) at scale:
3433

35-
- Support for multi-modal models on top of large language models
3634
- Scalable architecture for handling high traffic loads
3735
- Optimized for low-latency inference
3836
- Automatic model partitioning and distribution across multiple GPUs
@@ -41,35 +39,9 @@ RunGPT provides the following features to make it easy to deploy and serve **lar
4139

4240
## Updates
4341

44-
- **2023-05-12**: 🎉We have released the first version `v0.0.1` of RunGPT. You can install it with `pip install run_gpt_torch`.
42+
- **2023-08-22**: The OpenGPT is now renamed to RunGPT. We have also released the first version `v0.1.0` of RunGPT. You can install it with `pip install rungpt`.
43+
- **2023-05-12**: 🎉We have released the first version `v0.0.1` of OpenGPT. You can install it with `pip install open_gpt_torch`.
4544

46-
## Supported Models
47-
48-
<details>
49-
50-
RunGPT supports the following models out of the box:
51-
52-
- LLM (Large Language Model)
53-
54-
- [LLaMA](https://ai.facebook.com/blog/large-language-model-llama-meta-ai/): open and efficient foundation language models by Meta
55-
- [Pythia](https://github.com/EleutherAI/pythia): a collection of models developed to facilitate interpretability research by EleutherAI
56-
- [StableLM](https://github.com/Stability-AI/StableLM): series of large language models by Stability AI
57-
- [Vicuna](https://vicuna.lmsys.org/): a chat assistant fine-tuned from LLaMA on user-shared conversations by LMSYS
58-
- [MOSS](https://txsun1997.github.io/blogs/moss.html): conversational language model from Fudan University
59-
60-
- LMM (Large Multi-modal Model)
61-
62-
- [OpenFlamingo](https://github.com/mlfoundations/open_flamingo): an open source version of DeepMind's [Flamingo](https://www.deepmind.com/blog/tackling-multiple-tasks-with-a-single-visual-language-model) model
63-
- [MiniGPT-4](https://minigpt-4.github.io/): aligns a frozen visual encoder with a frozen LLM, Vicuna, using just one projection layer.
64-
65-
For more details about the supported models, please see the [Model Zoo](./MODEL_ZOO.md).
66-
67-
</details>
68-
69-
70-
## Roadmap
71-
72-
You can view our roadmap with features that are planned, started, and completed on the [Roadmap discussion](https://github.com/jina-ai/rungpt/discussions/categories/roadmap) category.
7345

7446
## Get Started
7547

@@ -78,7 +50,7 @@ You can view our roadmap with features that are planned, started, and completed
7850
Install the package with `pip`:
7951

8052
```bash
81-
pip install run_gpt_torch
53+
pip install rungpt
8254
```
8355

8456
### Quickstart
@@ -269,8 +241,8 @@ dictionaries which contain role and content. For example:
269241
import requests
270242

271243
messages = [
272-
{"role": "user", "content": "Hello!"},
273-
]
244+
{"role": "user", "content": "Hello!"},
245+
]
274246

275247
response = requests.post(
276248
"http://localhost:51000/chat",
@@ -626,4 +598,4 @@ We welcome contributions from the community! To contribute, please submit a pull
626598

627599
## License
628600

629-
Rungpt is licensed under the Apache License, Version 2.0. See LICENSE for the full license text.
601+
RunGPT is licensed under the Apache License, Version 2.0. See LICENSE for the full license text.

setup.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
raise OSError(f'RunGPT requires Python >=3.8, but yours is {sys.version}')
88

99
try:
10-
pkg_name = 'run-gpt-torch'
10+
pkg_name = 'rungpt'
1111
libinfo_py = path.join(path.dirname(__file__), 'run_gpt', '__init__.py')
1212
libinfo_content = open(libinfo_py, 'r', encoding='utf8').readlines()
1313
version_line = [l.strip() for l in libinfo_content if l.startswith('__version__')][
@@ -84,7 +84,6 @@
8484
"Topic :: Software Development :: Libraries :: Python Modules",
8585
],
8686
project_urls={
87-
'Documentation': 'https://rungpt.jina.ai',
8887
'Source': 'https://github.com/jina-ai/rungpt/',
8988
'Tracker': 'https://github.com/jina-ai/rungpt/issues',
9089
},
@@ -94,7 +93,6 @@
9493
"large-language-model",
9594
"GPT",
9695
"LLM",
97-
"multi-modality",
9896
"cloud-native",
9997
"model-serving",
10098
"model-inference",

0 commit comments

Comments
 (0)