Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LlamaIndexTS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mirrored_repos
MachineLearning
run-llama
LlamaIndexTS
Commits
e755a632
Commit
e755a632
authored
1 year ago
by
Elliot Kang
Browse files
Options
Downloads
Patches
Plain Diff
fixed example based on new interface
parent
29c6b62b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
examples/llm_stream.ts
+10
-22
10 additions, 22 deletions
examples/llm_stream.ts
with
10 additions
and
22 deletions
examples/llm_stream.ts
+
10
−
22
View file @
e755a632
...
@@ -7,7 +7,9 @@ import {
...
@@ -7,7 +7,9 @@ import {
import
{
ChatMessage
,
MessageType
,
OpenAI
}
from
"
../packages/core/src/llm/LLM
"
;
import
{
ChatMessage
,
MessageType
,
OpenAI
}
from
"
../packages/core/src/llm/LLM
"
;
async
function
main
()
{
async
function
main
()
{
const
query
:
string
=
"
Where is Istanbul?
"
;
const
query
:
string
=
`
Where is Istanbul?
`
;
const
llm
=
new
OpenAI
({
model
:
"
gpt-3.5-turbo
"
,
temperature
:
0.1
});
const
llm
=
new
OpenAI
({
model
:
"
gpt-3.5-turbo
"
,
temperature
:
0.1
});
const
message
:
ChatMessage
=
{
content
:
query
,
role
:
"
user
"
};
const
message
:
ChatMessage
=
{
content
:
query
,
role
:
"
user
"
};
...
@@ -19,26 +21,14 @@ async function main() {
...
@@ -19,26 +21,14 @@ async function main() {
//GPT 3.5 Turbo uses CL100K_Base encodings, check your LLM to see which tokenizer it uses.
//GPT 3.5 Turbo uses CL100K_Base encodings, check your LLM to see which tokenizer it uses.
const
encoding
=
tiktoken
.
getEncoding
(
"
cl100k_base
"
);
const
encoding
=
tiktoken
.
getEncoding
(
"
cl100k_base
"
);
const
callback
:
CallbackManager
=
new
CallbackManager
();
//Stream Complete
callback
.
onLLMStream
=
(
callback_response
)
=>
{
//Note: Setting streaming flag to true or false will auto-set your return type to
//Token text
//either an AsyncGenerator or a Response.
const
text
=
callback_response
.
token
.
choices
[
0
].
delta
.
content
// Omitting the streaming flag automatically sets streaming to false
?
callback_response
.
token
.
choices
[
0
].
delta
.
content
:
""
;
//Increment total number of tokens
total_tokens
+=
encoding
.
encode
(
text
).
length
;
};
llm
.
callbackManager
=
callback
;
//Create a dummy event to trigger our Stream Callback
// const stream2 = await llm.chat([message], undefined);
const
dummy_event
:
Event
=
{
const
stream
=
await
llm
.
complete
(
query
,
undefined
,
true
);
id
:
"
something
"
,
type
:
"
intermediate
"
as
EventType
,
};
//Stream Complete
const
stream
=
llm
.
stream_complete
(
query
,
dummy_event
);
for
await
(
const
part
of
stream
)
{
for
await
(
const
part
of
stream
)
{
//This only gives you the string part of a stream
//This only gives you the string part of a stream
...
@@ -49,13 +39,11 @@ async function main() {
...
@@ -49,13 +39,11 @@ async function main() {
const
correct_total_tokens
:
number
=
const
correct_total_tokens
:
number
=
encoding
.
encode
(
accumulated_result
).
length
;
encoding
.
encode
(
accumulated_result
).
length
;
console
.
log
(
accumulated_result
);
//Check if our stream token counter works
//Check if our stream token counter works
console
.
log
(
console
.
log
(
`Output token total using tokenizer on accumulated output:
${
correct_total_tokens
}
`
,
`Output token total using tokenizer on accumulated output:
${
correct_total_tokens
}
`
,
);
);
console
.
log
(
`Output token total using tokenizer on stream output:
${
total_tokens
}
`
,
);
}
}
main
();
main
();
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment