Moibe commited on
Commit
2df07f7
1 Parent(s): ad4c8fe

Se agregan endpoints para Entrenamientos

Browse files
Files changed (2) hide show
  1. funciones.py +18 -0
  2. main.py +46 -2
funciones.py CHANGED
@@ -1,6 +1,7 @@
1
  import asistente
2
  import operacionesIA
3
 
 
4
 
5
  def getMacronutrientes(prompt):
6
  return operacionesIA.consulta(asistente.macronutrientes, prompt)
@@ -16,3 +17,20 @@ def getReceta(prompt):
16
 
17
  def getSustitucion(prompt):
18
  return operacionesIA.consulta(asistente.sustitucion, prompt)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  import asistente
2
  import operacionesIA
3
 
4
+ #Nutrici贸n
5
 
6
  def getMacronutrientes(prompt):
7
  return operacionesIA.consulta(asistente.macronutrientes, prompt)
 
17
 
18
  def getSustitucion(prompt):
19
  return operacionesIA.consulta(asistente.sustitucion, prompt)
20
+
21
+ #Entrenamiento
22
+
23
+ def getDistribucionGruposMusculares(prompt):
24
+ return operacionesIA.consulta(asistente.grupos_musculares, prompt)
25
+
26
+ def getEjercicios(prompt):
27
+ return operacionesIA.consulta(asistente.eleccion_ejercicios, prompt)
28
+
29
+ def getBloques(prompt):
30
+ return operacionesIA.consulta(asistente.distribucion_bloques, prompt)
31
+
32
+ def getCircuito(prompt):
33
+ return operacionesIA.consulta(asistente.distribucion_circuito, prompt)
34
+
35
+ def getSumatoria(prompt):
36
+ return operacionesIA.consulta(asistente.distribucion_sumatoria, prompt)
main.py CHANGED
@@ -3,6 +3,8 @@ from fastapi import FastAPI
3
 
4
  app = FastAPI()
5
 
 
 
6
  #1.- Obtener distribuci贸n macronutrientes.
7
  @app.post(
8
  "/macronutrientes/",
@@ -39,6 +41,48 @@ async def receta(prompt: str):
39
  @app.post(
40
  "/sustituir_alimento/",
41
  tags=["Nutrici贸n"],
42
- summary="Nutrici贸n: 5.- Sustituir alimento ")
43
  async def sustituir_alimento(prompt: str):
44
- return funciones.getSustitucion(prompt)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
 
4
  app = FastAPI()
5
 
6
+ #NUTRICI脫N
7
+
8
  #1.- Obtener distribuci贸n macronutrientes.
9
  @app.post(
10
  "/macronutrientes/",
 
41
  @app.post(
42
  "/sustituir_alimento/",
43
  tags=["Nutrici贸n"],
44
+ summary="Nutrici贸n: 5.- Sustituir Alimento ")
45
  async def sustituir_alimento(prompt: str):
46
+ return funciones.getSustitucion(prompt)
47
+
48
+ #ENTRENAMIENTO
49
+
50
+ #1.- Obtener distribuci贸n de grupos musculares.
51
+ @app.post(
52
+ "/distribucion_musculos/",
53
+ tags=["Entrenamiento"],
54
+ summary="1.- Obtener Distribuci贸n de Grupos Musculares")
55
+ async def macronutrientes(prompt: str):
56
+ return funciones.getDistribucionGruposMusculares(prompt)
57
+
58
+ #2.- Obtener ejercicios.
59
+ @app.post(
60
+ "/ejercicios/",
61
+ tags=["Entrenamiento"],
62
+ summary="2.- Obtener Selecci贸n de Ejercicios")
63
+ async def macronutrientes(prompt: str):
64
+ return funciones.getEjercicios(prompt)
65
+
66
+ #3.- Obtener distribuci贸n por bloques.
67
+ @app.post(
68
+ "/bloques/",
69
+ tags=["Entrenamiento"],
70
+ summary="3A.- Obtener Distribuci贸n de Bloques")
71
+ async def macronutrientes(prompt: str):
72
+ return funciones.getBloques(prompt)
73
+
74
+ #4.- Obtener distribuci贸n en circuito.
75
+ @app.post(
76
+ "/circuito/",
77
+ tags=["Entrenamiento"],
78
+ summary="3B.- Obtener Distribuci贸n en Circuito")
79
+ async def macronutrientes(prompt: str):
80
+ return funciones.getCircuito(prompt)
81
+
82
+ #5.- Obtener distribuci贸n en sumatoria.
83
+ @app.post(
84
+ "/sumatoria/",
85
+ tags=["Entrenamiento"],
86
+ summary="3C.- Obtener Distribuci贸n en Sumatoria")
87
+ async def macronutrientes(prompt: str):
88
+ return funciones.getSumatoria(prompt)