This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
codeup:13b | |
codeup:13b-llama2 | |
codeup:13b-llama2-chat | |
codeup:13b-llama2-chat-q2_K | |
codeup:13b-llama2-chat-q3_K_L | |
codeup:13b-llama2-chat-q3_K_M | |
codeup:13b-llama2-chat-q3_K_S | |
codeup:13b-llama2-chat-q4_0 | |
codeup:13b-llama2-chat-q4_1 | |
codeup:13b-llama2-chat-q4_K_M |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* The following snippet will ask the user to rate your app the second time they launch it. | |
* It lets the user rate it now, "Remind Me Later" or never rate the app. | |
*/ | |
var win = Ti.UI.createWindow({ backgroundColor: '#fff' }); | |
win.addEventListener('open', checkReminderToRate); | |
win.add(Ti.UI.createLabel({ text: 'This is a simple app that will remind you to rate it.' })); | |
win.open(); | |
function checkReminderToRate() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Inside controller : | |
* | |
* var customGUIManager = new CustomGUIManager($); | |
* | |
* customGUIManager.createLabel('sampleUIClassName', 'SampleText', { left : '15dp'}), | |
* | |
*/ | |