Skip to content

Commit 3d5f98e

Browse files
authored
1.103.2 (#427)
# PR Checklist - [ ] Did you check if it works normally in all models? *ignore this when it dosen't uses models* - [ ] Did you check if it works normally in all of web, local and node hosted versions? if it dosen't, did you blocked it in those versions? - [ ] Did you added a type def? # Description
2 parents 52300ef + 641aea7 commit 3d5f98e

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

src-tauri/tauri.conf.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"package": {
1010
"productName": "RisuAI",
11-
"version": "1.103.1"
11+
"version": "1.103.2"
1212
},
1313
"tauri": {
1414
"allowlist": {

src/lib/UI/ModelList.svelte

+1
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@
9898
</Arcodion>
9999
<Arcodion name="Google Gemini">
100100
<button class="hover:bg-selected px-6 py-2 text-lg" on:click={() => {changeModel('gemini-1.5-pro-latest')}}>Gemini Pro 1.5</button>
101+
<button class="hover:bg-selected px-6 py-2 text-lg" on:click={() => {changeModel('gemini-1.5-flash')}}>Gemini Flash 1.5</button>
101102
<button class="hover:bg-selected px-6 py-2 text-lg" on:click={() => {changeModel('gemini-pro')}}>Gemini Pro</button>
102103
<button class="hover:bg-selected px-6 py-2 text-lg" on:click={() => {changeModel('gemini-pro-vision')}}>Gemini Pro Vision</button>
103104
<button class="hover:bg-selected px-6 py-2 text-lg" on:click={() => {changeModel('gemini-ultra')}}>Gemini Ultra</button>

src/ts/storage/database.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import type { OobaChatCompletionRequestParams } from '../model/ooba';
1414

1515
export const DataBase = writable({} as any as Database)
1616
export const loadedStore = writable(false)
17-
export let appVer = "1.103.1"
17+
export let appVer = "1.103.2"
1818
export let webAppSubVer = ''
1919

2020
export function setDatabase(data:Database){

version.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"version":"1.103.1"}
1+
{"version":"1.103.2"}

0 commit comments

Comments
 (0)