Skip to content

Commit c68332b

Browse files
authored
fix: some typos using typos (#2552)
# Description Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. This path fix some of typos using typos just an example using tools https://github.com/crate-ci/typos # How Has This Been Tested? Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration # Snapshots: Include snapshots for easier review. # Checklist: - [ ] My code follows the style guidelines of this project - [ ] I have already rebased the commits and make the commit message conform to the project standard. - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [ ] Any dependent changes have been merged and published in downstream modules
2 parents b880082 + 80eef20 commit c68332b

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

docker/base/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ RUN if [ "$USE_TSINGHUA_UBUNTU" = "true" ]; then \
111111

112112
WORKDIR /app
113113
# Copy the virtual environment from the previous stage
114-
# Use antoher name to avoid conflict when mounting user's local .venv
114+
# Use another name to avoid conflict when mounting user's local .venv
115115
ENV FINAL_VENV_NAME="/opt/.uv.venv"
116116
COPY --from=builder /app/.venv ${FINAL_VENV_NAME}
117117
COPY . .

docs/docs/application/advanced_tutorial/api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Model API mainly means that DB-GPT adapts to various models and is uniformly pac
77
## Model API
88

99
In the DB-GPT project, we defined a service-oriented multi-model management framework (SMMF). Through the capabilities of SMMF, we can deploy multiple models, and these models provide external services through services. In order to allow clients to achieve seamless switching, we uniformly support the OpenAI SDK standards.
10-
- Detail useage tutorial: [OpenAI SDK calls local multi-model ](../../installation/advanced_usage/OpenAI_SDK_call.md)
10+
- Detail usage tutorial: [OpenAI SDK calls local multi-model ](../../installation/advanced_usage/OpenAI_SDK_call.md)
1111

1212
**Example:** The following is an example of calling through openai sdk
1313

docs/docs/application/fine_tuning_manual/text_to_sql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Text2SQL Fine-Tuning
22
We have split the Text2SQL-related fine-tuning code into the `DB-GPT-Hub `sub-project, and you can also view the source code directly.
33

4-
## Fine-tune pipline
4+
## Fine-tune pipeline
55

6-
Text2SQL pipline mainly includes the following processes:
6+
Text2SQL pipeline mainly includes the following processes:
77
- [Build environment](#build-environment)
88
- [Data processing](#data-processing)
99
- [Model train](#model-train)

docs/docs/faq/kbqa.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ If you want to use OceanBase, please first start a docker container via the foll
2626
docker run --name=ob433 -e MODE=slim -p 2881:2881 -d quay.io/oceanbase/oceanbase-ce:4.3.3.0-100000142024101215
2727
```
2828

29-
Donwload the partner package:
29+
Download the partner package:
3030
```shell
3131
pip install --upgrade --quiet pyobvector
3232
```

packages/dbgpt-app/src/dbgpt_app/knowledge/_cli/knowledge_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ def knowledge_delete(
383383
# Confirm by user
384384
user_input = (
385385
input(
386-
f"Are you sure you want to delete the doucment {doc_name} in "
386+
f"Are you sure you want to delete the document {doc_name} in "
387387
f"knowledge space {space_name}? Type 'yes' to confirm: "
388388
)
389389
.strip()
@@ -394,6 +394,6 @@ def knowledge_delete(
394394
return
395395
client.document_delete(space_name, KnowledgeDocumentRequest(doc_name=doc_name))
396396
logger.info(
397-
f"Delete the doucment {doc_name} in knowledge space {space_name} "
397+
f"Delete the document {doc_name} in knowledge space {space_name} "
398398
f"successfully!"
399399
)

0 commit comments

Comments
 (0)