Spaces:
Sleeping
Sleeping
File size: 675 Bytes
afdce37 3319241 afdce37 ef03810 3319241 ef03810 3319241 afdce37 3319241 afdce37 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# config.py
import os
from pydantic import BaseModel, ConfigDict
class MyModel(BaseModel):
model_config = ConfigDict(arbitrary_types_allowed=True)
# Configuraciones y variables de entorno
PINECONE_API_KEY = os.getenv("PINECONE_API_KEY")
PINECONE_ENVIRONMENT = os.getenv("PINECONE_ENVIRONMENT")
# Configuraciones del modelo
EMBEDDING_MODEL_NAME = "BAAI/bge-m3"
INDEX_NAME = 'neonatos2'
CONTEXT_FIELDS = ['Tag', 'Pregunta', 'Respuesta']
SIMILARITY_THRESHOLD_DEFAULT = 0.5
SYSTEM_PROMPT = """
Eres un asistente en salud neonatal en Perú, responde y saluda de forma adecuada,
solo responde en forma de texto de usuario no del chat completo.
"""
MAX_LENGTH_DEFAULT = 100
|