summaryrefslogtreecommitdiffstats
path: root/ora/__init__.py
blob: 36e14cd5b5c9c95966f0e6f10d92a2d929ae9635 (plain) (blame)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from ora.model  import CompletionModel
from ora.typing import OraResponse
from requests   import post
from time       import time
from random     import randint

user_id = None
session_token = None

class Completion:
    def create(
        model : CompletionModel,
        prompt: str,
        includeHistory: bool = True,
        conversationId: str or None = None) -> OraResponse:
        extra = {
            'conversationId': conversationId} if conversationId else {}
        
        cookies = {
            "cookie"        : f"__Secure-next-auth.session-token={session_token}"} if session_token else {}
        
        response = post('https://ora.sh/api/conversation',
            headers = cookies | {
                "host"          : "ora.sh",
                "authorization" : f"Bearer AY0{randint(1111, 9999)}",
                "user-agent"    : "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36",
                "origin"        : "https://ora.sh",
                "referer"       : "https://ora.sh/chat/",
            },
            json = extra | {
                'chatbotId': model.id,
                'input'    : prompt,
                'userId'   : user_id if user_id else model.createdBy, 
                'model'    : model.modelName,
                'provider' : 'OPEN_AI',
                'includeHistory': includeHistory}).json()
        
        if response.get('error'):
            raise Exception('''set ora.user_id and ora.session_token\napi response: %s''' % response['error'])

        return OraResponse({
            'id'     : response['conversationId'], 
            'object' : 'text_completion', 
            'created': int(time()),
            'model'  : model.slug, 
            'choices': [{
                    'text'          : response['response'], 
                    'index'         : 0, 
                    'logprobs'      : None, 
                    'finish_reason' : 'stop'
            }],
            'usage': {
                'prompt_tokens'     : len(prompt), 
                'completion_tokens' : len(response['response']), 
                'total_tokens'      : len(prompt) + len(response['response'])
            }
        })