free-coding-models 0.4.3 → 0.5.1

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.
Files changed (142) hide show
  1. package/README.md +9 -1
  2. package/bin/free-coding-models.js +19 -9
  3. package/changelog/v0.5.0.md +15 -0
  4. package/changelog/v0.5.1.md +24 -0
  5. package/package.json +7 -2
  6. package/src/{analysis.js → core/analysis.js} +5 -5
  7. package/src/{constants.js → core/constants.js} +1 -1
  8. package/src/{endpoint-installer.js → core/endpoint-installer.js} +1 -1
  9. package/src/{installed-models-manager.js → core/installed-models-manager.js} +1 -1
  10. package/src/{kilo.js → core/kilo.js} +1 -2
  11. package/src/{openclaw.js → core/openclaw.js} +1 -1
  12. package/src/{opencode.js → core/opencode.js} +2 -1
  13. package/src/{ping-loop.js → core/ping-loop.js} +1 -1
  14. package/src/{router-daemon.js → core/router-daemon.js} +169 -4
  15. package/src/{router-dashboard.js → core/router-dashboard.js} +2 -2
  16. package/src/{setup.js → core/setup.js} +1 -1
  17. package/src/{sync-set.js → core/sync-set.js} +1 -1
  18. package/src/{telemetry.js → core/telemetry.js} +1 -1
  19. package/src/{tool-launchers.js → core/tool-launchers.js} +2 -2
  20. package/src/{updater.js → core/updater.js} +1 -1
  21. package/src/{utils.js → core/utils.js} +2 -0
  22. package/src/{app.js → tui/app.js} +38 -38
  23. package/src/{cli-help.js → tui/cli-help.js} +3 -1
  24. package/src/{command-palette.js → tui/command-palette.js} +2 -2
  25. package/src/{key-handler.js → tui/key-handler.js} +11 -11
  26. package/src/{overlays.js → tui/overlays.js} +2 -2
  27. package/src/{render-helpers.js → tui/render-helpers.js} +2 -2
  28. package/src/{render-table.js → tui/render-table.js} +9 -9
  29. package/src/{tui-filters.js → tui/tui-filters.js} +3 -3
  30. package/src/{tui-state.js → tui/tui-state.js} +1 -1
  31. package/web/README.md +46 -0
  32. package/web/dist/assets/index-ByGf4Kq-.js +14 -0
  33. package/web/dist/assets/index-Ds7wmHBv.css +1 -0
  34. package/web/dist/index.html +3 -6
  35. package/web/index.html +1 -4
  36. package/web/package.json +11 -0
  37. package/web/server.js +609 -214
  38. package/web/src/App.jsx +54 -12
  39. package/web/src/components/analytics/AnalyticsView.jsx +10 -4
  40. package/web/src/components/atoms/AILatencyCell.jsx +38 -0
  41. package/web/src/components/atoms/AILatencyCell.module.css +43 -0
  42. package/web/src/components/atoms/HealthCell.jsx +53 -0
  43. package/web/src/components/atoms/HealthCell.module.css +15 -0
  44. package/web/src/components/atoms/LastPingCell.jsx +35 -0
  45. package/web/src/components/atoms/LastPingCell.module.css +35 -0
  46. package/web/src/components/atoms/MoodCell.jsx +25 -0
  47. package/web/src/components/atoms/MoodCell.module.css +6 -0
  48. package/web/src/components/atoms/RankCell.jsx +9 -0
  49. package/web/src/components/atoms/RankCell.module.css +9 -0
  50. package/web/src/components/atoms/TPSCell.jsx +36 -0
  51. package/web/src/components/atoms/TPSCell.module.css +38 -0
  52. package/web/src/components/atoms/VerdictBadge.jsx +30 -7
  53. package/web/src/components/atoms/VerdictBadge.module.css +24 -15
  54. package/web/src/components/dashboard/ExportModal.jsx +9 -4
  55. package/web/src/components/dashboard/FilterBar.jsx +112 -10
  56. package/web/src/components/dashboard/FilterBar.module.css +86 -1
  57. package/web/src/components/dashboard/ModelTable.jsx +293 -52
  58. package/web/src/components/dashboard/ModelTable.module.css +131 -33
  59. package/web/src/components/dashboard/StatsBar.jsx +7 -5
  60. package/web/src/components/layout/Footer.jsx +1 -1
  61. package/web/src/components/layout/Header.jsx +43 -9
  62. package/web/src/components/layout/Header.module.css +38 -4
  63. package/web/src/components/layout/Sidebar.jsx +19 -11
  64. package/web/src/components/layout/Sidebar.module.css +15 -5
  65. package/web/src/components/settings/SettingsView.jsx +24 -6
  66. package/web/src/components/settings/SettingsView.module.css +0 -1
  67. package/web/src/global.css +70 -73
  68. package/web/src/hooks/useFilter.js +117 -25
  69. package/web/src/hooks/useSSE.js +33 -9
  70. package/web/src/hooks/useSocket.js +200 -0
  71. package/web/vite.config.js +41 -0
  72. package/src/graphify-out/cache/089db1c1def873cf6d112f1590da4490e61e691aff0db41e006aa2fb15ba0656.json +0 -1
  73. package/src/graphify-out/cache/0b510b53cf1a1393fb52b1fc3bbbf88b63938e961ec5b82119a2e9715fee8bd7.json +0 -1
  74. package/src/graphify-out/cache/0ec9a95a326bde58e0316889018b278062d06d494d0f31ba177c9de71e5fed2d.json +0 -1
  75. package/src/graphify-out/cache/1548663a24a68dce740ebab1bd1d3091048c9604e9d067a1650a42a6d82541d4.json +0 -1
  76. package/src/graphify-out/cache/1783af63cb6d0dfb4d469009f71ac83a74ba0b33d48186ff2c6e63f9429e900a.json +0 -1
  77. package/src/graphify-out/cache/1e109f5eb5dc4fd285871c3613e32b6b14a8c225f4080ee34b51c7e1a1764571.json +0 -1
  78. package/src/graphify-out/cache/1eb24dbeb69b46c8bc1caf925df2f2a964af0f33aea143adf8ddf88e017db6ca.json +0 -1
  79. package/src/graphify-out/cache/21e1bcfed11685e8347243f9d8516072dda183266a4bfe22c52fb31753a446c8.json +0 -1
  80. package/src/graphify-out/cache/2327473478b9c4b1940bf7ef66c9ee960b3cba8d5302e56b625df8274246e0b4.json +0 -1
  81. package/src/graphify-out/cache/25955b81fd25454c8fa90fb71a47db8d1215cf621beb8ff3cbd580aaf011b4f3.json +0 -1
  82. package/src/graphify-out/cache/2739677f19c702f88f3de0a0bac475066adbda98709907ad3de967aef689f86d.json +0 -1
  83. package/src/graphify-out/cache/2bba03422f6b3ee7f5b5d29cc90314a064d259e5822a176657bda3e04505cf00.json +0 -1
  84. package/src/graphify-out/cache/2ddf1d2c6d10147b0402446bc71a7988187b79b6210dd7e7250be8c555b9ff35.json +0 -1
  85. package/src/graphify-out/cache/2ee07457a5767c95a57f8e9eb95b28f800044f35666e0715e9d88ad1103a092e.json +0 -1
  86. package/src/graphify-out/cache/2fe9f75dc2951c417f2c8dd22749092cf550dc67599f1c8d1866900dc6e9154e.json +0 -1
  87. package/src/graphify-out/cache/41c4b7c27e7fc3e2948d3a4bf95a72de2ed9a6f0463994babdce8ed2cc84598c.json +0 -1
  88. package/src/graphify-out/cache/5028defd54b7fbd3c7e444973e493de036e097e9b1d2a7cae7f19b88d68aacde.json +0 -1
  89. package/src/graphify-out/cache/5b133aba3fb16410c5b1fdbd1730039fc7fa1ac93abd99d7be08f60da70fc8d4.json +0 -1
  90. package/src/graphify-out/cache/74252e5b0978d85ab3421a3de1a9384aa282ffd2be2cfe7db2530139089f4275.json +0 -1
  91. package/src/graphify-out/cache/7695ebeea056095edd14332963cc43354ef3a097caf46f1e28d0f01369642901.json +0 -1
  92. package/src/graphify-out/cache/777aa7085c395a935c6556bbde182cd871edb61f3a685ed8068ec0c8f6fb0075.json +0 -1
  93. package/src/graphify-out/cache/82a723881980e82273c113def8315533d7da28827e300413d9ad30f27b7407df.json +0 -1
  94. package/src/graphify-out/cache/86b87c9603e6cd188f42c7eed3b86c291d48a781c223a707e74f3e7ed0c02a21.json +0 -1
  95. package/src/graphify-out/cache/890fead9a78cadaed560a2d2453916121fa605c3e43a334910ac4bc951a9ef6d.json +0 -1
  96. package/src/graphify-out/cache/89d3ea66f52783caa775ef9a30923d7d6225e1d8ae9e962f4741b8c7785dab1e.json +0 -1
  97. package/src/graphify-out/cache/8cc82cd9edce41f0e1c092f14a94fd52bf847addf3237b616dc5a9e505bd05bd.json +0 -1
  98. package/src/graphify-out/cache/93ba2e25e3ff7ad525f397902345fbd375df7315de7b402e20cc803c14eccde8.json +0 -1
  99. package/src/graphify-out/cache/99beed29580b9c7bfecfee794cb3d8e535fcf0eb3b92113108f88bdd0a8e79b3.json +0 -1
  100. package/src/graphify-out/cache/aeeb931fa477c65ce2e51d8149957350fa54225c613222bbbe8448998d1afd3d.json +0 -1
  101. package/src/graphify-out/cache/baf91bef5b5ecb2a476433b6cc0c48c563c54ee2d07fc3c192e543685e3e7222.json +0 -1
  102. package/src/graphify-out/cache/bd98b94ac4e9b92b6336d47b26e0366b51a4eaf0711d722f05f98dfae23ab42b.json +0 -1
  103. package/src/graphify-out/cache/bfcb51e9328e9cbfbee4f6fee0f56635d7b03488addc9f6c4e4b190b70a73362.json +0 -1
  104. package/src/graphify-out/cache/c0d3dabeb093aa758c49eadf41b87ecc96a16c1449c2670aaf48cbfc891d8da6.json +0 -1
  105. package/src/graphify-out/cache/c20d6630236f473c1406068c3ae205853e649b216495c93dfec055dd222c55cf.json +0 -1
  106. package/src/graphify-out/cache/c22b9122816bebce0a2f79af41a986559d01e00163dbcd579c5755621b4cb483.json +0 -1
  107. package/src/graphify-out/cache/ca556ec14453ddb8f9e0c5a832dac90d77111b9bad5f8c2d80d272e2e7a06371.json +0 -1
  108. package/src/graphify-out/cache/d6dbc9135dfa35a756b3b09b06700e4bc229fdccba11bb963f2ba44028e0bbae.json +0 -1
  109. package/src/graphify-out/cache/e1cf71276f1779d0fa075f79bd7c8a9fd0b8eef6932ac043137451b7c7fa7cbe.json +0 -1
  110. package/src/graphify-out/cache/e4b3be14494467df2d2ed389bc4f18f099021cb5bc355b901fa88387b2d8b8a2.json +0 -1
  111. package/src/graphify-out/cache/eaea0dded097f6f9553b654220046c6ec0c9be592a5973d906564ee60af34e0d.json +0 -1
  112. package/src/graphify-out/cache/ef07d0cd2675d1f79d2a2fdbf3bc3319687638751e9ce89b0d0d97ed1cd9f7e1.json +0 -1
  113. package/src/graphify-out/cache/f81272d6eb8aaff9e96d5a1d9f06777db70ac3652a646b951ded51f79871d733.json +0 -1
  114. package/src/graphify-out/cache/f9619dd92186f75a6dbda937e0c606647153918524cdb5763f956e6ec2a9e386.json +0 -1
  115. package/src/graphify-out/cache/fd88b1b2ff4bfcae08559d9c2aaeeb9a3f1e2f5cd8928762c311196956c170a5.json +0 -1
  116. package/web/dist/assets/index-CGN-0_A0.css +0 -1
  117. package/web/dist/assets/index-Czwis3ab.js +0 -11
  118. /package/src/{benchmark.js → core/benchmark.js} +0 -0
  119. /package/src/{cache.js → core/cache.js} +0 -0
  120. /package/src/{changelog-loader.js → core/changelog-loader.js} +0 -0
  121. /package/src/{config.js → core/config.js} +0 -0
  122. /package/src/{favorites.js → core/favorites.js} +0 -0
  123. /package/src/{kilo-config.js → core/kilo-config.js} +0 -0
  124. /package/src/{legacy-proxy-cleanup.js → core/legacy-proxy-cleanup.js} +0 -0
  125. /package/src/{model-merger.js → core/model-merger.js} +0 -0
  126. /package/src/{opencode-config.js → core/opencode-config.js} +0 -0
  127. /package/src/{ping.js → core/ping.js} +0 -0
  128. /package/src/{product-flags.js → core/product-flags.js} +0 -0
  129. /package/src/{provider-metadata.js → core/provider-metadata.js} +0 -0
  130. /package/src/{provider-quota-fetchers.js → core/provider-quota-fetchers.js} +0 -0
  131. /package/src/{quota-capabilities.js → core/quota-capabilities.js} +0 -0
  132. /package/src/{security.js → core/security.js} +0 -0
  133. /package/src/{shell-env.js → core/shell-env.js} +0 -0
  134. /package/src/{testfcm.js → core/testfcm.js} +0 -0
  135. /package/src/{token-usage-reader.js → core/token-usage-reader.js} +0 -0
  136. /package/src/{tool-bootstrap.js → core/tool-bootstrap.js} +0 -0
  137. /package/src/{tool-metadata.js → core/tool-metadata.js} +0 -0
  138. /package/src/{usage-reader.js → core/usage-reader.js} +0 -0
  139. /package/src/{mouse.js → tui/mouse.js} +0 -0
  140. /package/src/{theme.js → tui/theme.js} +0 -0
  141. /package/src/{tier-colors.js → tui/tier-colors.js} +0 -0
  142. /package/src/{ui-config.js → tui/ui-config.js} +0 -0
