Would you consider adding a mode where it could go online if the user instructed it to?
by ApolloRising
|
Sep 18, 2025, 9:27:19 PM
I've been using Cactus for a few months, great product!<p>Makes it really easy to plug and play different models on my phone.<p>If anybody is curious what a Pixel 9 Pro is capable of:<p>Tokens: 277- TTFT: 1609ms 9 tok/sec<p>qwen2.5 1.5b instruct q6_k<p>Sure, here's a simple implementation of the Bubble Sort algorithm in Python:<p>def bubble_sort(arr): n = len(arr) for i in range(n): # Flag to detect any swap in current pass swapped = False for j in range(0, n-i-1): # Swap if the element found is greater than the next element if arr[j] > arr[j+1]: arr[j], arr[j+1] = arr[j+1], arr[j] swapped = True # If no swap occurs in the inner loop, the array is already sorted if not swapped: break<p># Example usage: arr = [64, 34, 25, 12, 22, 11, 90] bubble_sort(arr) print("Sorted array is:", arr)<p>This function sorts the array in ascending order using the Butbble Sort algorithm. The outer loop runs n times, where n is the length of the array. The inner loop runs through the array, comparing adjacent elements and swapping them if they are in the wrong order. The swapped flag is used to detect if any elements were swapped in the current pass, which would indicate that the array is already sorted and can be exited early.
by cco
|
Sep 18, 2025, 9:27:19 PM
Can you clarify the following sentence:<p>> We are open-source (<a href="https://github.com/cactus-compute/cactus" rel="nofollow">https://github.com/cactus-compute/cactus</a>). Cactus is free for hobbyists and personal projects, with a paid license required for commercial use.<p>If it is open-source, one is free to distribute even for commercial use by definition. Which one is correct and what's your business model?
by cientifico
|
Sep 18, 2025, 9:27:19 PM
FWIW They change license 2 weeks ago from Apache 2.0 to non commercial. Understand they need to pay the bills but lost trust with such move. Will stick with react-native-ai [0] that is extension of vercel aisdk but with also local inference on edge devices<p>[0] react-native-ai.dev
by pzo
|
Sep 18, 2025, 9:27:19 PM
how many GB does an app packaged with Qwen3 600m + Cactus take up?<p>e.g. if I built a basic LLM chat app with Qwen3 600m + Cactus, whats the total app size?
by mritchie712
|
Sep 18, 2025, 9:27:19 PM
Will this drain my battery
by nextworddev
|
Sep 18, 2025, 9:27:19 PM
How does this startup plan to make money?
by VladVladikoff
|
Sep 18, 2025, 9:27:20 PM
Does it incorporate web search tool?
by dcreater
|
Sep 18, 2025, 9:27:20 PM
The first picture on the android app store page shows Claude Haiku as the model
by dcreater
|
Sep 18, 2025, 9:27:20 PM
curious. what are the usecases for <100ms latency ?
by apwell23
|
Sep 18, 2025, 9:27:20 PM