Seefs
0ba6004ffc
Merge pull request #2334 from seefs001/feature/glm-coding
...
feat: glm coding plan && kimi coding plan
2025-11-30 16:21:12 +08:00
Seefs
d98e7b3dbf
Merge pull request #2296 from seefs001/fix/adapter-missing
...
fix: volcengine claude DoResponse
2025-11-25 16:45:14 +08:00
Seefs
32ccc63439
fix: volcengine claude DoResponse
2025-11-25 15:45:31 +08:00
Seefs
7351006662
fix: volcengine && baidu claude adapter
2025-11-25 15:06:03 +08:00
borx
e62ccd3431
fix: cast size to int64 before comparing with MaxUint32
2025-11-20 23:57:30 +08:00
Seefs
1381666586
Merge pull request #2238 from seefs001/feature/doubao-coding-plan
...
Publish Docker image (Multi Registries, native amd64+arm64) / Build & push (amd64) [native] (push) Has been cancelled
Publish Docker image (Multi Registries, native amd64+arm64) / Build & push (arm64) [native] (push) Has been cancelled
Publish Docker image (Multi Registries, native amd64+arm64) / Create multi-arch manifests (Docker Hub) (push) Has been cancelled
Build Electron App / build (windows-latest) (push) Has been cancelled
Build Electron App / release (push) Has been cancelled
Release (Linux, macOS, Windows) / Linux Release (push) Has been cancelled
Release (Linux, macOS, Windows) / macOS Release (push) Has been cancelled
Release (Linux, macOS, Windows) / Windows Release (push) Has been cancelled
feat: support doubao coding plan
2025-11-16 23:49:35 +08:00
Seefs
fd55ba7f2c
feat: ShouldPreserveThinkingSuffix ( #2189 )
Publish Docker image (Multi Registries, native amd64+arm64) / Build & push (amd64) [native] (push) Has been cancelled
Publish Docker image (Multi Registries, native amd64+arm64) / Build & push (arm64) [native] (push) Has been cancelled
Publish Docker image (Multi Registries, native amd64+arm64) / Create multi-arch manifests (Docker Hub) (push) Has been cancelled
Build Electron App / build (windows-latest) (push) Has been cancelled
Build Electron App / release (push) Has been cancelled
Release (Linux, macOS, Windows) / Linux Release (push) Has been cancelled
Release (Linux, macOS, Windows) / macOS Release (push) Has been cancelled
Release (Linux, macOS, Windows) / Windows Release (push) Has been cancelled
2025-11-07 17:43:33 +08:00
feitianbubu
fe9b092b0b
feat: doubao-seedream support image edit
2025-10-23 21:19:33 +08:00
feitianbubu
fd6cd838f7
refactor: clean up doubao tts code
2025-10-22 17:06:13 +08:00
feitianbubu
828bb17d2c
feat: doubao tts add is stream check
2025-10-22 13:39:16 +08:00
feitianbubu
23c22708f2
feat: doubao tts support streaming realtime audio
2025-10-22 13:39:16 +08:00
feitianbubu
13362887dd
fix: doubao audio speedRadio to speed
2025-10-18 01:48:36 +08:00
feitianbubu
412b935a4d
feat: AudioRequest add metadata support custom params
2025-10-18 01:48:36 +08:00
IcedTangerine
319680d052
Fix error message for invalid API key format
2025-10-18 00:13:28 +08:00
feitianbubu
0952631fa2
feat: add doubao tts usage token
2025-10-17 22:06:45 +08:00
feitianbubu
1be4e12ca0
feat: switch to official TTS only when baseUrl is Volcano's official URL
2025-10-17 22:06:45 +08:00
feitianbubu
f052f8ba22
feat: add doubao audio tts
2025-10-17 22:06:45 +08:00
Seefs
5010f2d004
format: package name -> github.com/QuantumNous/new-api ( #2017 )
2025-10-11 15:30:09 +08:00
CaIon
121e01c764
fix(adaptor): update relay mode handling to support relay format
Publish Docker image (Multi Registries) / Push Docker image to multiple registries (push) Has been cancelled
Linux Release / release (push) Has been cancelled
macOS Release / release (push) Has been cancelled
Windows Release / release (push) Has been cancelled
2025-09-30 16:53:57 +08:00
huanghejian
d1f590aa7b
pref: 优化代码
2025-09-27 15:19:54 +08:00
huanghejian
690d103021
feat: volcengine支持自定义域名
2025-09-27 09:35:03 +08:00
huanghejian
97755c2e94
fix: VolcEngine doubao-seedream-4-0-250828
2025-09-16 14:30:12 +08:00
HynoR
c94a74c398
feat: adapt Volcengine adaptor for deepseek3.1 model with thinking suffix
2025-08-25 11:16:43 +08:00
CaIon
c9e9a24e99
refactor: centralize logging and update resource initialization
...
This commit refactors the logging mechanism across the application by replacing direct logger calls with a centralized logging approach using the `common` package. Key changes include:
- Replaced instances of `logger.SysLog` and `logger.FatalLog` with `common.SysLog` and `common.FatalLog` for consistent logging practices.
- Updated resource initialization error handling to utilize the new logging structure, enhancing maintainability and readability.
- Minor adjustments to improve code clarity and organization throughout various modules.
This change aims to streamline logging and improve the overall architecture of the codebase.
2025-08-14 21:10:04 +08:00
CaIon
ef2bed2fe7
feat: enhance Adaptor to support multiple relay modes in request handling
2025-08-07 19:30:42 +08:00
creamlike1024
689dbfe71a
feat: convert gemini format to openai chat completions
2025-08-01 22:23:35 +08:00
CaIon
4a9ca4209a
refactor: Introduce standardized API error
...
This commit refactors the application's error handling mechanism by introducing a new standardized error type, `types.NewAPIError`. It also renames common JSON utility functions for better clarity.
Previously, internal error handling was tightly coupled to the `dto.OpenAIError` format. This change decouples the internal logic from the external API representation.
Key changes:
- A new `types.NewAPIError` struct is introduced to serve as a canonical internal representation for all API errors.
- All relay adapters (OpenAI, Claude, Gemini, etc.) are updated to return `*types.NewAPIError`.
- Controllers now convert the internal `NewAPIError` to the client-facing `OpenAIError` format at the API boundary, ensuring backward compatibility.
- Channel auto-disable/enable logic is updated to use the new standardized error type.
- JSON utility functions are renamed to align with Go's standard library conventions (e.g., `UnmarshalJson` -> `Unmarshal`, `EncodeJson` -> `Marshal`).
2025-07-10 15:02:40 +08:00
Adam.Wang
ce21b247bd
feat: 火山引擎增加文生图
2025-05-23 16:42:53 +08:00
creamlike1024
8ea4c76f2b
feat: support /v1/responses API
2025-05-02 13:59:46 +08:00
CalciumIon
5021000c5d
refactor: Simplify OpenAI handler function signature and remove unused TextResponseWithError struct; introduce common_handler for rerank functionality
2025-03-14 17:31:05 +08:00
1808837298@qq.com
47c297794d
feat: 初步兼容流模式下openai渠道类型转为claude格式访问 #862
Publish Docker image (amd64) / Push Docker image to multiple registries (push) Has been cancelled
2025-03-13 19:32:08 +08:00
1808837298@qq.com
78fc3a191c
feat: claude relay
2025-03-12 21:31:46 +08:00
1808837298@qq.com
2869dbf60a
feat: Enhance VolcEngine channel support with bot model routing ( fix #757 )
Publish Docker image (amd64) / Push Docker image to multiple registries (push) Has been cancelled
Publish Docker image (arm64) / Push Docker image to multiple registries (push) Has been cancelled
Linux Release / release (push) Has been cancelled
macOS Release / release (push) Has been cancelled
Windows Release / release (push) Has been cancelled
2025-02-15 00:10:58 +08:00
1808837298@qq.com
babbbfb346
feat: Add Baidu Qianfan V2 channel support #725
...
- Update channel constants to include Baidu V2 channel
- Create new Baidu V2 adaptor for relay
- Add Baidu V2 models and channel configuration
- Update relay adaptor to support Baidu V2 channel
- Modify web channel constants to include Baidu V2 option
2025-02-12 00:07:02 +08:00
1808837298@qq.com
4d6bce1ddd
feat: Add support for VolcEngine (Doubao) channel #313 #734
2025-02-11 23:47:15 +08:00