feat: bugfix
This commit is contained in:
parent
b3e856df1d
commit
a1493bfb4e
|
@ -164,7 +164,7 @@ export class ClaudeApi implements LLMApi {
|
|||
if (prompt[0]?.role === "assistant") {
|
||||
prompt.unshift({
|
||||
role: "user",
|
||||
content: "",
|
||||
content: ";",
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -1088,7 +1088,7 @@ function _Chat() {
|
|||
if (payload.url) {
|
||||
accessStore.update((access) => (access.openaiUrl = payload.url!));
|
||||
}
|
||||
accessStore.useCustomConfig = true;
|
||||
accessStore.update((access) => (access.useCustomConfig = true));
|
||||
});
|
||||
}
|
||||
} catch {
|
||||
|
|
Loading…
Reference in New Issue