20 lines
564 B
Python
20 lines
564 B
Python
|
|
from sglang import function, system, user, assistant, gen, set_default_backend, Anthropic
|
||
|
|
|
||
|
|
|
||
|
|
@function
|
||
|
|
def multi_turn_question(s, question_1, question_2):
|
||
|
|
s += user(question_1)
|
||
|
|
s += assistant(gen("answer_1", max_tokens=256))
|
||
|
|
s += user(question_2)
|
||
|
|
s += assistant(gen("answer_2", max_tokens=256))
|
||
|
|
|
||
|
|
set_default_backend(Anthropic("claude-2"))
|
||
|
|
|
||
|
|
state = multi_turn_question.run(
|
||
|
|
question_1="What is the capital of the United States?",
|
||
|
|
question_2="List two local attractions.",
|
||
|
|
)
|
||
|
|
|
||
|
|
for m in state.messages():
|
||
|
|
print(m["role"], ":", m["content"])
|