Skip to content

Commit bbf1c9a

Browse files
committed
updates
1 parent b803be4 commit bbf1c9a

File tree

4 files changed

+29
-9
lines changed

4 files changed

+29
-9
lines changed

MyApp/Pages/TextToBlazor.cshtml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,10 +262,12 @@ export const icons = {
262262
'claude-3-sonnet': '/img/models/claude-3-sonnet.svg',
263263
'claude-3-5-haiku': '/img/models/claude-3-haiku.svg',
264264
'claude-3-5-sonnet': '/img/models/claude-3-5-sonnet.svg',
265-
'gemini-flash-2.0': '/img/models/gemini-pro.svg',
265+
'gemini-pro-1.5': '/img/models/gemini-pro.svg',
266266
'gemini-flash-1.5': '/img/models/gemini-pro.svg',
267267
'gemini-flash-1.5-8b': '/img/models/gemini-pro.svg',
268-
'gemini-pro-1.5': '/img/models/gemini-pro.svg',
268+
'gemini-pro-2.0': '/img/models/gemini-pro.svg',
269+
'gemini-flash-2.0': '/img/models/gemini-pro.svg',
270+
'gemini-flash-lite-2.0':'/img/models/gemini-pro.svg',
269271
'gemini-flash-thinking-2.0': '/img/models/gemini-pro.svg',
270272
}
271273

MyApp/_posts/2025-02-18_okai-chat.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@ deepseek-v3:671b (alias deepseek)
5454
gemini-flash-1.5
5555
gemini-flash-1.5-8b (alias flash-8b)
5656
gemini-flash-2.0 (alias flash)
57+
gemini-flash-lite-2.0 (alias flash-lite)
5758
gemini-flash-thinking-2.0 (alias flash-thinking)
59+
gemini-pro-2.0 (alias gemini-pro)
5860
gemma2:9b (alias gemma)
5961
gpt-3.5-turbo (alias gpt-3.5)
6062
gpt-4o-mini
@@ -81,7 +83,7 @@ claude-3-5-haiku
8183
claude-3-5-sonnet
8284
claude-3-sonnet
8385
deepseek-r1:671b (alias deepseek-r1)
84-
gemini-pro-1.5 (alias gemini-pro)
86+
gemini-pro-1.5
8587
gpt-4
8688
gpt-4-turbo
8789
gpt-4o
@@ -102,15 +104,15 @@ Where you'll be able to use any of the great performing inexpensive models liste
102104
Whilst ServiceStack customers with an active commercial license can also use any of the more expensive
103105
and better performing models listed under `PREMIUM MODELS` by either:
104106

105-
a) Setting the `SERVICESTACK_LICENSE` Environment Variable with your License Key
106-
b) Setting the `SERVICESTACK_CERTIFICATE` Variable with your License Certificate
107-
c) Inline using the `-license` flag with either the License Key or Certificate
107+
a) Setting the `SERVICESTACK_LICENSE` Environment Variable with your **License Key**
108+
b) Setting the `SERVICESTACK_CERTIFICATE` Variable with your **License Certificate**
109+
c) Inline using the `-license` flag with either the **License Key** or **Certificate**
108110

109111
### FREE for Personal Usage
110112

111113
To be able to maintain this as a free service we're limiting usage as a tool that developers can use for personal
112114
assistance and research by limiting usage to **60 requests /hour** which should be more than enough for most
113-
personal usage whilst deterring usage in automated tools.
115+
personal usage and research whilst deterring usage in automated tools.
114116

115117
Rate limiting is implemented by adopting a sliding [Token Bucket algorithm](https://en.wikipedia.org/wiki/Token_bucket)
116118
that will replenish 1 additional request every 60 seconds.

MyApp/_posts/2025-02-19_crud-app-from-existing-db.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Generate CRUD APIs and Admin UIs from existing DB
2+
title: Generate CRUD APIs and Admin UIs from existing DBs
33
summary: Use the metadata from an existing RDBMS to generate AutoQuery CRUD APIs and Admin UIs for managing your data.
44
tags: [okai,db,autoquery,api,admin-ui]
55
author: Demis Bellot
@@ -42,7 +42,8 @@ This task can then be run from the command line with:
4242
dotnet run --AppTasks=App.json
4343
:::
4444

45-
Which will generate the `App_Data/App.json` file containing the metadata for all tables in the RDBMS.
45+
Which will generate the `App_Data/App.json` file containing the table definition metadata for all tables in
46+
the specified RDBMS.
4647

4748
### Different Connection or DB Schema
4849

MyApp/wwwroot/okai/accepted/index.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,5 +166,20 @@
166166
"provider": "google",
167167
"prompt": "Create an employee management, payroll and benefits administration App.",
168168
"groupName": "Employees"
169+
},
170+
{
171+
"id": "1737862018556",
172+
"model": "codestral:22b",
173+
"provider": "codestral",
174+
"prompt": "Create an employee management, payroll and benefits administration App.",
175+
"groupName": "Employees"
176+
},
177+
{
178+
"id": "1738307965273",
179+
"model": "mistral-small:24b",
180+
"timing": "5073",
181+
"provider": "openrouter",
182+
"prompt": "Create a Job Board",
183+
"groupName": "Jobs"
169184
}
170185
]

0 commit comments

Comments
 (0)