FuryMartin commited on
Commit
1a2ecac
·
verified ·
1 Parent(s): 7eef118

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -552,7 +552,7 @@ For third-party API deployed with vLLM or SGLang, please note that :
552
 
553
  ### Chat Completion
554
 
555
- This is a simple chat completion script which shows how to call K2.5 in Thinking and Instant modes.
556
 
557
  ```python
558
  import openai
@@ -594,7 +594,7 @@ def simple_chat(client: openai.OpenAI, model_name: str):
594
 
595
  K2.5 supports Image and Video input.
596
 
597
- The following example demonstrates how to use K2.5 with image input:
598
 
599
  ```python
600
  import openai
@@ -640,7 +640,7 @@ def chat_with_image(client: openai.OpenAI, model_name: str):
640
  return response.choices[0].message.content
641
  ```
642
 
643
- The following example demonstrates how to use K2.5 with video input:
644
 
645
  ```python
646
  import openai
 
552
 
553
  ### Chat Completion
554
 
555
+ This is a simple chat completion script which shows how to call K2.5 API in Thinking and Instant modes.
556
 
557
  ```python
558
  import openai
 
594
 
595
  K2.5 supports Image and Video input.
596
 
597
+ The following example demonstrates how to call K2.5 API with image input:
598
 
599
  ```python
600
  import openai
 
640
  return response.choices[0].message.content
641
  ```
642
 
643
+ The following example demonstrates how to call K2.5 API with video input:
644
 
645
  ```python
646
  import openai