Skip to content

Commit

Permalink
优化模版
Browse files Browse the repository at this point in the history
  • Loading branch information
NewToolAI committed Dec 9, 2024
1 parent 263007e commit e740e5f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docapi/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from docapi.docapi import DocAPI


VERSION = '0.1.4'
VERSION = '0.1.5'


class Main:
Expand Down
2 changes: 1 addition & 1 deletion docapi/template/flask_en.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ curl -X GET 'http://API_BASE/users/list?grade=3' \
```python
import requests

url = 'http://localhost:API_BASE/users/list'
url = 'http://API_BASE/users/list'
headers = {{'API-KEY': 'your_api_key'}}
params = {{'grade': '3'}}

Expand Down
2 changes: 1 addition & 1 deletion docapi/template/flask_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ curl -X GET 'http://API_BASE/users/list?grade=3' \
```python
import requests

url = 'http://localhost:API_BASE/users/list'
url = 'http://API_BASE/users/list'
headers = {{'API-KEY': 'your_api_key'}}

params = {{'grade': '3'}}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "docapi"
version = "1.0.4"
version = "1.0.5"
description = "DocAPI is a Python package that automatically generates API documentation using LLMs. It currently supports Flask and Django frameworks."
authors = ["zhangshulin <[email protected]>"]
license = "Apache-2.0"
Expand Down

0 comments on commit e740e5f

Please sign in to comment.