Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/ISSUE_TEMPLATE/bugs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
name: 问题反馈
about: 详细清晰的描述你遇到的问题
title: ''
labels: bug
assignees: ''
---

**例行检查**

[//]: # '方框内填 x 表示打钩'

- [ ] 我已确认目前没有类似 issue
- [ ] 我已完整查看过项目 README,以及[项目文档](https://doc.fastgpt.io/docs/introduction/)
- [ ] 我使用了自己的 key,并确认我的 key 是可正常使用的
- [ ] 我理解并愿意跟进此 issue,协助测试和提供反馈
- [x] 我理解并认可上述内容,并理解项目维护者精力有限,**不遵循规则的 issue 可能会被无视或直接关闭**

**你的版本**

- [ ] 公有云版本
- [ ] 私有部署版本, 具体版本号:

**问题描述, 日志截图,配置文件等**

**复现步骤**

**预期结果**

**相关截图**
4 changes: 1 addition & 3 deletions modules/model/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,13 +202,11 @@ export const ModelProviders = Object.entries(ModelProviderMap)
return 0;
});

export type ModelProviderIdType = keyof typeof ModelProviderMap;

export type AiproxyMapProviderType = Record<
number,
{
name: I18nStringStrictType | string;
provider: ModelProviderIdType; // Use to sort,get avatar
provider?: string; // Use to sort,get avatar
avatar?: string;
}
>;
Expand Down
2 changes: 1 addition & 1 deletion sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fastgpt-sdk/plugin",
"version": "0.2.14",
"version": "0.2.15",
"description": "fastgpt-plugin sdk",
"main": "dist/client.js",
"types": "dist/client.d.ts",
Expand Down