This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import json | |
| import openai | |
| from pydantic import BaseModel, PrivateAttr | |
| from src.common.config import Config | |
| openai.api_key = Config.OPEN_AI_API_KEY | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import json | |
| import threading | |
| import boto3 | |
| from configurations.config_store import Config | |
| from src.routes.frontapp.tasks import ( | |
| add_tags_to_conversation, | |
| reply_to_front_message, | |
| ) |
OlderNewer