Skip to content

Commit 08b7ea3

Browse files
committed
add llm files; trying to disable accidental zooming
1 parent aa849f9 commit 08b7ea3

File tree

8 files changed

+1643
-269
lines changed

8 files changed

+1643
-269
lines changed

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11

22
calcit.cirru -diff linguist-generated
33
yarn.lock -diff linguist-generated
4+
5+
Agents.md -diff linguist-generated
6+
llms/*.md -diff linguist-generated

Agents.md

Lines changed: 445 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

calcit.cirru

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

compact.cirru

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@
200200
:thinkingBudget $ get-env "\"think-budget" (if pro? 3200 800)
201201
:includeThoughts think?
202202
js-object (:thinkingBudget 0) (:includeThoughts false)
203-
:httpOptions $ js-object
203+
; :httpOptions $ js-object
204204
:baseUrl $ get-env "\"gemini-host" "\"https://ja.chenyong.life"
205205
:tools $ let
206206
t $ ->
@@ -607,6 +607,7 @@
607607
{} $ :max-width "\"90vw"
608608
"\"&" $ {} (:color "\"#999") (:transition-duration "\"300ms")
609609
:background-color $ hsl 0 0 98
610+
:touch-action :none
610611
"\"&:hover" $ {} (:color "\"#777")
611612
:background-color $ hsl 0 0 100
612613
:examples $ []
@@ -741,6 +742,7 @@
741742
"\"@google/genai" :refer $ GoogleGenAI Modality
742743
"\"../lib/image" :refer $ base64ToBlob
743744
"\"openai" :default OpenAI
745+
:examples $ []
744746
|app.config $ %{} :FileEntry
745747
:defs $ {}
746748
|chrome-extension? $ %{} :CodeEntry (:doc |)
@@ -757,6 +759,7 @@
757759
:examples $ []
758760
:ns $ %{} :CodeEntry (:doc |)
759761
:code $ quote (ns app.config)
762+
:examples $ []
760763
|app.main $ %{} :FileEntry
761764
:defs $ {}
762765
|*reel $ %{} :CodeEntry (:doc |)
@@ -778,7 +781,7 @@
778781
if
779782
= "\"menu-trigger" $ .-action message
780783
let
781-
content $ str "\"你扮演一个专业的工程师, 对以下内容做一下讲解, 用中文, 注意要简略, 内容注意分块.\n\n" &newline &newline (.-content message)
784+
content $ str "\"你扮演一个专业的工程师, 对以下内容做一下讲解, 用中文, 注意要简略, 内容注意分块.\n\n" &newline &newline (.-content message)
782785
store $ :store @*reel
783786
cursor $ []
784787
state0 $ get-in store ([] :states :data)
@@ -797,6 +800,11 @@
797800
js/window.addEventListener |beforeunload $ fn (event) (persist-storage!)
798801
js/window.addEventListener |visibilitychange $ fn (event)
799802
if (= "\"hidden" js/document.visibilityState) (persist-storage!)
803+
js/window.addEventListener |dblclick $ fn (event) (.!preventDefault event)
804+
js/window.addEventListener |wheel
805+
fn (event)
806+
if (.-ctrlKey event) (.!preventDefault event)
807+
js-object $ :passive false
800808
; flipped js/setInterval 60000 persist-storage!
801809
let
802810
raw $ js/localStorage.getItem (:storage-key config/site)
@@ -842,6 +850,7 @@
842850
app.config :as config
843851
"\"./calcit.build-errors" :default build-errors
844852
"\"bottom-tip" :default hud!
853+
:examples $ []
845854
|app.schema $ %{} :FileEntry
846855
:defs $ {}
847856
|store $ %{} :CodeEntry (:doc |)
@@ -853,6 +862,7 @@
853862
:examples $ []
854863
:ns $ %{} :CodeEntry (:doc |)
855864
:code $ quote (ns app.schema)
865+
:examples $ []
856866
|app.updater $ %{} :FileEntry
857867
:defs $ {}
858868
|updater $ %{} :CodeEntry (:doc |)
@@ -874,3 +884,4 @@
874884
:code $ quote
875885
ns app.updater $ :require
876886
respo.cursor :refer $ update-states update-states-merge
887+
:examples $ []

deps.cirru

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

2-
{} (:calcit-version |0.9.20)
2+
{} (:calcit-version |0.10.4)
33
:dependencies $ {} (|Respo/alerts.calcit |0.10.2)
44
|Respo/reel.calcit |main
55
|Respo/respo-markdown.calcit |0.4.11
66
|Respo/respo-ui.calcit |0.6.3
7-
|Respo/respo.calcit |0.16.21
7+
|Respo/respo.calcit |0.16.22
88
|calcit-lang/lilac |main
99
|calcit-lang/memof |main

0 commit comments

Comments
 (0)