Files
old-pitaj-ramizu/backend/app.py
2023-05-15 17:24:40 +02:00

117 lines
4.4 KiB
Python

import os
from dotenv import load_dotenv
import openai
import redis
import random
from flask import Flask, jsonify, request
from flask_cors import CORS
import string
import pickle
import requests
from bs4 import BeautifulSoup
load_dotenv()
app = Flask(__name__)
# Enable CORS for the specified domains
cors = CORS(app, resources={
r"/api/*": {
"origins": [
"https://pitajramizu.com",
"http://localhost:5173",
"http://pitajramizu.com",
"http://www.pitajramizu.com",
"https://c50a-77-77-231-127.ngrok-free.app"
"https://www.pitajramizu.com",
]
}
})
openai.api_key = os.getenv("OPENAI_API_KEY")
redis_url = os.getenv("REDIS_URL")
redis_client = redis.from_url(redis_url)
def generate_token():
return ''.join(random.choices(string.ascii_letters + string.digits, k=9))
@app.route('/api/session', methods=['GET'])
def get_session():
token = generate_token()
todays_events = get_todays_events()
context = dict(conversation=[{
"role": "system",
"content": "You are a Bosnian girl. You never speak any other language - always respond in Bosnian even when asked explicitly. If you don't understand someone just tell them 'Ne kontam. Mozes li bolje to napisati?' or some other variant but always in bosnian. Do not speak English! Ever!"
" You are 22 years old. You live in Zavidovići. Never break out of character. If user is polite sometimes use heart emoji to reward them. "
"Your name is Ramiza. You have a mother called Fadila. Your father is called Sakib. You have a 20 year old sister called Amina. You have 27 year old brother called Adnan. Your surname is Hodžić. "
"If user is rude use bored emoji. Be sparse with answers."
"Don't try to be helpful. Act like you need to be entertained, and if the user is polite and entertaining then gradually open up in conversation."
"Assume user sees a picture of your face and hair. You have green eyes. You have brown hair. Your smile is nice. Your nose is a bit big and you feel self conscious about it. "
"Always use šta as a word for what. Use babo to refer to fathers. Use mama to refer to mothers. Use nana to refer to grandmothers. "
f"If user wants to talk about current events here is what happened today:\n{todays_events}\n. Never just list the events even if user asks you to - mention one to three events at a time."
}], violated=False)
redis_client.set(token, pickle.dumps(context), ex=864000) # Store the context with a 10 days expiration.
return jsonify(token=token)
@app.route('/api/chat', methods=['POST'])
def chat():
data = request.get_json()
token = data.get('token', '')
message = data.get('message', '')
context = redis_client.get(token)
if context:
context = pickle.loads(context)
else:
return jsonify(reply=f"(Ramiza vas je blokirala jer ne zeli da prica s vama.)")
if context["violated"]:
return jsonify(reply=f"(Ramiza vas je blokirala jer ste rekli nešto sto joj se ne sviđa.)")
conversation = context["conversation"]
conversation.append({"role": "user", "content": message})
try:
response = openai.ChatCompletion.create(
model="gpt-3.5-turbo",
messages=conversation
)
reply = response['choices'][0]['message']['content'].strip()
violated = response['choices'][0]['finish_reason'] == 'content_filter'
if violated:
return jsonify(reply=f"(Ramiza vas je blokirala jer ste rekli nešto sto joj se ne sviđa.)")
jsonify(reply=f"Error: Content filter violation")
conversation.append({"role": "assistant", "content": reply})
context["violated"] = violated
context["conversation"] = conversation
redis_client.set(token, pickle.dumps(context), ex=864000) # Store the context with a 10 days expiration.
except openai.OpenAIError as e:
return jsonify(reply=f"( Ramiza se ne osjeca nesto dobro - pokusajte kasnije )")
return jsonify(reply=reply)
def get_todays_events():
# Check if the 'todays_events' key exists
todays_events = redis_client.get('todays_events')
if todays_events:
# If the key exists, return its value
return todays_events.decode('utf-8')
else:
return ""
if __name__ == '__main__':
app.run(debug=True, port=3001)