跟读练习: 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.
为什么要通过这个视频练习口语?
通过这段视频练习口语非常有帮助,因为它展示了如何使用人工智能工具来开发项目。在视频中,讲述者通过实际操作展示了技术过程,将抽象的编码概念转化为具体的应用实例。这不仅帮助你提高听力理解能力,还能激励你在实际沟通中运用新学到的词汇和表达方式。学习这些内容可以增强你的自信,从而在雅思口语练习中更流利地表达自己的观点。
语法与表达在语境中
- 使用命令式动词:讲述者经常使用命令式,例如“写 npm install g command code”,这种直截了当的表达方式在技术交流中非常常见,有助于明确指示。
- 条件句:例如“如果你查看 DeepSeek 的定价…”这种结构适合条件表达,在讨论计划或建议时能更好地说明可能的结果。
- 描述性语言:讲述者用了“很简单”、“非常便宜”等形容词,这能够在口语交流中增加情感色彩,使交流更具吸引力。
常见发音陷阱
在视频中,有一些词汇可能会对非母语者造成发音困难。例如,“command code”中的“command”和“code”可能会因为长音而让人混淆。还有“DeepSeek”这个词,强调准确的音节分隔是非常重要的。此外,讲述者的语速较快,对于跟读和模仿会有一定难度,特别是在快速过渡不同术语时。
通过在这个 shadowing site 上边看边听,可以帮助你更好地掌握这些发音难点,提升你的 shadow speak 能力,为将来的 英语口语练习 打下坚实的基础。
什么是跟读法?
跟读法 (Shadowing) 是一种有科学依据的语言学习技巧,最初开发用于专业口译员的培训,并由多语言者Alexander Arguelles博士普及。这个方法简单而强大:您在听英语母语原声的同时立即大声重复——就像是一个延迟1-2秒紧跟说话者的影子。与被动听力或语法练习不同,跟读法强迫您的大脑和口腔肌肉同时处理并模仿真实的讲话模式。研究表明它能显着提高发音准确性,语调,节奏,连读,听力理解和口语流利度——使其成为雅思口语备考和真实英语交流最有效的方法之一。