together_example_complete.py 1.65 KB
Newer Older
1
2
3
4
5
6
7
8
"""
Usage:
export TOGETHER_API_KEY=sk-******
python3 together_example_complete.py
"""

import os

zhyncs's avatar
zhyncs committed
9
10
import sglang as sgl

11
12
13

@sgl.function
def few_shot_qa(s, question):
zhyncs's avatar
zhyncs committed
14
    s += """The following are questions with answers.
15
16
17
18
19
20
Q: What is the capital of France?
A: Paris
Q: What is the capital of Germany?
A: Berlin
Q: What is the capital of Italy?
A: Rome
zhyncs's avatar
zhyncs committed
21
"""
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
    s += "Q: " + question + "\n"
    s += "A:" + sgl.gen("answer", stop="\n", temperature=0)


def single():
    state = few_shot_qa.run(question="What is the capital of the United States?")
    answer = state["answer"].strip().lower()

    assert "washington" in answer, f"answer: {state['answer']}"

    print(state.text())


def stream():
    state = few_shot_qa.run(
zhyncs's avatar
zhyncs committed
37
38
        question="What is the capital of the United States?", stream=True
    )
39
40
41
42
43
44
45

    for out in state.text_iter("answer"):
        print(out, end="", flush=True)
    print()


def batch():
zhyncs's avatar
zhyncs committed
46
47
48
49
50
51
    states = few_shot_qa.run_batch(
        [
            {"question": "What is the capital of the United States?"},
            {"question": "What is the capital of China?"},
        ]
    )
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76

    for s in states:
        print(s["answer"])


if __name__ == "__main__":
    backend = sgl.OpenAI(
        model_name="mistralai/Mixtral-8x7B-Instruct-v0.1",
        is_chat_model=False,
        base_url="https://api.together.xyz/v1",
        api_key=os.environ.get("TOGETHER_API_KEY"),
    )
    sgl.set_default_backend(backend)

    # 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()