쉐도잉 연습: JUST $1 For Billions of Tokens?! (DeepSeek v4 Pro) - 영상으로 영어 말하기 배우기

레슨 만드는 중...
1
Okay, so what you're seeing on the screen is an AI harness building a project of my choice.
2
I'm going to talk a little bit about project in some time.
3
But what is interesting in this is that this is the DeepSeek V4 Pro, number one.
4
This is extremely cheap, number two.
5
And this has something that I'm really liking, which is the taste feature, which is basically how I like the code to be done in the first place.
6
So let's talk about all of this.
7
The AI harness I just showed you is called as Command Code, which is a CLI tool acting as a coding agent that can write,
8
debug, fix, do whatever you want with your code base.
9
Now a super interesting part about command code is
10
that it has this $1 per month plan that has this $40 of DeepSeek v4 pro included in it.
11
And this is actually really good because if you look at DeepSeek's pricing, even the latest one, their API pricing at least, you can see that this is a model which is extremely cheap.
12
This one what I'm showing you is DeepSeek v4 flash
13
and v4 pro is also a very cheap model
14
while meeting a lot of expectations of frontier models like opus
15
and gp and the way you set up this one dollar plan
16
that has 40 dollars of usage
17
which is hundreds of millions of tokens is also super simple
18
all you have to do is get started with command code
19
i will give you all the links in the description you can see
20
that this is just my today's past hour usage right i have spent about 1 million tokens on deeps v4
21
and this has only consumed nine cents out of my hundred dollar budget
22
but anyway on the instructions on getting started it's super simple
23
you write npm install g command code inside your terminal you do a cmd login
24
which would use your logged in account right now
25
which you have subscribed with one dollar
26
and then you just write cmd to initiate the chat now
27
while command code and deep seek are working together i want to show an interesting file
28
that i found which gets created in your folder
29
if you go to this command code folder in your working directory and if you look at this taste folder
30
you're going to see that there's a file called taste.md.
31
Now this taste.md file that I'm just showing you, it's not a file that I have.
32
It's a file that command code is continuously learning based on how I'm instructing it.
33
And it's also not using everything that I'm saying it.
34
It has a confidence score in front of it.
35
So this is actually something like building your own agent skill, right?
36
But instead of me writing everything manually inside that skill, it's using my usage of CLI tool itself in order to figure out what sort of best practices I put.
37
And then according to my conversation, it can tweak these confidence scores based on what I like and what I don't like.
38
For example, personally, I like to configure Prettier with tabs, no spaces, no semicolons.
39
And it got it pretty well based on this confidence score.
40
I like using PNPM.
41
I like using Zod.
42
I mentioned a lot of these things in a lot of my videos, right?
43
So there is nothing new that you're discovering.
44
And for this specific project, I also asked it that use React for frontend and Cloudflare workers for backend, which it has given a confidence score of 0.7, which is pretty cool because in future,
45
when I ask it to add something new or, you know, make a new feature available or make a new endpoint, this taste.empty file can be basically just used directly.
46
And if you're working in a team, this file can also be commented on Git and your whole team can use this.
47
Now the project that I'm working on is basically a YouTube monitor, which I'll talk a little bit more about in an upcoming video because I'm still developing this.
48
But I just wanted to take a spin on how this can be done using DeepSeek V4 as a model.
49
This is probably going to be a small mini SaaS that I also launch in the coming time.
50
So stay tuned for that.
51
Once I have this ready, I'm going to update this here.
52
But one thing that I generally wanted to understand is that how DeepSeek is able to work much better
53
in this specific harness compared to generally
54
if you are using it with any other harness like cloud code
55
or even open code and the reason
56
that deep seek is much more optimized in command code is specifically
57
because this specific harness has been fine-tuned to work properly with deep
58
so i came across this post where ehemad who's also the founder of command code mentioned
59
that they have made deep seek v4 pro beat opus 4.7
60
six on ten times in their internal evals by auto repairing many of the quirks in the tool calling
61
and the overall explanation is slightly longer.
62
The core idea is performance, the raw performance of DeepSeek.
63
If you just consider DeepSeek as an engine, the raw performance and the intelligence of DeepSeek is actually good.
64
It's the harness around it which makes or breaks the...
65
So he says, I've been thinking about why open model bad at tool calling is almost always a harness problem, not a model problem.
66
See again, just to summarize before what we talked in the past as well.
67
AI models are things like Opus 4.7, GPT 5.5, DeepSeq V4, and so on and so forth, right?
68
These models are just raw intelligence.
69
They cannot do a lot on their own.
70
They can maybe answer simple questions.
71
You can ask them some academic questions, something that you want and they'll just spit out the text back.
72
What you often need is an AI harness on top of this.
73
So an AI harness is basically a piece of software that gives this AI model tool calls, right?
74
And tool calls are basically just the inversion of controls ai model will ask the harness itself
75
when it wants to access something for example let's say you
76
asked it create an html project right in order to create
77
an html project there are a bunch of steps first it needs to think about it
78
which is just the model part once it has thought about
79
it it needs to write file this writing the file is the harness part right
80
because ai cannot technically create a file on your needs to make a tool call
81
which would be done by the harness itself.
82
And I'm giving you a very simple example, but this tool calling can get very complex as well, depending on what sort of tools you are giving it, whether that's web search, executing arbitrary bash commands,
83
you know, sandboxing those commands.
84
So there's a permission system.
85
So all of this can get super complex.
86
And the idea is that the more your tool calls fail, the more AI tries to repair them on its own, the more tokens are to waste.
87
And the more the tokens are wasted, the less the intelligent model becomes.
88
We have talked about it in the past as well, that above like that's my heuristic i don't exactly know what is the actual number
89
or if there is one but i feel like above 100k tokens
90
or maybe like at maximum 150k tokens all of these models
91
which have like larger context windows sort of become stupid right
92
it they start sort of like start to lose a little
93
bit of context they'll start to make a little bit of mistakes here
94
and there so the ideal world is
95
that where you can get an intelligent model to do an important task in less number of tokens
96
that means these tool calls should ideally not fail right
97
because the more they fail yes you can feed it back into the model itself
98
and it'll repair but it's just gonna be a little messy
99
because you are now wasting more tokens right and
100
that is what fundamentally i feel they have fixed command code
101
especially for deep sea you can see he mentions the failure
102
modes aren't random they are a small finite compositional set across
103
deep flash pro glm quen the same four mistakes repeat of
104
almost exactly sending null for an optional field instead of omitting
105
it emitting a b as a json string instead of an
106
actual array wrapping the single argument as this where the scheme expected an array now these are not something
107
that models would not be able to on their own
108
but the idea is that
109
if your hardness can handle this in a way then you're
110
just going to save a lot of tokens doing two
111
and four and i saw that there might also be open sourcing command code
112
so you can actually check this layer of validation yourself as well once they do
113
that their github repository right now does not list it as
114
an open source project it just is there for opening issues
115
or if you want to request any features or
116
if you want to generally learn about it you can do
117
that so deep seek v4 i feel is sort of like a model
118
that you can use with command code like harness for very cheap
119
and maybe run a competition internally who gets to burn 10 million tokens as fast as possible.
120
And the funny thing is that even if you burn 10 million tokens, according to my dashboard, you will still be under $1 in cost.
121
And this does not even include the Go plan.
122
I'm actually on credits right now.
123
Your Go plan that you would have probably have even more usage because remember that their Go plan starts at $1 a month, but it includes $40 of DB for usage.
124
And they are in fact running this offer until May 31st.
125
So now is actually the perfect time to get this plan get this harness
126
and see for yourself how productive you can be with an ai as smart as deep seek
127
and a harness which is powerful enough to handle that
128
so yeah this is a pretty fun way of using deep seek v4 pro for very less cost
129
and this is one of those moments where you know you can use best of ai
130
but you don't have to break your bank last i remember this happening was in november last year
131
when you could buy a 20 claw subscription
132
and use opus 4.5 a lot and now i feel that you should give this a try, especially if you're somebody who has never used an intelligent model before and if you're only relying on free models.
133
So that's all for this video.
134
You will find all the links in the description.
135
Once again, thanks to Command Code for sponsoring this video.
136
I'm gonna see you in the next one very soon.
137
If you're still watching, make sure you leave a comment, I watched till the end below, to tell me that you were still here and let me know what do you think about the video.

