HackerTrans
トップ新着トレンドコメント過去質問紹介求人

palmdeezy

no profile record

投稿

Show HN: How to Stream React from LLMs

sdk.vercel.ai
2 ポイント·投稿者 palmdeezy·2 年前·0 コメント

Shadcn is joining Vercel as a Design Engineer

twitter.com
2 ポイント·投稿者 palmdeezy·3 年前·0 コメント

Show HN: LLM streaming directly from React Server Components

rsc-llm-on-the-edge.vercel.app
13 ポイント·投稿者 palmdeezy·3 年前·2 コメント

Show HN: Next.js AI Chatbot Template by Vercel Labs

chat.vercel.ai
6 ポイント·投稿者 palmdeezy·3 年前·3 コメント

Show HN: Vercel AI SDK Playground – compare LLMs side-by-side

sdk.vercel.ai
8 ポイント·投稿者 palmdeezy·3 年前·0 コメント

Show HN: Vercel AI SDK Playground – Compare AI chat models side-by-side

play.vercel.ai
1 ポイント·投稿者 palmdeezy·3 年前·0 コメント

Show HN: AI Playground by Vercel Labs

play.vercel.ai
249 ポイント·投稿者 palmdeezy·3 年前·102 コメント

Turborepo 1.8: OSS Build System for JavaScript Codebases by Vercel

turbo.build
12 ポイント·投稿者 palmdeezy·3 年前·0 コメント

Turbopack will support Webpack loaders

twitter.com
3 ポイント·投稿者 palmdeezy·3 年前·0 コメント

Turbopack Performance Benchmarks

turbo.build
99 ポイント·投稿者 palmdeezy·4 年前·47 コメント

コメント

palmdeezy
·3 年前·議論
We're investigating this now. Early experiments are very promising.
palmdeezy
·3 年前·議論
v0 is really for everyone. We hope it makes everyone more productive and creative...reducing the cost of iteration and experimentation.
palmdeezy
·3 年前·議論
v0 saves loads of time by allowing you to quickly generate UIs with React via Shadcn UI (https://ui.shadcn.com) with simple text prompts. While full scale design tools are very useful, not every UI in your app needs that level of fidelity. Furthermore, a lot of UIs inside of apps and websites are already extremely programmatic (such as forms, tables, modals, etc.). The goal with v0 is to get you started (hence the name) faster....to give you something you can copy and paste and then modify yourself.
palmdeezy
·3 年前·議論
Jared Palmer, v0 creator/team lead here...

Happy to answer any questions!
palmdeezy
·3 年前·議論
Jared Palmer here... v0 Creator/Team Lead.

Tailwind is indeed required at the moment. However, we're working on supporting other popular design systems as well as custom ones.
palmdeezy
·3 年前·議論
Yes! This is something we'll be adding soon!
palmdeezy
·3 年前·議論
Hi everyone! Jared Palmer (https://x.com/jaredpalmer) here from the v0 team and Vercel. Happy to answer any questions. The team is very excited to finally share what we've been working on with the community. We know it's early, but as the name implies... it's v0.

Link: https://v0.dev | FAQ: https://v0.dev/faq
palmdeezy
·3 年前·議論
Hola! Y'all can play with LLama 2 for free and compare it side by side to over 20 other models on the Vercel AI SDK playground.

Side-by-side comparison of LLama 2, Claude 2, GPT-3.5-turbo and GPT: https://sdk.vercel.ai/s/EkDy2iN
palmdeezy
·3 年前·議論
Fixed Cohere and Replicate. Will add the other provider now! Appreciate the help!
palmdeezy
·3 年前·議論
Investigating now. Thanks for the feedback!
palmdeezy
·3 年前·議論
Correct. We are using various hosting providers.

As part of the project, I’ve been working with providers and hosts on updating their SDKs to work on Vercel Edge Functions (and streaming).
palmdeezy
·3 年前·議論
Thanks man! Good idea on token/s. Will add
palmdeezy
·3 年前·議論
Engineering Director of Frameworks at Vercel here…

It works automatically when you use the `app` directory in 13.2+. No additional steps are needed when you self-host/run on Node.js
palmdeezy
·3 年前·議論
Yes! Prune then zip the output folder.
palmdeezy
·3 年前·議論
Turborepo author here…

We do not invalidate the whole graph anymore for a lockfile change. We now have a sophisticated parser that can calculate if a change within the lockfile should actually alter the hash of a given target. In addition to higher cache hit rates, this is what powers our `turbo prune` command which allows teams to create slices of their monorepo for a target and its dependencies…useful for those building in Docker.

Prune docs: https://turbo.build/repo/docs/reference/command-line-referen...

Turborepo is much more scalable now than when we spoke pre-Vercel acquisition. It now powers the core web codebases at Netflix, Snap, Disney Streaming, Hearst, Plex and thousands of other high-performance teams. You can see a full list of users here: https://turbo.build/showcase

Would be happy to reconnect about Uber’s web monorepo sometime.
palmdeezy
·4 年前·議論
Turborepo author here...

> * tasks on the root package (e.g. tsc -b that typechecks all packages)

We are working on this as we speak! The first step is to add the ability to restrict hashing `inputs`[1] to the Turborepo `pipeline`. After that we are going to be adding root task running in the next minor release.

However, as your monorepo grows, you will likely want to move away from running tasks like tsc from the root and instead run them on a per-package basis. The reason is that tools like Bazel, Buck, Turborepo, etc. can become more incremental (and thus faster) as your dependency/task graph becomes more granular (as long as you maintain or reduce the average affected blast radius of a given change). The other argument against root tasks is that they break hermeticity and encapsulation of the package abstraction. That being said, root tasks are very useful for fast migration to Turborepo and also for smaller repos. Futhermore, we're happy to tradeoff academic purity for productivity with features like this.

> treat tasks such as lint:eslint, lint:pretter as a single task lint (or maybe `lint:*`)

You can run multiple tasks at the same time and Turborepo will efficiently schedule them at max concurrency.

turbo run eslint prettier --filter=@acme/...

However, it sounds like you like to see glob fan out of tasks. This is a really cool idea. I created a GitHub issue for it here [2] if you'd like to follow along.

[1]: https://github.com/vercel/turborepo/pull/951

[2]: https://github.com/vercel/turborepo/issues/1029.
palmdeezy
·4 年前·議論
Turborepo author/founder here....

Yes, it's possible. Databricks currently uses both Turborepo and Bazel together in their monorepo[1]

[1] https://twitter.com/elado/status/1504216742393876483?s=20&t=...
palmdeezy
·4 年前·議論
> There are a huge number of mostly non-JS-specific problems that monorepo tooling eventually needs to solve: distributed build artifact and test result caching, distributed action execution, sandboxing, resource management and queuing, observability, and integration with other CI tools to name a few.

Turborepo author/founder here....

I agree. I built Turborepo because existing tools weren’t meeting our needs.

To solve these problems and still be flexible, many existing build tools end up with lots of configuration bloat. We’re trying to avoid that. We want to reimagine the developer experience of monorepo tooling and make it accessible for everyone.