Files
sglang/examples/frontend_language/quick_start/openai_example_chat.py

75 lines
1.7 KiB
Python
Raw Normal View History

2024-01-30 04:29:32 -08:00
"""
Usage:
export OPENAI_API_KEY=sk-******
python3 openai_example_chat.py
"""
2024-07-18 04:55:39 +10:00
2024-01-30 04:29:32 -08:00
import sglang as sgl
2024-01-30 04:29:32 -08:00
@sgl.function
def multi_turn_question(s, question_1, question_2):
2024-01-30 04:29:32 -08:00
s += sgl.system("You are a helpful assistant.")
s += sgl.user(question_1)
s += sgl.assistant(sgl.gen("answer_1", max_tokens=256))
s += sgl.user(question_2)
s += sgl.assistant(sgl.gen("answer_2", max_tokens=256))
2024-01-30 04:29:32 -08:00
def single():
state = multi_turn_question.run(
question_1="What is the capital of the United States?",
question_2="List two local attractions.",
)
2024-01-30 04:29:32 -08:00
for m in state.messages():
print(m["role"], ":", m["content"])
print("\n-- answer_1 --\n", state["answer_1"])
2024-01-30 04:29:32 -08:00
def stream():
state = multi_turn_question.run(
question_1="What is the capital of the United States?",
question_2="List two local attractions.",
2024-07-18 04:55:39 +10:00
stream=True,
2024-01-30 04:29:32 -08:00
)
for out in state.text_iter():
print(out, end="", flush=True)
print()
def batch():
2024-07-18 04:55:39 +10:00
states = multi_turn_question.run_batch(
[
{
"question_1": "What is the capital of the United States?",
"question_2": "List two local attractions.",
},
{
"question_1": "What is the capital of France?",
"question_2": "What is the population of this city?",
},
]
)
2024-01-30 04:29:32 -08:00
for s in states:
print(s.messages())
if __name__ == "__main__":
sgl.set_default_backend(sgl.OpenAI("gpt-3.5-turbo"))
# Run a single request
print("\n========== single ==========\n")
single()
# Stream output
print("\n========== stream ==========\n")
stream()
# Run a batch of requests
print("\n========== batch ==========\n")
batch()