왜 이 영상으로 말하기 연습을 해야 할까요?

이 영상에서는 최신 AI 도구인 DeepSeek V4 Pro를 사용하는 방법에 대해 설명합니다. 영어로 기술적 주제를 설명하는 것은 당신의 말하기 능력을 발전시키는 데 매우 유익합니다. 다양한 기술 용어와 문맥에서 원활하게 발표하는 방법을 배우는 것은 IELTS 스피킹 시험 준비에도 큰 도움이 됩니다. 또한, shadow speak 기법을 통해 발음과 억양을 연습할 수 있으며, 이를 통해 자연스러운 대화 능력을 향상시킬 수 있습니다.

문법 및 어휘 구조 분석

영상 속 화자가 사용하는 몇 가지 주요 구문을 분석해 보겠습니다:

  • “I want to talk about…” - 이 구문은 자신의 의견이나 주제를 소개할 때 유용하며, 발표나 일상 대화에서 쉽게 활용할 수 있습니다.
  • “This is extremely cheap” - 형용사를 강조하는 표현으로, 가격, 품질 등을 설명할 때 효과적입니다. 이와 같은 형용사를 사용하여 자신의 의견을 확실히 전달해보세요.
  • “I like to configure…” - 개인의 취향을 표현할 때 유용한 구문으로, 자신의 선호를 공유하는 데 사용될 수 있습니다.
  • “This file can also be commented on Git” - 기술 용어가 포함된 문장으로, 팀워크와 협업의 중요성에 대해 이야기합니다. 이는 특히 기술적인 환경에서 필수적입니다.