@@ -0,0 +1,200 @@
1
+ /**
2
+ * @file web/src/hooks/useSocket.js
3
+ * @description Realtime model-data hook with Socket.IO primary, SSE fallback, and REST polling safety net.
4
+ *
5
+ * 📖 The dashboard runs locally, so freshness matters more than shaving every
6
+ * byte. Socket.IO gives the snappiest path in `pnpm dev:web`; SSE keeps Docker /
7
+ * daemon-style servers working without Socket.IO; REST polling guarantees the UI
8
+ * eventually recovers if both streaming transports are interrupted.
9
+ *
10
+ * @functions
11
+ * → useSocket(serverUrl) — Subscribe to live dashboard state
12
+ * @exports useSocket
13
+ */
14
+ import { useState, useEffect, useRef, useCallback } from 'react'
15
+ import { io } from 'socket.io-client'
16
+
17
+ const REST_FALLBACK_INTERVAL_MS = 2_000
18
+ const STALE_UPDATE_MS = 4_000
19
+ const ACTIVITY_THROTTLE_MS = 1_000
20
+
21
+ function normalizePayload(data) {
22
+ if (!data) return null
23
+ if (Array.isArray(data)) return { models: data }
24
+ if (Array.isArray(data.models)) return data
25
+ return null
26
+ }
27
+
28
+ function sameOriginUrl(path, serverUrl) {
29
+ if (!serverUrl) return path
30
+ return `${serverUrl.replace(/\/$/, '')}${path}`
31
+ }
32
+
33
+ export function useSocket(serverUrl = '') {
34
+ const [models, setModels] = useState([])
35
+ const [connected, setConnected] = useState(false)
36
+ const [transport, setTransport] = useState('connecting')
37
+ const [updateCount, setUpdateCount] = useState(0)
38
+ const [nextPingAt, setNextPingAt] = useState(null)
39
+ const [serverIsPinging, setServerIsPinging] = useState(false)
40
+ const [pendingPings, setPendingPings] = useState(0)
41
+ const [pingMode, setPingMode] = useState('speed')
42
+ const [globalBenchmarkRunning, setGlobalBenchmarkRunning] = useState(false)
43
+ const [globalBenchmarkTotal, setGlobalBenchmarkTotal] = useState(0)
44
+ const [globalBenchmarkCompleted, setGlobalBenchmarkCompleted] = useState(0)
45
+
46
+ const socketRef = useRef(null)
47
+ const esRef = useRef(null)
48
+ const pollRef = useRef(null)
49
+ const lastUpdateRef = useRef(0)
50
+ const lastActivityRef = useRef(0)
51
+ const mountedRef = useRef(false)
52
+
53
+ const applyPayload = useCallback((raw, source = 'unknown') => {
54
+ const data = normalizePayload(raw)
55
+ if (!data || !mountedRef.current) return
56
+
57
+ setModels(data.models ?? [])
58
+ setPingMode(data.pingMode ?? 'speed')
59
+ setNextPingAt(data.nextPingAt ?? null)
60
+ setServerIsPinging(Boolean(data.isPinging))
61
+ setPendingPings(Number.isFinite(data.pendingPings) ? data.pendingPings : 0)
62
+ setGlobalBenchmarkRunning(Boolean(data.globalBenchmarkRunning))
63
+ setGlobalBenchmarkTotal(Number.isFinite(data.globalBenchmarkTotal) ? data.globalBenchmarkTotal : 0)
64
+ setGlobalBenchmarkCompleted(Number.isFinite(data.globalBenchmarkCompleted) ? data.globalBenchmarkCompleted : 0)
65
+ setUpdateCount((count) => count + 1)
66
+ lastUpdateRef.current = Date.now()
67
+ if (source !== 'poll') {
68
+ setConnected(true)
69
+ setTransport(source)
70
+ }
71
+ }, [])
72
+
73
+ const fetchSnapshot = useCallback(async () => {
74
+ try {
75
+ const stateResponse = await fetch(sameOriginUrl('/api/state', serverUrl), { headers: { Accept: 'application/json' } })
76
+ if (stateResponse.ok) {
77
+ applyPayload(await stateResponse.json(), 'poll')
78
+ setConnected(true)
79
+ setTransport((current) => current === 'socket' || current === 'sse' ? current : 'poll')
80
+ return
81
+ }
82
+ } catch {}
83
+
84
+ try {
85
+ const response = await fetch(sameOriginUrl('/api/models', serverUrl), { headers: { Accept: 'application/json' } })
86
+ if (!response.ok) throw new Error(`HTTP ${response.status}`)
87
+ applyPayload(await response.json(), 'poll')
88
+ setConnected(true)
89
+ setTransport((current) => current === 'socket' || current === 'sse' ? current : 'poll')
90
+ } catch {
91
+ setConnected(false)
92
+ setTransport('offline')
93
+ }
94
+ }, [applyPayload, serverUrl])
95
+
96
+ const startSse = useCallback(() => {
97
+ if (esRef.current || !mountedRef.current) return
98
+ try {
99
+ const es = new EventSource(sameOriginUrl('/api/events', serverUrl))
100
+ esRef.current = es
101
+ es.onopen = () => {
102
+ if (!mountedRef.current) return
103
+ setConnected(true)
104
+ setTransport('sse')
105
+ }
106
+ const handleSsePayload = (event) => {
107
+ try { applyPayload(JSON.parse(event.data), 'sse') }
108
+ catch (err) { console.warn('[useSocket] SSE parse error:', err) }
109
+ }
110
+ es.onmessage = handleSsePayload
111
+ es.addEventListener('models', handleSsePayload)
112
+ es.onerror = () => {
113
+ es.close()
114
+ if (esRef.current === es) esRef.current = null
115
+ if (!socketRef.current?.connected) setConnected(false)
116
+ }
117
+ } catch {
118
+ esRef.current = null
119
+ }
120
+ }, [applyPayload, serverUrl])
121
+
122
+ const sendActivity = useCallback(() => {
123
+ const now = Date.now()
124
+ if (now - lastActivityRef.current < ACTIVITY_THROTTLE_MS) return
125
+ lastActivityRef.current = now
126
+
127
+ if (socketRef.current?.connected) {
128
+ socketRef.current.emit('client:activity')
129
+ return
130
+ }
131
+
132
+ fetch(sameOriginUrl('/api/activity', serverUrl), { method: 'POST' }).catch(() => {})
133
+ }, [serverUrl])
134
+
135
+ useEffect(() => {
136
+ mountedRef.current = true
137
+
138
+ const socket = io(serverUrl || undefined, {
139
+ transports: ['websocket', 'polling'],
140
+ reconnectionDelay: 500,
141
+ reconnectionDelayMax: 2500,
142
+ timeout: 1200,
143
+ })
144
+ socketRef.current = socket
145
+
146
+ socket.on('connect', () => {
147
+ setConnected(true)
148
+ setTransport('socket')
149
+ esRef.current?.close()
150
+ esRef.current = null
151
+ socket.emit('models:refresh')
152
+ socket.emit('client:activity')
153
+ })
154
+ socket.on('disconnect', () => {
155
+ if (!mountedRef.current) return
156
+ setConnected(false)
157
+ startSse()
158
+ })
159
+ socket.on('connect_error', () => {
160
+ if (!mountedRef.current) return
161
+ setConnected(false)
162
+ startSse()
163
+ })
164
+ socket.on('models:update', (data) => applyPayload(data, 'socket'))
165
+
166
+ pollRef.current = setInterval(() => {
167
+ const stale = Date.now() - lastUpdateRef.current > STALE_UPDATE_MS
168
+ if (!socket.connected || stale) void fetchSnapshot()
169
+ }, REST_FALLBACK_INTERVAL_MS)
170
+
171
+ void fetchSnapshot()
172
+
173
+ const activityEvents = ['keydown', 'pointerdown', 'mousemove', 'focus']
174
+ for (const eventName of activityEvents) window.addEventListener(eventName, sendActivity, { passive: true })
175
+
176
+ return () => {
177
+ mountedRef.current = false
178
+ for (const eventName of activityEvents) window.removeEventListener(eventName, sendActivity)
179
+ if (pollRef.current) clearInterval(pollRef.current)
180
+ socket.disconnect()
181
+ esRef.current?.close()
182
+ socketRef.current = null
183
+ esRef.current = null
184
+ }
185
+ }, [applyPayload, fetchSnapshot, sendActivity, serverUrl, startSse])
186
+
187
+ return {
188
+ models,
189
+ connected,
190
+ transport,
191
+ updateCount,
192
+ nextPingAt,
193
+ isPinging: serverIsPinging,
194
+ pendingPings,
195
+ pingMode,
196
+ globalBenchmarkRunning,
197
+ globalBenchmarkTotal,
198
+ globalBenchmarkCompleted,
199
+ }
200
+ }
@@ -0,0 +1,41 @@
1
+ /**
2
+ * @file web/vite.config.js
3
+ * @description Vite config with proxy for backend API + Socket.IO (with WebSocket upgrade).
4
+ */
5
+ import { defineConfig } from 'vite'
6
+ import react from '@vitejs/plugin-react'
7
+ import { readFileSync } from 'node:fs'
8
+ import { fileURLToPath } from 'node:url'
9
+
10
+ const __dirname = fileURLToPath(new URL('.', import.meta.url))
11
+ const pkg = JSON.parse(readFileSync(new URL('../package.json', import.meta.url), 'utf8'))
12
+
13
+ export default defineConfig({
14
+ plugins: [react()],
15
+ root: 'web',
16
+ build: {
17
+ outDir: 'dist',
18
+ emptyOutDir: true,
19
+ },
20
+ server: {
21
+ port: 5173,
22
+ proxy: {
23
+ '/api': {
24
+ target: 'http://localhost:3333',
25
+ changeOrigin: true,
26
+ },
27
+ '/socket.io': {
28
+ target: 'http://localhost:3333',
29
+ changeOrigin: true,
30
+ ws: true, // ← enable WebSocket upgrade
31
+ },
32
+ '/v1': {
33
+ target: 'http://localhost:3333',
34
+ changeOrigin: true,
35
+ },
36
+ },
37
+ },
38
+ define: {
39
+ __APP_VERSION__: JSON.stringify(pkg.version),
40
+ },
41
+ })
@@ -1 +0,0 @@
1
- {"nodes": [{"id": "users_vava_documents_github_free_coding_models_src_utils_js", "label": "utils.js", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L1"}, {"id": "utils_getavg", "label": "getAvg()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L90"}, {"id": "utils_getverdict", "label": "getVerdict()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L118"}, {"id": "utils_getuptime", "label": "getUptime()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L150"}, {"id": "utils_getp95", "label": "getP95()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L163"}, {"id": "utils_getjitter", "label": "getJitter()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L175"}, {"id": "utils_getstabilityscore", "label": "getStabilityScore()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L197"}, {"id": "utils_sortresults", "label": "sortResults()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L238"}, {"id": "utils_filterbytier", "label": "filterByTier()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L339"}, {"id": "utils_findbestmodel", "label": "findBestModel()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L356"}, {"id": "utils_parseargs", "label": "parseArgs()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L402"}, {"id": "utils_parsectxtok", "label": "parseCtxToK()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L573"}, {"id": "utils_formatctxwindow", "label": "formatCtxWindow()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L583"}, {"id": "utils_labelfromid", "label": "labelFromId()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L591"}, {"id": "utils_parseswetonum", "label": "parseSweToNum()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L602"}, {"id": "utils_scoremodelfortask", "label": "scoreModelForTask()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L627"}, {"id": "utils_gettoprecommendations", "label": "getTopRecommendations()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L703"}, {"id": "utils_getversionstatusinfo", "label": "getVersionStatusInfo()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L730"}, {"id": "utils_formatresultsasjson", "label": "formatResultsAsJSON()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L796"}], "edges": [{"source": "users_vava_documents_github_free_coding_models_src_utils_js", "target": "utils_getavg", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L90", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_utils_js", "target": "utils_getverdict", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L118", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_utils_js", "target": "utils_getuptime", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L150", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_utils_js", "target": "utils_getp95", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L163", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_utils_js", "target": "utils_getjitter", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L175", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_utils_js", "target": "utils_getstabilityscore", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L197", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_utils_js", "target": "utils_sortresults", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L238", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_utils_js", "target": "utils_filterbytier", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L339", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_utils_js", "target": "utils_findbestmodel", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L356", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_utils_js", "target": "utils_parseargs", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L402", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_utils_js", "target": "utils_parsectxtok", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L573", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_utils_js", "target": "utils_formatctxwindow", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L583", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_utils_js", "target": "utils_labelfromid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L591", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_utils_js", "target": "utils_parseswetonum", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L602", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_utils_js", "target": "utils_scoremodelfortask", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L627", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_utils_js", "target": "utils_gettoprecommendations", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L703", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_utils_js", "target": "utils_getversionstatusinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L730", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_utils_js", "target": "utils_formatresultsasjson", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L796", "weight": 1.0}, {"source": "utils_getverdict", "target": "utils_getavg", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L119", "weight": 1.0}, {"source": "utils_getverdict", "target": "utils_getp95", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L129", "weight": 1.0}, {"source": "utils_getstabilityscore", "target": "utils_getp95", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L201", "weight": 1.0}, {"source": "utils_getstabilityscore", "target": "utils_getjitter", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L202", "weight": 1.0}, {"source": "utils_getstabilityscore", "target": "utils_getuptime", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L203", "weight": 1.0}, {"source": "utils_scoremodelfortask", "target": "utils_parseswetonum", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L634", "weight": 1.0}, {"source": "utils_scoremodelfortask", "target": "utils_getavg", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L638", "weight": 1.0}, {"source": "utils_scoremodelfortask", "target": "utils_parsectxtok", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L650", "weight": 1.0}, {"source": "utils_scoremodelfortask", "target": "utils_getstabilityscore", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L663", "weight": 1.0}], "raw_calls": [{"caller_nid": "utils_getavg", "callee": "filter", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L91"}, {"caller_nid": "utils_getavg", "callee": "round", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L93"}, {"caller_nid": "utils_getavg", "callee": "reduce", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L93"}, {"caller_nid": "utils_getverdict", "callee": "some", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L120"}, {"caller_nid": "utils_getverdict", "callee": "filter", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L128"}, {"caller_nid": "utils_getuptime", "callee": "filter", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L152"}, {"caller_nid": "utils_getuptime", "callee": "round", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L153"}, {"caller_nid": "utils_getp95", "callee": "filter", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L164"}, {"caller_nid": "utils_getp95", "callee": "sort", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L166"}, {"caller_nid": "utils_getp95", "callee": "map", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L166"}, {"caller_nid": "utils_getp95", "callee": "ceil", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L167"}, {"caller_nid": "utils_getp95", "callee": "max", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L168"}, {"caller_nid": "utils_getjitter", "callee": "filter", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L176"}, {"caller_nid": "utils_getjitter", "callee": "reduce", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L178"}, {"caller_nid": "utils_getjitter", "callee": "reduce", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L179"}, {"caller_nid": "utils_getjitter", "callee": "round", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L180"}, {"caller_nid": "utils_getjitter", "callee": "sqrt", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L180"}, {"caller_nid": "utils_getstabilityscore", "callee": "filter", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L198"}, {"caller_nid": "utils_getstabilityscore", "callee": "filter", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L204"}, {"caller_nid": "utils_getstabilityscore", "callee": "max", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L208"}, {"caller_nid": "utils_getstabilityscore", "callee": "min", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L208"}, {"caller_nid": "utils_getstabilityscore", "callee": "max", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L209"}, {"caller_nid": "utils_getstabilityscore", "callee": "min", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L209"}, {"caller_nid": "utils_getstabilityscore", "callee": "max", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L210"}, {"caller_nid": "utils_getstabilityscore", "callee": "round", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L215"}, {"caller_nid": "utils_sortresults", "callee": "sort", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L239"}, {"caller_nid": "utils_filterbytier", "callee": "toUpperCase", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L340"}, {"caller_nid": "utils_filterbytier", "callee": "filter", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L343"}, {"caller_nid": "utils_findbestmodel", "callee": "sort", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L357"}, {"caller_nid": "utils_parseargs", "callee": "slice", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L403"}, {"caller_nid": "utils_parseargs", "callee": "findIndex", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L408"}, {"caller_nid": "utils_parseargs", "callee": "startsWith", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L409"}, {"caller_nid": "utils_parseargs", "callee": "findIndex", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L414"}, {"caller_nid": "utils_parseargs", "callee": "startsWith", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L415"}, {"caller_nid": "utils_parseargs", "callee": "findIndex", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L419"}, {"caller_nid": "utils_parseargs", "callee": "startsWith", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L420"}, {"caller_nid": "utils_parseargs", "callee": "findIndex", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L424"}, {"caller_nid": "utils_parseargs", "callee": "startsWith", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L425"}, {"caller_nid": "utils_parseargs", "callee": "add", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L431"}, {"caller_nid": "utils_parseargs", "callee": "add", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L432"}, {"caller_nid": "utils_parseargs", "callee": "add", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L433"}, {"caller_nid": "utils_parseargs", "callee": "add", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L434"}, {"caller_nid": "utils_parseargs", "callee": "entries", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L436"}, {"caller_nid": "utils_parseargs", "callee": "startsWith", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L437"}, {"caller_nid": "utils_parseargs", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L438"}, {"caller_nid": "utils_parseargs", "callee": "toLowerCase", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L438"}, {"caller_nid": "utils_parseargs", "callee": "has", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L439"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L446"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L447"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L448"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L449"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L450"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L451"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L452"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L453"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L454"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L455"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L456"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L457"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L458"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L459"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L460"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L461"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L462"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L463"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L464"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L465"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L466"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L467"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L468"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L469"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L470"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L470"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L471"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L472"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L473"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L474"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L475"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L478"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L478"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L481"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L482"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L483"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L484"}, {"caller_nid": "utils_parseargs", "callee": "toUpperCase", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L486"}, {"caller_nid": "utils_parseargs", "callee": "toLowerCase", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L487"}, {"caller_nid": "utils_parseargs", "callee": "parseInt", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L489"}, {"caller_nid": "utils_parseargs", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L495"}, {"caller_nid": "utils_parsectxtok", "callee": "toLowerCase", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L575"}, {"caller_nid": "utils_parsectxtok", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L576"}, {"caller_nid": "utils_parsectxtok", "callee": "parseFloat", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L576"}, {"caller_nid": "utils_parsectxtok", "callee": "replace", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L576"}, {"caller_nid": "utils_parsectxtok", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L577"}, {"caller_nid": "utils_parsectxtok", "callee": "parseFloat", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L577"}, {"caller_nid": "utils_parsectxtok", "callee": "replace", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L577"}, {"caller_nid": "utils_formatctxwindow", "callee": "round", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L585"}, {"caller_nid": "utils_formatctxwindow", "callee": "round", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L586"}, {"caller_nid": "utils_labelfromid", "callee": "replace", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L592"}, {"caller_nid": "utils_labelfromid", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L593"}, {"caller_nid": "utils_labelfromid", "callee": "pop", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L593"}, {"caller_nid": "utils_labelfromid", "callee": "split", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L593"}, {"caller_nid": "utils_labelfromid", "callee": "join", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L594"}, {"caller_nid": "utils_labelfromid", "callee": "map", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L594"}, {"caller_nid": "utils_labelfromid", "callee": "split", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L594"}, {"caller_nid": "utils_parseswetonum", "callee": "parseFloat", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L604"}, {"caller_nid": "utils_parseswetonum", "callee": "replace", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L604"}, {"caller_nid": "utils_parseswetonum", "callee": "isNaN", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L605"}, {"caller_nid": "utils_scoremodelfortask", "callee": "min", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L635"}, {"caller_nid": "utils_scoremodelfortask", "callee": "max", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L643"}, {"caller_nid": "utils_scoremodelfortask", "callee": "min", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L643"}, {"caller_nid": "utils_scoremodelfortask", "callee": "round", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L657"}, {"caller_nid": "utils_scoremodelfortask", "callee": "round", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L687"}, {"caller_nid": "utils_scoremodelfortask", "callee": "min", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L687"}, {"caller_nid": "utils_scoremodelfortask", "callee": "max", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L687"}, {"caller_nid": "utils_gettoprecommendations", "callee": "sort", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L704"}, {"caller_nid": "utils_gettoprecommendations", "callee": "map", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L704"}, {"caller_nid": "utils_gettoprecommendations", "callee": "filter", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L704"}, {"caller_nid": "utils_gettoprecommendations", "callee": "slice", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L709"}, {"caller_nid": "utils_getversionstatusinfo", "callee": "trim", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L738"}, {"caller_nid": "utils_getversionstatusinfo", "callee": "trim", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L741"}, {"caller_nid": "utils_getversionstatusinfo", "callee": "trim", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L745"}, {"caller_nid": "utils_getversionstatusinfo", "callee": "trim", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L748"}, {"caller_nid": "utils_formatresultsasjson", "callee": "slice", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L797"}, {"caller_nid": "utils_formatresultsasjson", "callee": "map", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L797"}, {"caller_nid": "utils_formatresultsasjson", "callee": "stringify", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/utils.js", "source_location": "L818"}]}
@@ -1 +0,0 @@
1
- {"nodes": [{"id": "users_vava_documents_github_free_coding_models_src_ping_js", "label": "ping.js", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L1"}, {"id": "ping_resolvecloudflareurl", "label": "resolveCloudflareUrl()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L46"}, {"id": "ping_buildpingrequest", "label": "buildPingRequest()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L56"}, {"id": "ping_ping", "label": "ping()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L102"}, {"id": "ping_getheadervalue", "label": "getHeaderValue()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L134"}, {"id": "ping_extractquotapercent", "label": "extractQuotaPercent()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L143"}, {"id": "ping_fetchproviderquotapercent", "label": "fetchProviderQuotaPercent()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L170"}, {"id": "ping_getproviderquotapercentcached", "label": "getProviderQuotaPercentCached()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L177"}, {"id": "ping_usageplaceholderforprovider", "label": "usagePlaceholderForProvider()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L184"}], "edges": [{"source": "users_vava_documents_github_free_coding_models_src_ping_js", "target": "users_vava_documents_github_free_coding_models_src_constants_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L40", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_ping_js", "target": "users_vava_documents_github_free_coding_models_src_provider_quota_fetchers_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L41", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_ping_js", "target": "users_vava_documents_github_free_coding_models_src_quota_capabilities_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L42", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_ping_js", "target": "ping_resolvecloudflareurl", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L46", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_ping_js", "target": "ping_buildpingrequest", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L56", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_ping_js", "target": "ping_ping", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L102", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_ping_js", "target": "ping_getheadervalue", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L134", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_ping_js", "target": "ping_extractquotapercent", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L143", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_ping_js", "target": "ping_fetchproviderquotapercent", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L170", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_ping_js", "target": "ping_getproviderquotapercentcached", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L177", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_ping_js", "target": "ping_usageplaceholderforprovider", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L184", "weight": 1.0}, {"source": "ping_buildpingrequest", "target": "ping_resolvecloudflareurl", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L76", "weight": 1.0}, {"source": "ping_ping", "target": "ping_buildpingrequest", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L107", "weight": 1.0}, {"source": "ping_ping", "target": "ping_extractquotapercent", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L118", "weight": 1.0}, {"source": "ping_extractquotapercent", "target": "ping_getheadervalue", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L152", "weight": 1.0}, {"source": "ping_getproviderquotapercentcached", "target": "ping_fetchproviderquotapercent", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L178", "weight": 1.0}], "raw_calls": [{"caller_nid": "ping_resolvecloudflareurl", "callee": "trim", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L47"}, {"caller_nid": "ping_resolvecloudflareurl", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L48"}, {"caller_nid": "ping_resolvecloudflareurl", "callee": "replace", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L49"}, {"caller_nid": "ping_resolvecloudflareurl", "callee": "replace", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L50"}, {"caller_nid": "ping_resolvecloudflareurl", "callee": "encodeURIComponent", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L50"}, {"caller_nid": "ping_buildpingrequest", "callee": "replace", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L58"}, {"caller_nid": "ping_ping", "callee": "setTimeout", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L104"}, {"caller_nid": "ping_ping", "callee": "now", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L105"}, {"caller_nid": "ping_ping", "callee": "fetch", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L108"}, {"caller_nid": "ping_ping", "callee": "stringify", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L111"}, {"caller_nid": "ping_ping", "callee": "String", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L114"}, {"caller_nid": "ping_ping", "callee": "round", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L117"}, {"caller_nid": "ping_ping", "callee": "now", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L117"}, {"caller_nid": "ping_ping", "callee": "round", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L124"}, {"caller_nid": "ping_ping", "callee": "now", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L124"}, {"caller_nid": "ping_ping", "callee": "clearTimeout", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L128"}, {"caller_nid": "ping_getheadervalue", "callee": "get", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L136"}, {"caller_nid": "ping_getheadervalue", "callee": "toLowerCase", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L137"}, {"caller_nid": "ping_extractquotapercent", "callee": "parseFloat", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L154"}, {"caller_nid": "ping_extractquotapercent", "callee": "parseFloat", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L155"}, {"caller_nid": "ping_extractquotapercent", "callee": "isFinite", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L156"}, {"caller_nid": "ping_extractquotapercent", "callee": "isFinite", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L156"}, {"caller_nid": "ping_extractquotapercent", "callee": "round", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L157"}, {"caller_nid": "ping_extractquotapercent", "callee": "max", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L158"}, {"caller_nid": "ping_extractquotapercent", "callee": "min", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L158"}, {"caller_nid": "ping_fetchproviderquotapercent", "callee": "_fetchProviderQuotaFromModule", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L171"}, {"caller_nid": "ping_usageplaceholderforprovider", "callee": "supportsUsagePercent", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ping.js", "source_location": "L185"}]}
@@ -1 +0,0 @@
1
- {"nodes": [{"id": "users_vava_documents_github_free_coding_models_src_model_merger_js", "label": "model-merger.js", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/model-merger.js", "source_location": "L1"}, {"id": "model_merger_parsectxk", "label": "parseCtxK()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/model-merger.js", "source_location": "L3"}, {"id": "model_merger_parseswepercent", "label": "parseSwePercent()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/model-merger.js", "source_location": "L10"}, {"id": "model_merger_slugify", "label": "slugify()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/model-merger.js", "source_location": "L19"}, {"id": "model_merger_buildmergedmodels", "label": "buildMergedModels()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/model-merger.js", "source_location": "L47"}], "edges": [{"source": "users_vava_documents_github_free_coding_models_src_model_merger_js", "target": "model_merger_parsectxk", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/model-merger.js", "source_location": "L3", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_model_merger_js", "target": "model_merger_parseswepercent", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/model-merger.js", "source_location": "L10", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_model_merger_js", "target": "model_merger_slugify", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/model-merger.js", "source_location": "L19", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_model_merger_js", "target": "model_merger_buildmergedmodels", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/model-merger.js", "source_location": "L47", "weight": 1.0}, {"source": "model_merger_buildmergedmodels", "target": "model_merger_parseswepercent", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/model-merger.js", "source_location": "L63", "weight": 1.0}, {"source": "model_merger_buildmergedmodels", "target": "model_merger_parsectxk", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/model-merger.js", "source_location": "L67", "weight": 1.0}], "raw_calls": [{"caller_nid": "model_merger_parsectxk", "callee": "toLowerCase", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/model-merger.js", "source_location": "L5"}, {"caller_nid": "model_merger_parsectxk", "callee": "endsWith", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/model-merger.js", "source_location": "L6"}, {"caller_nid": "model_merger_parsectxk", "callee": "parseFloat", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/model-merger.js", "source_location": "L6"}, {"caller_nid": "model_merger_parsectxk", "callee": "parseFloat", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/model-merger.js", "source_location": "L7"}, {"caller_nid": "model_merger_parseswepercent", "callee": "parseFloat", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/model-merger.js", "source_location": "L11"}, {"caller_nid": "model_merger_slugify", "callee": "replace", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/model-merger.js", "source_location": "L20"}, {"caller_nid": "model_merger_slugify", "callee": "replace", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/model-merger.js", "source_location": "L20"}, {"caller_nid": "model_merger_slugify", "callee": "toLowerCase", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/model-merger.js", "source_location": "L20"}, {"caller_nid": "model_merger_slugify", "callee": "has", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/model-merger.js", "source_location": "L23"}, {"caller_nid": "model_merger_slugify", "callee": "add", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/model-merger.js", "source_location": "L26"}, {"caller_nid": "model_merger_buildmergedmodels", "callee": "has", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/model-merger.js", "source_location": "L51"}, {"caller_nid": "model_merger_buildmergedmodels", "callee": "set", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/model-merger.js", "source_location": "L52"}, {"caller_nid": "model_merger_buildmergedmodels", "callee": "get", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/model-merger.js", "source_location": "L55"}, {"caller_nid": "model_merger_buildmergedmodels", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/model-merger.js", "source_location": "L56"}, {"caller_nid": "model_merger_buildmergedmodels", "callee": "map", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/model-merger.js", "source_location": "L73"}, {"caller_nid": "model_merger_buildmergedmodels", "callee": "from", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/model-merger.js", "source_location": "L73"}, {"caller_nid": "model_merger_buildmergedmodels", "callee": "values", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/model-merger.js", "source_location": "L73"}]}
@@ -1 +0,0 @@
1
- {"nodes": [{"id": "users_vava_documents_github_free_coding_models_src_theme_js", "label": "theme.js", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L1"}, {"id": "theme_currentpalette", "label": "currentPalette()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L200"}, {"id": "theme_themelabel", "label": "themeLabel()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L204"}, {"id": "theme_buildstyle", "label": "buildStyle()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L208"}, {"id": "theme_getreadabletextrgb", "label": "getReadableTextRgb()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L217"}, {"id": "theme_detectactivetheme", "label": "detectActiveTheme()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L223"}, {"id": "theme_gettheme", "label": "getTheme()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L253"}, {"id": "theme_cyclethemesetting", "label": "cycleThemeSetting()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L257"}, {"id": "theme_getthemestatuslabel", "label": "getThemeStatusLabel()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L263"}, {"id": "theme_getproviderrgb", "label": "getProviderRgb()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L268"}, {"id": "theme_gettierrgb", "label": "getTierRgb()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L273"}, {"id": "theme_paintrgb", "label": "paintRgb()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L278"}, {"id": "theme_paintbg", "label": "paintBg()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L282"}], "edges": [{"source": "users_vava_documents_github_free_coding_models_src_theme_js", "target": "chalk", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L20", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_theme_js", "target": "child_process", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L21", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_theme_js", "target": "theme_currentpalette", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L200", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_theme_js", "target": "theme_themelabel", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L204", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_theme_js", "target": "theme_buildstyle", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L208", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_theme_js", "target": "theme_getreadabletextrgb", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L217", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_theme_js", "target": "theme_detectactivetheme", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L223", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_theme_js", "target": "theme_gettheme", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L253", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_theme_js", "target": "theme_cyclethemesetting", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L257", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_theme_js", "target": "theme_getthemestatuslabel", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L263", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_theme_js", "target": "theme_getproviderrgb", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L268", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_theme_js", "target": "theme_gettierrgb", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L273", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_theme_js", "target": "theme_paintrgb", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L278", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_theme_js", "target": "theme_paintbg", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L282", "weight": 1.0}, {"source": "theme_getthemestatuslabel", "target": "theme_themelabel", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L264", "weight": 1.0}, {"source": "theme_getproviderrgb", "target": "theme_currentpalette", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L270", "weight": 1.0}, {"source": "theme_gettierrgb", "target": "theme_currentpalette", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L275", "weight": 1.0}, {"source": "theme_paintrgb", "target": "theme_buildstyle", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L279", "weight": 1.0}, {"source": "theme_paintbg", "target": "theme_buildstyle", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L283", "weight": 1.0}, {"source": "theme_paintbg", "target": "theme_getreadabletextrgb", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L283", "weight": 1.0}], "raw_calls": [{"caller_nid": "theme_themelabel", "callee": "toUpperCase", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L205"}, {"caller_nid": "theme_themelabel", "callee": "charAt", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L205"}, {"caller_nid": "theme_themelabel", "callee": "slice", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L205"}, {"caller_nid": "theme_buildstyle", "callee": "bgRgb", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L210"}, {"caller_nid": "theme_buildstyle", "callee": "rgb", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L211"}, {"caller_nid": "theme_detectactivetheme", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L230"}, {"caller_nid": "theme_detectactivetheme", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L230"}, {"caller_nid": "theme_detectactivetheme", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L230"}, {"caller_nid": "theme_detectactivetheme", "callee": "trim", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L241"}, {"caller_nid": "theme_detectactivetheme", "callee": "toString", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L241"}, {"caller_nid": "theme_detectactivetheme", "callee": "execSync", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L241"}, {"caller_nid": "theme_cyclethemesetting", "callee": "indexOf", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L258"}, {"caller_nid": "theme_paintrgb", "callee": "buildStyle({ fgRgb: rgb, ...options })", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L279"}, {"caller_nid": "theme_paintbg", "callee": "buildStyle({ bgRgb, fgRgb: fgRgb ?? getReadableTextRgb(bgRgb), ...options })", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/theme.js", "source_location": "L283"}]}
@@ -1 +0,0 @@
1
- {"nodes": [{"id": "users_vava_documents_github_free_coding_models_src_ui_config_js", "label": "ui-config.js", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ui-config.js", "source_location": "L1"}, {"id": "ui_config_getverticalseparator", "label": "getVerticalSeparator()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ui-config.js", "source_location": "L23"}, {"id": "ui_config_gethorizontalline", "label": "getHorizontalLine()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ui-config.js", "source_location": "L27"}, {"id": "ui_config_getcolumnspacing", "label": "getColumnSpacing()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ui-config.js", "source_location": "L31"}], "edges": [{"source": "users_vava_documents_github_free_coding_models_src_ui_config_js", "target": "users_vava_documents_github_free_coding_models_src_theme_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ui-config.js", "source_location": "L19", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_ui_config_js", "target": "ui_config_getverticalseparator", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ui-config.js", "source_location": "L23", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_ui_config_js", "target": "ui_config_gethorizontalline", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ui-config.js", "source_location": "L27", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_ui_config_js", "target": "ui_config_getcolumnspacing", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ui-config.js", "source_location": "L31", "weight": 1.0}, {"source": "ui_config_getcolumnspacing", "target": "ui_config_getverticalseparator", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ui-config.js", "source_location": "L32", "weight": 1.0}], "raw_calls": [{"caller_nid": "ui_config_getverticalseparator", "callee": "border", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ui-config.js", "source_location": "L24"}, {"caller_nid": "ui_config_gethorizontalline", "callee": "dim", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/ui-config.js", "source_location": "L28"}]}
@@ -1 +0,0 @@
1
- {"nodes": [{"id": "users_vava_documents_github_free_coding_models_src_render_helpers_js", "label": "render-helpers.js", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L1"}, {"id": "render_helpers_stripansi", "label": "stripAnsi()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L55"}, {"id": "render_helpers_maskapikey", "label": "maskApiKey()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L61"}, {"id": "render_helpers_displaywidth", "label": "displayWidth()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L69"}, {"id": "render_helpers_padenddisplay", "label": "padEndDisplay()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L101"}, {"id": "render_helpers_tintoverlaylines", "label": "tintOverlayLines()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L110"}, {"id": "render_helpers_clampoverlayoffset", "label": "clampOverlayOffset()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L121"}, {"id": "render_helpers_keepoverlaytargetvisible", "label": "keepOverlayTargetVisible()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L129"}, {"id": "render_helpers_sliceoverlaylines", "label": "sliceOverlayLines()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L139"}, {"id": "render_helpers_calculateviewport", "label": "calculateViewport()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L154"}, {"id": "render_helpers_sortresultswithpinnedfavorites", "label": "sortResultsWithPinnedFavorites()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L176"}, {"id": "render_helpers_adjustscrolloffset", "label": "adjustScrollOffset()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L207"}], "edges": [{"source": "users_vava_documents_github_free_coding_models_src_render_helpers_js", "target": "chalk", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L49", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_render_helpers_js", "target": "users_vava_documents_github_free_coding_models_src_constants_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L50", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_render_helpers_js", "target": "users_vava_documents_github_free_coding_models_src_utils_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L51", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_render_helpers_js", "target": "render_helpers_stripansi", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L55", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_render_helpers_js", "target": "render_helpers_maskapikey", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L61", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_render_helpers_js", "target": "render_helpers_displaywidth", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L69", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_render_helpers_js", "target": "render_helpers_padenddisplay", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L101", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_render_helpers_js", "target": "render_helpers_tintoverlaylines", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L110", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_render_helpers_js", "target": "render_helpers_clampoverlayoffset", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L121", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_render_helpers_js", "target": "render_helpers_keepoverlaytargetvisible", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L129", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_render_helpers_js", "target": "render_helpers_sliceoverlaylines", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L139", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_render_helpers_js", "target": "render_helpers_calculateviewport", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L154", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_render_helpers_js", "target": "render_helpers_sortresultswithpinnedfavorites", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L176", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_render_helpers_js", "target": "render_helpers_adjustscrolloffset", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L207", "weight": 1.0}, {"source": "render_helpers_displaywidth", "target": "render_helpers_stripansi", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L70", "weight": 1.0}, {"source": "render_helpers_padenddisplay", "target": "render_helpers_displaywidth", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L102", "weight": 1.0}, {"source": "render_helpers_keepoverlaytargetvisible", "target": "render_helpers_clampoverlayoffset", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L131", "weight": 1.0}, {"source": "render_helpers_sliceoverlaylines", "target": "render_helpers_clampoverlayoffset", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L141", "weight": 1.0}], "raw_calls": [{"caller_nid": "render_helpers_stripansi", "callee": "replace", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L56"}, {"caller_nid": "render_helpers_stripansi", "callee": "replace", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L56"}, {"caller_nid": "render_helpers_stripansi", "callee": "String", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L56"}, {"caller_nid": "render_helpers_maskapikey", "callee": "slice", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L63"}, {"caller_nid": "render_helpers_maskapikey", "callee": "slice", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L63"}, {"caller_nid": "render_helpers_displaywidth", "callee": "String", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L70"}, {"caller_nid": "render_helpers_displaywidth", "callee": "codePointAt", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L73"}, {"caller_nid": "render_helpers_padenddisplay", "callee": "max", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L103"}, {"caller_nid": "render_helpers_padenddisplay", "callee": "repeat", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L104"}, {"caller_nid": "render_helpers_tintoverlaylines", "callee": "map", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L112"}, {"caller_nid": "render_helpers_clampoverlayoffset", "callee": "max", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L122"}, {"caller_nid": "render_helpers_clampoverlayoffset", "callee": "max", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L123"}, {"caller_nid": "render_helpers_clampoverlayoffset", "callee": "max", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L124"}, {"caller_nid": "render_helpers_clampoverlayoffset", "callee": "min", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L124"}, {"caller_nid": "render_helpers_keepoverlaytargetvisible", "callee": "max", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L130"}, {"caller_nid": "render_helpers_sliceoverlaylines", "callee": "max", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L140"}, {"caller_nid": "render_helpers_sliceoverlaylines", "callee": "slice", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L142"}, {"caller_nid": "render_helpers_sliceoverlaylines", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L143"}, {"caller_nid": "render_helpers_calculateviewport", "callee": "min", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L164"}, {"caller_nid": "render_helpers_sortresultswithpinnedfavorites", "callee": "sort", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L178"}, {"caller_nid": "render_helpers_sortresultswithpinnedfavorites", "callee": "filter", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L178"}, {"caller_nid": "render_helpers_sortresultswithpinnedfavorites", "callee": "sortResults", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L181"}, {"caller_nid": "render_helpers_sortresultswithpinnedfavorites", "callee": "filter", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L182"}, {"caller_nid": "render_helpers_sortresultswithpinnedfavorites", "callee": "sort", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L188"}, {"caller_nid": "render_helpers_sortresultswithpinnedfavorites", "callee": "filter", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L188"}, {"caller_nid": "render_helpers_sortresultswithpinnedfavorites", "callee": "sort", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L191"}, {"caller_nid": "render_helpers_sortresultswithpinnedfavorites", "callee": "filter", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L191"}, {"caller_nid": "render_helpers_sortresultswithpinnedfavorites", "callee": "sort", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L195"}, {"caller_nid": "render_helpers_sortresultswithpinnedfavorites", "callee": "filter", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L195"}, {"caller_nid": "render_helpers_sortresultswithpinnedfavorites", "callee": "sortResults", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L198"}, {"caller_nid": "render_helpers_sortresultswithpinnedfavorites", "callee": "filter", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L198"}, {"caller_nid": "render_helpers_adjustscrolloffset", "callee": "filter", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L208"}, {"caller_nid": "render_helpers_adjustscrolloffset", "callee": "max", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/render-helpers.js", "source_location": "L227"}]}
@@ -1 +0,0 @@
1
- {"nodes": [{"id": "users_vava_documents_github_free_coding_models_src_key_handler_js", "label": "key-handler.js", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L1"}, {"id": "key_handler_sleep", "label": "sleep()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L107"}, {"id": "key_handler_testproviderkeydirect", "label": "testProviderKeyDirect()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L114"}, {"id": "key_handler_buildprovidermodelsurl", "label": "buildProviderModelsUrl()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L155"}, {"id": "key_handler_parseprovidermodelids", "label": "parseProviderModelIds()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L166"}, {"id": "key_handler_listprovidertestmodels", "label": "listProviderTestModels()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L185"}, {"id": "key_handler_classifyprovidertestoutcome", "label": "classifyProviderTestOutcome()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L206"}, {"id": "key_handler_buildprovidertestdetail", "label": "buildProviderTestDetail()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L217"}, {"id": "key_handler_createkeyhandler", "label": "createKeyHandler()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L250"}, {"id": "key_handler_createmouseeventhandler", "label": "createMouseEventHandler()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L2882"}], "edges": [{"source": "users_vava_documents_github_free_coding_models_src_key_handler_js", "target": "users_vava_documents_github_free_coding_models_src_changelog_loader_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L34", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_key_handler_js", "target": "users_vava_documents_github_free_coding_models_src_tool_metadata_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L35", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_key_handler_js", "target": "users_vava_documents_github_free_coding_models_src_config_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L36", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_key_handler_js", "target": "node_path", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L37", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_key_handler_js", "target": "node_url", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L38", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_key_handler_js", "target": "node_child_process", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L39", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_key_handler_js", "target": "users_vava_documents_github_free_coding_models_src_legacy_proxy_cleanup_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L40", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_key_handler_js", "target": "users_vava_documents_github_free_coding_models_src_render_table_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L41", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_key_handler_js", "target": "users_vava_documents_github_free_coding_models_src_theme_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L42", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_key_handler_js", "target": "users_vava_documents_github_free_coding_models_src_shell_env_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L43", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_key_handler_js", "target": "users_vava_documents_github_free_coding_models_src_command_palette_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L44", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_key_handler_js", "target": "users_vava_documents_github_free_coding_models_src_constants_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L45", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_key_handler_js", "target": "users_vava_documents_github_free_coding_models_src_installed_models_manager_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L46", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_key_handler_js", "target": "users_vava_documents_github_free_coding_models_src_tool_launchers_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L47", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_key_handler_js", "target": "users_vava_documents_github_free_coding_models_src_router_dashboard_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L48", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_key_handler_js", "target": "key_handler_sleep", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L107", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_key_handler_js", "target": "key_handler_testproviderkeydirect", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L114", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_key_handler_js", "target": "key_handler_buildprovidermodelsurl", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L155", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_key_handler_js", "target": "key_handler_parseprovidermodelids", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L166", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_key_handler_js", "target": "key_handler_listprovidertestmodels", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L185", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_key_handler_js", "target": "key_handler_classifyprovidertestoutcome", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L206", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_key_handler_js", "target": "key_handler_buildprovidertestdetail", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L217", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_key_handler_js", "target": "key_handler_createkeyhandler", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L250", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_key_handler_js", "target": "key_handler_createmouseeventhandler", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L2882", "weight": 1.0}], "raw_calls": [{"caller_nid": "key_handler_testproviderkeydirect", "callee": "from", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L126"}, {"caller_nid": "key_handler_testproviderkeydirect", "callee": "all", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L141"}, {"caller_nid": "key_handler_testproviderkeydirect", "callee": "find", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L142"}, {"caller_nid": "key_handler_testproviderkeydirect", "callee": "find", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L144"}, {"caller_nid": "key_handler_buildprovidermodelsurl", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L156"}, {"caller_nid": "key_handler_buildprovidermodelsurl", "callee": "replace", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L157"}, {"caller_nid": "key_handler_parseprovidermodelids", "callee": "isArray", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L167"}, {"caller_nid": "key_handler_parseprovidermodelids", "callee": "filter", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L168"}, {"caller_nid": "key_handler_parseprovidermodelids", "callee": "map", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L168"}, {"caller_nid": "key_handler_listprovidertestmodels", "callee": "isArray", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L186"}, {"caller_nid": "key_handler_listprovidertestmodels", "callee": "filter", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L186"}, {"caller_nid": "key_handler_listprovidertestmodels", "callee": "map", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L186"}, {"caller_nid": "key_handler_listprovidertestmodels", "callee": "filter", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L188"}, {"caller_nid": "key_handler_classifyprovidertestoutcome", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L207"}, {"caller_nid": "key_handler_classifyprovidertestoutcome", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L208"}, {"caller_nid": "key_handler_classifyprovidertestoutcome", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L208"}, {"caller_nid": "key_handler_classifyprovidertestoutcome", "callee": "every", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L209"}, {"caller_nid": "key_handler_classifyprovidertestoutcome", "callee": "every", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L210"}, {"caller_nid": "key_handler_buildprovidertestdetail", "callee": "join", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L237"}, {"caller_nid": "key_handler_buildprovidertestdetail", "callee": "map", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L237"}, {"caller_nid": "key_handler_buildprovidertestdetail", "callee": "filter", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L240"}, {"caller_nid": "key_handler_buildprovidertestdetail", "callee": "join", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/key-handler.js", "source_location": "L247"}]}