1
+ import requests
2
+ import time
3
+ import os
4
+ import json
5
+ from uuid import uuid4
6
+
7
+ from .config import load_config
8
+
9
+ endpoint = 'https://api.banana.dev/'
10
+ # Endpoint override for development
11
+ if 'BANANA_URL' in os .environ :
12
+ print ("Dev Mode" )
13
+ if os .environ ['BANANA_URL' ] == 'local' :
14
+ endpoint = 'http://localhost/'
15
+ else :
16
+ endpoint = os .environ ['BANANA_URL' ]
17
+ print ("Hitting endpoint:" , endpoint )
18
+
19
+ config = load_config ()
20
+
21
+ # THE MAIN FUNCTIONS
22
+ # ___________________________________
23
+
24
+
25
+ def run_main (api_key , model_key , model_inputs ):
26
+ call_id = start_api (api_key , model_key , model_inputs )
27
+ while True :
28
+ dict_out = check_api (api_key , call_id )
29
+ if dict_out ['message' ].lower () == "success" :
30
+ return dict_out
31
+
32
+ def start_main (api_key , model_key , model_inputs ):
33
+ call_id = start_api (api_key , model_key , model_inputs )
34
+ return call_id
35
+
36
+ def check_main (api_key , call_id ):
37
+ dict_out = check_api (api_key , call_id )
38
+ return dict_out
39
+
40
+
41
+ # THE API CALLING FUNCTIONS
42
+ # ________________________
43
+
44
+ # Takes in start params, returns call ID
45
+ def start_api (api_key , model_key , model_inputs ):
46
+ global endpoint
47
+ global config
48
+ route_start = "start/v2/"
49
+ url_start = endpoint + route_start
50
+
51
+ payload = {
52
+ "id" : str (uuid4 ()),
53
+ "created" : time .time (),
54
+ "apiKey" : api_key ,
55
+ "modelKey" : model_key ,
56
+ "modelInputs" : model_inputs ,
57
+ "config" : config
58
+ }
59
+
60
+ response = requests .post (url_start , json = payload )
61
+
62
+ if response .status_code != 200 :
63
+ raise Exception ("server error: status code {}" .format (response .status_code ))
64
+
65
+ try :
66
+ out = response .json ()
67
+ except :
68
+ raise Exception ("server error: returned invalid json" )
69
+
70
+ try :
71
+ if "error" in out ['message' ].lower ():
72
+ raise Exception (out ['message' ])
73
+ call_id = out ['callID' ]
74
+ return call_id
75
+ except :
76
+ raise Exception ("server error: Failed to return call_id" )
77
+
78
+ # The bare async checker.
79
+ def check_api (api_key , call_id ):
80
+ global endpoint
81
+ route_check = "check/v2/"
82
+ url_check = endpoint + route_check
83
+ # Poll server for completed task
84
+
85
+ payload = {
86
+ "id" : str (uuid4 ()),
87
+ "created" : int (time .time ()),
88
+ "longPoll" : True ,
89
+ "callID" : call_id ,
90
+ "apiKey" : api_key
91
+ }
92
+ response = requests .post (url_check , json = payload )
93
+
94
+ if response .status_code != 200 :
95
+ raise Exception ("server error: status code {}" .format (response .status_code ))
96
+
97
+ try :
98
+ out = response .json ()
99
+ except :
100
+ raise Exception ("server error: returned invalid json" )
101
+
102
+ try :
103
+ if "error" in out ['message' ].lower ():
104
+ raise Exception (out ['message' ])
105
+ return out
106
+ except Exception as e :
107
+ raise e
0 commit comments