일반적인 발음 트랩

이 영상에서 화자가 사용하는 몇 가지 발음 트랩을 살펴보겠습니다. “command code”와 같은 기술적 용어는 특히 발음이 어렵습니다. 또한, “DeepSeek”와 같은 고유명사는 자연스럽게 발음하기 위해 반복적인 연습이 필요합니다. shadowspeak 연습을 통해 이러한 단어들의 발음을 개선할 수 있으며, shadowspeaks 기법을 적용하여 논리적인 억양을 익혀보세요. 이것은 원어민 같은 발음을 위해 필수적입니다.

쉐도잉이란? 영어 실력을 빠르게 키우는 과학적 방법

쉐도잉(Shadowing)은 원래 전문 통역사 훈련을 위해 개발된 언어 학습 기법으로, 다언어 학자인 Dr. Alexander Arguelles에 의해 대중화된 방법입니다. 핵심 원리는 간단하지만 매우 강력합니다: 원어민의 영어를 들으면서 1~2초의 짧은 지연으로 즉시 소리 내어 따라 말하는 것——마치 '그림자(shadow)'처럼 화자를 따라가는 것입니다. 문법 공부나 수동적인 청취와 달리, 쉐도잉은 뇌와 입 근육이 동시에 실시간으로 영어를 처리하고 재현하도록 훈련합니다. 연구에 따르면 이 방법은 발음 정확도, 억양, 리듬, 연음, 청취력, 말하기 유창성을 크게 향상시킵니다. IELTS 스피킹 준비와 자연스러운 영어 소통을 원하는 분들에게 특히 효과적입니다.