MCPcopy Create free account
hub / github.com/OpenBMB/ToolBench / lorem

Function lorem

data_example/toolenv/tools/Advertising/bog_boi_api/api.py:9–28  ·  view source on GitHub ↗

"Lorem"

(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff')

Source from the content-addressed store, hash-verified

7
8
9def lorem(toolbench_rapidapi_key: str='088440d910mshef857391f2fc461p17ae9ejsnaebc918926ff'):
10 """
11 "Lorem"
12
13 """
14 url = f"https://bog-boi-api.p.rapidapi.com/"
15 querystring = {}
16
17 headers = {
18 "X-RapidAPI-Key": toolbench_rapidapi_key,
19 "X-RapidAPI-Host": "bog-boi-api.p.rapidapi.com"
20 }
21
22
23 response = requests.get(url, headers=headers, params=querystring)
24 try:
25 observation = response.json()
26 except:
27 observation = response.text
28 return observation
29

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected