-
-
Notifications
You must be signed in to change notification settings - Fork 281
feat: whisper context lifecycle, constrained generation, and a home slot #626
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: dev
Are you sure you want to change the base?
Changes from all commits
48f1c9d
7b371a1
d6d93b8
10cf155
3e88c83
78594cb
1f676d2
65d7169
d14a4ae
8f130da
1da1e63
8e9d41a
0b35d6b
fdcf281
e3378b9
4fb8725
c6f2c12
cc4c200
424e4ad
d90e6df
c21f821
df9e0b0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| const fs = require('fs'); | ||
|
Check warning on line 1 in react-native.config.js
|
||
| const path = require('path'); | ||
|
Check warning on line 2 in react-native.config.js
|
||
|
|
||
| // Autolink the pro submodule's native library ONLY when it is actually on disk. Mirrors the | ||
| // fs.existsSync(pro) guard metro.config.js uses for the pro JS: a public clone without the private | ||
| // submodule sees an empty/absent pro/ dir, this entry is omitted, and the open build compiles with no | ||
| // pro native. | ||
| // | ||
| // This file says only WHERE pro is. What it contains - the Kotlin package to register, the source | ||
| // dir, the podspec - is declared by pro/react-native.config.js, which the CLI reads from this `root` | ||
| // and merges underneath. That split is the point: this repo is public, and it should not have to | ||
| // carry the private package's class names to link it. | ||
| // | ||
| // IMPORTANT: check a real file inside pro/, never just the pro/ directory - an uninitialised | ||
| // submodule leaves an empty pro/ folder behind. | ||
| const proRoot = path.resolve(__dirname, 'pro'); | ||
| const proHasNative = fs.existsSync(path.join(proRoot, 'react-native.config.js')); | ||
|
|
||
| module.exports = { | ||
| dependencies: { | ||
| ...(proHasNative ? { '@offgrid/pro': { root: proRoot } } : {}), | ||
| }, | ||
| }; | ||
Uh oh!
There was an error while loading. Please reload this page.