mirror of
https://github.com/velocitatem/raccoon.git
synced 2026-05-31 16:53:37 +00:00
5 lines
139 B
Python
5 lines
139 B
Python
import requests
|
|
def runPrompt(prompt):
|
|
r = requests.get('http://localhost:3042/capital/' + prompt)
|
|
return r.json().get('response')
|