File size: 1,189 Bytes
b3509ba
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import sys
import os
import json
sys.path.append('..')

from pathlib import Path
from swarmai.agents.GPTAgent import GPTAgent

class bcolors:
    HEADER = '\033[95m'
    OKBLUE = '\033[94m'
    OKCYAN = '\033[96m'
    OKGREEN = '\033[92m'
    WARNING = '\033[93m'
    FAIL = '\033[91m'
    ENDC = '\033[0m'
    BOLD = '\033[1m'
    UNDERLINE = '\033[4m'
        
def test_openai_integration():
    keys_file = Path("../keys.json")
    with open(keys_file) as f:
        keys = json.load(f)
    os.environ["OPENAI_API_KEY"] = keys["OPENAI_API_KEY"]
    
    caller = GPTAgent(1, "general", None, None, None, None)
    conversation = [
        {"role": "system", "content": "act as a professional writer and expert in poems as well as AI and swarm intelligence."},
        {"role": "user", "content": "Write a cheerful poem under 100 words about how swarm intelligence is superior to single-model AI."}
    ]

    # call the model
    response = caller.call_model(conversation)
    
    print(f"{bcolors.OKBLUE}TASK{bcolors.ENDC} => {conversation[1]['content']}")
    print(f"{bcolors.OKBLUE}RESPONSE{bcolors.ENDC} => \n {response}")

if __name__ == "__main__":
    test_openai_integration()