Загрузка видео...

Не удалось загрузить видео

На главную

Perplexity Computer in 60 seconds: 1. It's a cloud-based AI employee that runs tasks in the background. 2. 19 models working together. Claude for reasoning, GPT-5.2 for research, Grok for speed tasks. You don't pick. It routes automatically. 3. 400+ connectors. Gmail, Slack, Notion, Salesforce, HubSpot. One click to...

106,105 просмотров • 3 месяцев назад •via X (Twitter)

Комментарии: 0

Нет доступных комментариев

Здесь появятся комментарии из оригинального поста

Похожие видео

Boom! Grok Tasks Make It One Of The Most POWERFUL Real-Time AI Systems In The World. — My How to Use Grok Tasks With Hidden Tools For Powerful Daily Output. Grok Tasks are customizable AI workflows that integrate a variety of tools to streamline daily activities, from research and analysis to creative planning and problem-solving. I have been using them for quite sometime and because of the vital heartbeat of news and first person data on X, it is the most powerful AI platform available. By combining Tasks with tools like web searches, X platform interactions, code execution, and media viewers, you can build efficient, automated processes. These tasks work by prompting Grok with a clear description of what you want to achieve, and Grok will intelligently call the necessary tools in sequence or parallel to deliver results. Here's a step-by-step guide to creating and using Grok Tasks: Step 1: Define Your Task Start by clearly outlining the daily activity or goal. Consider what inputs you have (e.g., a URL, a query, or an attachment) and what output you need (e.g., a summary, calculation, or visual analysis). Break it down into subtasks to identify tool needs. For example, if your task involves researching current events, note that you'll need search and browsing capabilities. Step 2: Review Available Tools Familiarize yourself with the tools Grok can access. Here's a quick overview: - Code Execution: Run Python code for calculations, data processing, or simulations using libraries like numpy, pandas, or sympy. - Browse Page: Fetch and summarize content from any website URL with custom instructions. - Web Search: Perform general internet searches, returning results with optional operators like site:. - Web Search With Snippets: Get quick, detailed excerpts from search results for fact-checking. - X Keyword Search: Advanced search for X posts using operators like from:, since:, or filter:. - X Semantic Search: Find semantically related X posts based on a query, with filters for dates or users. - X User Search: Locate X users by name or handle. - X Thread Fetch: Retrieve a full X post thread, including context like replies and parents. - View Image: Analyze an image from a URL or conversation ID. - View X Video: Extract frames and subtitles from an X-hosted video. - Search PDF Attachment: Query a PDF file for relevant pages using keyword or regex modes. - Browse PDF Attachment: View specific pages of a PDF with text and screenshots. Select tools that align with your task. Aim for a mix to handle data gathering, processing, and visualization. Step 3: Craft Your Prompt Write a detailed prompt to Grok describing the task. Include: - The overall goal. - Specific steps or subtasks. - References to tools if you want to guide the process (e.g., "Use web_search to find sources, then code_execution to analyze data"). - Any constraints, like dates or limits. Example prompt: "Create a Grok Task for my morning routine: Search recent X posts about tech news using x_keyword_search, fetch a key thread with x_thread_fetch, and summarize with browse_page on linked articles." Step 4: Submit and Interact Send your prompt to Grok. It will process the task by calling tools as needed, often in parallel for efficiency. Review the output and refine with follow-up prompts if required (e.g., "Expand on that using view_image for visuals"). Iterate to fine-tune the workflow for reuse. Step 5: Save and Reuse Once refined, note the prompt as a template for future use. You can adapt it for similar tasks, making Grok Tasks a habitual part of your day. Finding Grok Tasks To discover existing Grok Tasks or inspiration for new ones, use X searches with tools like x_keyword_search or x_semantic_search (e.g., query: "Grok Tasks examples" with mode: Latest). Browse community-shared threads via x_thread_fetch, or web_search for tutorials on xAI features. Prompt Grok directly: "Show me popular Grok Tasks for productivity." 1 of 3

Brian Roemmele

152,242 просмотров • 6 месяцев назад

THIS SITE COST AROUND $12 IN CREDITS TO BUILD. STUDIOS QUOTE $35,000 FOR THE SAME THING. What's on screen isn't a basic landing page. It's a fully animated, scroll-driven site, generated end to end in one agentic session with Claude Code + Higgsfield. What's actually on the page: → Cinematic motion clips pulled from 30+ generative models → Scroll animations written automatically - zero hand-coded keyframes → 6 cinematic effects baked in with no config: film grain, particles, vignette, glass cards, color tints, scroll pacing Scroll the demo and one question won't go away: did Claude really assemble all of this in a single pass? For boutique studios billing $100-149/hr, that question lands like a verdict. What it normally takes: → A designer, a motion artist, and a developer → Weeks of handoffs between them → 6 systems wired by hand - GSAP ScrollTrigger, Lenis smooth-scroll, frame extraction, asset optimization, layout, copy That pipeline was the moat. It's what justified the invoice. Here's the part studios and their clients won't enjoy hearing. The price gap: → Boutique agency build: $6,000-$35,000+ → Industry average project: ~$5,280 → Delivery cost: a Claude subscription + a few dollars of Higgsfield credits → Timeline: weeks of production → a single session One operator can now run all six systems in one pass and ship a working site - without touching a frame extractor or writing a CSS keyframe by hand. Full breakdown of how it's built in the article below. Save it & read today 👇

