PROYECTO_2024 / config.py
C2MV's picture
Create config.py
1a63cc9 verified
raw
history blame
994 Bytes
# config.py
import os
from pydantic import BaseModel, ConfigDict
# Clase de configuraci贸n usando pydantic
class MyModel(BaseModel):
model_config = ConfigDict(arbitrary_types_allowed=True)
# Configuraci贸n de la API de Pinecone
PINECONE_API_KEY = os.getenv("PINECONE_API_KEY")
PINECONE_ENVIRONMENT = os.getenv("PINECONE_ENVIRONMENT")
# Configuraciones del modelo
EMBEDDING_MODEL_NAME = "BAAI/bge-m3"
EMBED_MODEL = 'BGE_M3-1024'
DIMENSIONS = 1024
# Nombre del 铆ndice de Pinecone
INDEX_NAME = 'neonatos2'
# Campos de contexto y enlace
CONTEXT_FIELDS = ['Tag', 'Pregunta', 'Respuesta']
LINK_FIELDS = ['Tag', 'Respuesta']
# Umbral de similitud por defecto
SIMILARITY_THRESHOLD_DEFAULT = 0.5
# Prompt del sistema para Yi-Coder
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.
"""
# Longitud m谩xima por defecto para las respuestas generadas
MAX_LENGTH_DEFAULT = 100