tinybiggames commited on
Commit
99a890b
1 Parent(s): c04b11d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -40,7 +40,7 @@ How to define model:
40
 
41
  ```Delphi
42
  Model_Define('dolphin-2.9.1-llama-3-8b.Q4_K_M.gguf',
43
- 'dolphin-llama3:8B:Q4KM', 8000,
44
  '<|im_start|>{role}\n{content}<|im_end|>\n',
45
  '<|im_start|>assistant');
46
  ```
@@ -66,7 +66,7 @@ var
66
  LOutputTokens: Int32;
67
  LTotalTokens: Int32;
68
 
69
- if Inference_Run('dolphin-llama3:8B:Q4KM', 1024) then
70
  begin
71
  Inference_GetUsage(nil, @LTokenOutputSpeed, @LInputTokens, @LOutputTokens,
72
  @LTotalTokens);
 
40
 
41
  ```Delphi
42
  Model_Define('dolphin-2.9.1-llama-3-8b.Q4_K_M.gguf',
43
+ 'dolphin-2.9.1-llama-3-8b.Q4_K_M', 8000,
44
  '<|im_start|>{role}\n{content}<|im_end|>\n',
45
  '<|im_start|>assistant');
46
  ```
 
66
  LOutputTokens: Int32;
67
  LTotalTokens: Int32;
68
 
69
+ if Inference_Run('dolphin-2.9.1-llama-3-8b.Q4_K_M', 1024) then
70
  begin
71
  Inference_GetUsage(nil, @LTokenOutputSpeed, @LInputTokens, @LOutputTokens,
72
  @LTotalTokens);