File size: 1,240 Bytes
478965d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 requests

class OpenAI:
    def __init__(self, init_prompt = None):
        self.history = []
        if init_prompt is not None:
            self.history.append({'role': 'system', 'content': init_prompt})
    
    def clear_history(self):
        self.history = []

    def show_history(self):
        for message in self.history:
            print(f"{message['role']}: {message['content']}")
    
    def get_raw_history(self):
        return self.history
    
    def __call__(self, prompt, with_history = False, model = 'gpt-3.5-turbo', temperature = 0, api_key = None):
        URL = 'https://api.openai.com/v1/chat/completions'
        new_message = {'role': 'user', 'content': prompt}
        if with_history:
            self.history.append(new_message)
            messages = self.history
        else:
            messages = [new_message]

        resp = requests.post(URL, json={
            'model': model,
            'messages': messages,
            'temperature': temperature,
        }, headers={
            'Authorization': f"Bearer {api_key}"
        })
        # print(resp.json())
        self.history.append(resp.json()['choices'][0]['message'])

        return resp.json()['choices'][0]['message']['content']