initial commit
This commit is contained in:
36
miapia_own/aihandler.py
Normal file
36
miapia_own/aihandler.py
Normal file
@@ -0,0 +1,36 @@
|
||||
|
||||
import requests
|
||||
|
||||
|
||||
class AIHandler(object):
|
||||
def __init__(self):
|
||||
pass
|
||||
|
||||
def __call__(self, text):
|
||||
resp = requests.post("https://fast-pia.avemio.technology/chat-completion",
|
||||
json={
|
||||
"session-id": "chatcmpl",
|
||||
"user-location": "Zweibrücken",
|
||||
"wheel-of-life": [
|
||||
{
|
||||
"personal_growth": 10,
|
||||
"health_exercise": 5,
|
||||
"familiy_friends": 5,
|
||||
"romance_relationship": 5,
|
||||
"career_work": 5,
|
||||
"finances": 5,
|
||||
"recreation_fun": 5,
|
||||
"living_situation": 5}
|
||||
],
|
||||
"messages": [
|
||||
{
|
||||
"role": "user",
|
||||
"content": text
|
||||
}
|
||||
]
|
||||
})
|
||||
resp = resp.json()
|
||||
return {
|
||||
"text": resp[0]['text'],
|
||||
"emotion": resp[0]['emotion']
|
||||
}
|
||||
Reference in New Issue
Block a user