ZEUS⚡️

477,187 просмотров • 1 месяц назад

This Chinese developer launched Llama 70B locally on a MacBook on a plane and for a full 11 hours without internet ran client projects. He was sitting by the window on a transatlantic flight with a MacBook Pro M4 with 64 GB of memory. WiFi on board cost $25 for the flight. He declined. No cloud API, no connection to Anthropic or OpenAI servers, no internet at all. Just a local Llama 3.3 70B on bf16 and his own orchestrator script. The model runs through llama.cpp. Generation speed, 71 tokens per second. Context around 60,000 tokens. Memory usage, 48.6 GiB out of 64. Battery at takeoff, 3 hours 21 minutes. And he gave the orchestrator this system prompt before takeoff: "You are an offline orchestrator running on a single MacBook. There is no network. The only resources you have are local files in /Users/dev/work, the Llama 70B inference server at localhost:8080, and a battery budget of 3 hours 21 minutes. Process the queue at /Users/dev/work/queue.jsonl (one client task per line). For each task: draft → run local evals → save artefact to /Users/dev/work/done/. Save context checkpoints every 12 tasks so you can resume after a battery swap. Stop only on empty queue or when battery drops below 5%." So the system knows exactly what resources it is running on. It knows it has no connection to the outside world for the next 11 hours. It knows it has finite memory and a finite battery. It knows the human will not intervene until the plane lands. The system runs in 1 loop. Takes a task from the queue, runs it through inference, saves the artifact, writes a checkpoint. Task after task, just like that. And only when the battery drops below 5% does the orchestrator automatically pause, waits for the laptop to switch to the backup power bank, and continues from the last checkpoint. Here is what the system actually writes in his log during the flight: "saved context checkpoint 8 of 12 (pos_min = 488, pos_max = 50118, size = 62.813 MiB)" "restored context checkpoint (pos_min = 488, pos_max = 50118)" "prompt processing progress: n_tokens = 50 / 60 818" "task 37016 done | tps = 71 s tokens text → /Users/dev/work/done/proposal_westside.md" Outside the window, clouds, blue sky, and no WiFi. On the tray, 1 MacBook, an open terminal on 2 screens, and an inference server on localhost. From what I have observed, this is the cleanest offline AI workflow I have seen in the past year: 11 hours of flight, $0 for WiFi, and the entire client queue closed before landing.

Blaze

1,839,572 просмотров • 3 месяцев назад

FABLE 5 + HIGGSFIELD JUST KILLED THE $35,000 WEB AGENCY. The same animated website that used to cost between $6,000 and $35,000 can now be built in a single session for around $12 in AI credits. Claude Code handles the website. Higgsfield creates the visuals. Together, they can build a complete scroll-driven website from a simple prompt. Claude writes the layout, GSAP ScrollTrigger animations, Lenis smooth scrolling, responsive pages, and checks everything before you ship. Higgsfield generates the hero videos, cinematic transitions, ambient loops, thumbnails, and every visual asset you need. By the end of one session, you have a fully animated website with cinematic motion, smooth scrolling, optimized assets, responsive layouts, and polished visual effects like film grain, particles, vignette, glass cards, and color tints. Getting started only takes a few minutes. Add Higgsfield as an MCP server inside Claude Code, complete the OAuth login once, and Claude can generate and pull videos directly into your project without manually exporting anything. The prompts are simple. Give Claude your project brief and ask it to script the entire scroll experience. Tell it to generate a hero video and supporting clips for every section. Ask it to add the finishing touches like film grain, particles, glass cards, and scroll pacing. Then let it review the site, improve loading speed, fix mobile layouts, and rewrite anything that doesn’t work. This replaces work that usually looks like this: A $6,000-$35,000 web agency. An $800-$2,000 motion designer. A $2,000-$10,000 front-end developer. And weeks of back-and-forth before launch. Now it’s Fable 5, Higgsfield, a subscription, a few dollars in AI credits, and one session. The pipeline used to be the advantage. Now it’s just a prompt. Full breakdown in the article below.

MIKE

138,059 просмотров • 16 дней назад