File size: 318 Bytes
bb37148
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
from conversations import ConversationSession

if __name__ == "__main__":
    prompts = [
        "Today's weather of California",
        "Please summarize your previous answer in table format",
    ]
    with ConversationSession("precise") as session:
        for prompt in prompts:
            session.chat(prompt)