Update app.py
Browse files
app.py
CHANGED
@@ -1,53 +1,7 @@
|
|
1 |
-
from fastapi import FastAPI
|
2 |
-
from twilio.rest import Client
|
3 |
-
from twilio.twiml.messaging_response import MessagingResponse
|
4 |
-
import openai
|
5 |
-
import os
|
6 |
|
7 |
app = FastAPI()
|
8 |
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
twilio_auth_token = os.getenv("TWILIO_AUTH_TOKEN")
|
13 |
-
twilio_whatsapp_number = os.getenv("TWILIO_WHATSAPP_NUMBER")
|
14 |
-
|
15 |
-
# Inicializa el cliente de Twilio
|
16 |
-
client = Client(twilio_account_sid, twilio_auth_token)
|
17 |
-
|
18 |
-
@app.post("/webhook")
|
19 |
-
async def whatsapp_webhook(request: Request):
|
20 |
-
# Extraer el mensaje entrante y el n煤mero del remitente desde Twilio
|
21 |
-
form = await request.form()
|
22 |
-
incoming_msg = form.get('Body').strip()
|
23 |
-
from_number = form.get('From').strip()
|
24 |
-
|
25 |
-
# Generar una respuesta usando GPT-4
|
26 |
-
response_text = get_gpt4_response(incoming_msg)
|
27 |
-
|
28 |
-
# Enviar la respuesta de vuelta al usuario en WhatsApp a trav茅s de Twilio
|
29 |
-
client.messages.create(
|
30 |
-
body=response_text,
|
31 |
-
from_=twilio_whatsapp_number,
|
32 |
-
to=from_number
|
33 |
-
)
|
34 |
-
|
35 |
-
# Crear una respuesta TwiML (solo como confirmaci贸n)
|
36 |
-
twilio_resp = MessagingResponse()
|
37 |
-
twilio_resp.message("Procesando tu mensaje...")
|
38 |
-
return str(twilio_resp)
|
39 |
-
|
40 |
-
def get_gpt4_response(message):
|
41 |
-
"""
|
42 |
-
Env铆a el mensaje del usuario a GPT-4 y devuelve la respuesta generada.
|
43 |
-
"""
|
44 |
-
try:
|
45 |
-
response = openai.ChatCompletion.create(
|
46 |
-
model="gpt-4",
|
47 |
-
messages=[{"role": "user", "content": message}],
|
48 |
-
temperature=0.7 # Controla la creatividad de la respuesta
|
49 |
-
)
|
50 |
-
return response.choices[0].message['content']
|
51 |
-
except Exception as e:
|
52 |
-
print(f"Error con la API de GPT-4: {e}")
|
53 |
-
return "Lo siento, hubo un problema al procesar tu mensaje. Int茅ntalo de nuevo m谩s tarde."
|
|
|
1 |
+
from fastapi import FastAPI
|
|
|
|
|
|
|
|
|
2 |
|
3 |
app = FastAPI()
|
4 |
|
5 |
+
@app.get("/")
|
6 |
+
def greet_json():
|
7 |
+
return {"Hello": "World!"}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|