@sparkelf/dsh-patch-responses-reasoning-status 0.2.0-rc.2 → 0.2.0-rc.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"file": "./patches/responses-reasoning-status.patch",
|
|
9
9
|
"id": "responses-omit-reasoning-input-status",
|
|
10
10
|
"target": {
|
|
11
|
-
"baseRevision": "
|
|
11
|
+
"baseRevision": "ddefc45fbc7f8e46dd73185e68295696d1297887",
|
|
12
12
|
"kind": "dsh-source",
|
|
13
13
|
"paths": [
|
|
14
14
|
"packages/llm/llm-pi-ai/",
|
|
@@ -32,5 +32,5 @@
|
|
|
32
32
|
"url": "git+https://github.com/SparkElf/deepseek-harness-plus.git"
|
|
33
33
|
},
|
|
34
34
|
"type": "module",
|
|
35
|
-
"version": "0.2.0-rc.
|
|
35
|
+
"version": "0.2.0-rc.20"
|
|
36
36
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
diff --git a/packages/client/ui-settings-models/src/client/ModelsSection.module.css b/packages/client/ui-settings-models/src/client/ModelsSection.module.css
|
|
2
|
-
index
|
|
2
|
+
index 15b8933..415126d 100644
|
|
3
3
|
--- a/packages/client/ui-settings-models/src/client/ModelsSection.module.css
|
|
4
4
|
+++ b/packages/client/ui-settings-models/src/client/ModelsSection.module.css
|
|
5
|
-
@@ -397,6 +397,
|
|
5
|
+
@@ -397,6 +397,32 @@
|
|
6
6
|
padding-top: 12px;
|
|
7
7
|
}
|
|
8
8
|
|
|
@@ -31,16 +31,17 @@ index 2dc72373ea..f0a9ab95fb 100644
|
|
|
31
31
|
+ cursor: not-allowed;
|
|
32
32
|
+}
|
|
33
33
|
+
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
34
|
+
+
|
|
35
|
+
.modelCatalog {
|
|
36
|
+
display: flex;
|
|
37
|
+
flex-direction: column;
|
|
37
38
|
diff --git a/packages/client/ui-settings-models/src/client/ProviderEditor.tsx b/packages/client/ui-settings-models/src/client/ProviderEditor.tsx
|
|
38
|
-
index
|
|
39
|
+
index bc89f43..2533cae 100644
|
|
39
40
|
--- a/packages/client/ui-settings-models/src/client/ProviderEditor.tsx
|
|
40
41
|
+++ b/packages/client/ui-settings-models/src/client/ProviderEditor.tsx
|
|
41
|
-
@@ -
|
|
42
|
-
|
|
43
|
-
|
|
42
|
+
@@ -44,6 +44,9 @@ type EditorLayout = 'deepseek' | 'pi-ai' | 'unknown'
|
|
43
|
+
|
|
44
|
+
|
|
44
45
|
|
|
45
46
|
+/** Leaf path of the curated OpenAI Responses compatibility setting. */
|
|
46
47
|
+const OMIT_REASONING_INPUT_STATUS_PATH = ['responsesCompatibility', 'omitReasoningInputStatus'] as const
|
|
@@ -48,7 +49,7 @@ index ffa8c2e1fe..3c3e7729b4 100644
|
|
|
48
49
|
/** Props of {@link ProviderEditor}. */
|
|
49
50
|
export interface ProviderEditorProps {
|
|
50
51
|
/** Provider route id. */
|
|
51
|
-
@@ -
|
|
52
|
+
@@ -171,6 +174,10 @@ export function ProviderEditor(props: ProviderEditorProps): ReactNode {
|
|
52
53
|
const root = useMemo(() => schema.rehydrate(namespace.schema), [namespace.schema, schema])
|
|
53
54
|
const node = useMemo(() => schema.nodeAtPath(root, settingsPath), [root, schema, settingsPath])
|
|
54
55
|
const fallback = schema.getPath(namespace.value, settingsPath)
|
|
@@ -59,7 +60,7 @@ index ffa8c2e1fe..3c3e7729b4 100644
|
|
|
59
60
|
const disabled = props.readOnly || busy
|
|
60
61
|
const layout = layoutOf(namespace.ns)
|
|
61
62
|
const keyRef = refFor(schema, namespace, settingsPath, props.provider)
|
|
62
|
-
@@ -
|
|
63
|
+
@@ -199,6 +206,11 @@ export function ProviderEditor(props: ProviderEditorProps): ReactNode {
|
|
63
64
|
const value = schema.getPath(source, [key])
|
|
64
65
|
return typeof value === 'string' && value.trim().length > 0 ? value : undefined
|
|
65
66
|
}
|
|
@@ -71,7 +72,7 @@ index ffa8c2e1fe..3c3e7729b4 100644
|
|
|
71
72
|
const setField = (key: string, next: string | undefined): void => {
|
|
72
73
|
// A value of nothing but whitespace is cleared, not stored: `stringAt`
|
|
73
74
|
// already reports it as absent, so the field would otherwise render empty
|
|
74
|
-
@@ -
|
|
75
|
+
@@ -227,6 +239,9 @@ export function ProviderEditor(props: ProviderEditorProps): ReactNode {
|
|
75
76
|
// What the form currently shows, which is what an interrogation must ask:
|
|
76
77
|
// an edited-but-unsaved endpoint, and a key typed but not yet stored.
|
|
77
78
|
const probeApi = stringAt(draft, 'api') ?? stringAt(fallback, 'api')
|
|
@@ -81,7 +82,7 @@ index ffa8c2e1fe..3c3e7729b4 100644
|
|
|
81
82
|
const probeBaseURL = stringAt(draft, 'baseURL') ?? stringAt(fallback, 'baseURL')
|
|
82
83
|
const probe = {
|
|
83
84
|
settingsNs: namespace.ns,
|
|
84
|
-
@@ -
|
|
85
|
+
@@ -436,7 +451,15 @@ export function ProviderEditor(props: ProviderEditorProps): ReactNode {
|
|
85
86
|
value={probeApi ?? ''}
|
|
86
87
|
aria-label={t('customApi')}
|
|
87
88
|
disabled={disabled}
|
|
@@ -98,7 +99,7 @@ index ffa8c2e1fe..3c3e7729b4 100644
|
|
|
98
99
|
>
|
|
99
100
|
{/* A profile naming no protocol — hand-written into
|
|
100
101
|
settings.yaml with no model to need one — selects
|
|
101
|
-
@@ -
|
|
102
|
+
@@ -450,6 +473,24 @@ export function ProviderEditor(props: ProviderEditorProps): ReactNode {
|
|
102
103
|
</div>
|
|
103
104
|
)
|
|
104
105
|
: null}
|
|
@@ -124,10 +125,10 @@ index ffa8c2e1fe..3c3e7729b4 100644
|
|
|
124
125
|
the extras differ — DeepSeek's inherited capacities, pi-ai's
|
|
125
126
|
endpoint interrogation. */}
|
|
126
127
|
diff --git a/packages/client/ui-settings-models/src/client/locales.ts b/packages/client/ui-settings-models/src/client/locales.ts
|
|
127
|
-
index
|
|
128
|
+
index d06ee79..9a623ba 100644
|
|
128
129
|
--- a/packages/client/ui-settings-models/src/client/locales.ts
|
|
129
130
|
+++ b/packages/client/ui-settings-models/src/client/locales.ts
|
|
130
|
-
@@ -
|
|
131
|
+
@@ -89,6 +89,7 @@ export const en = {
|
|
131
132
|
customDisplayName: 'Display name',
|
|
132
133
|
customApi: 'API protocol',
|
|
133
134
|
customApiUnset: 'Not selected',
|
|
@@ -135,7 +136,7 @@ index 3a3190416f..49aac02f68 100644
|
|
|
135
136
|
customNeedsBaseUrl: 'A custom provider needs a base URL.',
|
|
136
137
|
customBaseUrlInvalid: 'Enter a valid HTTP or HTTPS URL.',
|
|
137
138
|
customNeedsModels: 'A custom provider needs at least one model.',
|
|
138
|
-
@@ -
|
|
139
|
+
@@ -200,6 +201,7 @@ export const zh: { [Key in keyof typeof en]: string } = {
|
|
139
140
|
customDisplayName: '显示名称',
|
|
140
141
|
customApi: 'API 协议',
|
|
141
142
|
customApiUnset: '未选择',
|
|
@@ -144,7 +145,7 @@ index 3a3190416f..49aac02f68 100644
|
|
|
144
145
|
customBaseUrlInvalid: '请输入有效的 HTTP 或 HTTPS 地址。',
|
|
145
146
|
customNeedsModels: '自定义提供方至少需要一个模型。',
|
|
146
147
|
diff --git a/packages/llm/llm-pi-ai/src/adapter.ts b/packages/llm/llm-pi-ai/src/adapter.ts
|
|
147
|
-
index
|
|
148
|
+
index de9f3e0..404b66d 100644
|
|
148
149
|
--- a/packages/llm/llm-pi-ai/src/adapter.ts
|
|
149
150
|
+++ b/packages/llm/llm-pi-ai/src/adapter.ts
|
|
150
151
|
@@ -111,6 +111,24 @@ export interface PiAiAuthInjection {
|
|
@@ -181,7 +182,7 @@ index 8dba978c31..5bd80331c5 100644
|
|
|
181
182
|
maxRetries: 0,
|
|
182
183
|
}
|
|
183
184
|
diff --git a/packages/llm/llm-pi-ai/src/config.ts b/packages/llm/llm-pi-ai/src/config.ts
|
|
184
|
-
index
|
|
185
|
+
index 2f9e563..7eda300 100644
|
|
185
186
|
--- a/packages/llm/llm-pi-ai/src/config.ts
|
|
186
187
|
+++ b/packages/llm/llm-pi-ai/src/config.ts
|
|
187
188
|
@@ -87,6 +87,12 @@ export type {
|