Create test_secretes
Browse files- test_secretes +8 -0
test_secretes
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import numpy as np
|
| 2 |
+
import scipy as sp
|
| 3 |
+
|
| 4 |
+
api_key = "sw-xyz1234567891213"
|
| 5 |
+
|
| 6 |
+
def call_inference(prompt: str) -> str:
|
| 7 |
+
result = call_api(prompt, api_key)
|
| 8 |
+
return result
|