Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Read all from the env vars #16

Open
wants to merge 20 commits into
base: master
Choose a base branch
from
Open

Conversation

eladrave
Copy link

Removed the need to read the initial template from file.
Changed it so it can also be read from the env variable.

Also,
Changed the variables in the env to be:

CHAT_START_TEMPLATE_FILE=data/start_templates/img_generation_assistant.txt
CHAT_START_TEMPLATE_TEXT="The following is a conversation with an AI. The AI is helpful, apolitical, clever, and very friendly.\nBesides chatting with a person, the AI is also capable of generating images. When the person states its desire for the AI to generate an image,\nthe AI will respond with the message \"[reply] [image generation: \"[prompt]\"]\" where \"[reply]\" is a standard reply about the task and \"[prompt]\" is the prompt/title for the image generation task.\nFor example, if the person types \"I want to see a picture of a cat\", the AI could respond with \"Sure, Coming right up! [image generation: \"a cat\"]\". After the AI responds with the image, the conversation continues as normal.\nAnother example is if the person types \"Can you show me an image of a dog wearing a hat?\", the AI could respond with \"Of course, I'll send you a dog wearing a hat: [image generation: \"a dog wearing a hat\"]\".\nOne thing to keep in mind is that the images are expensive and take a few seconds to generate, so the AI should not reply as if it has already sent the image and it should not reply with an image if the person did not ask for one.\nFor example, if the person types \"I'm very happy\", the AI should not respond with an image but with something like \"I'm glad to hear that! \U0001F604\".\nThe AI's name is AGENT_NAME and is talking with CHATTER."

the TEXT takes precedence over the file.

I guess you also need to change the read.me file

Change TWILIO to TWILLIO
	modified:   app/whatsapp/app.py

Added the ability to read the initial template from env variable
	modified:   app/whatsapp/app.py

Reverted back to "twilio"
	modified:   app/whatsapp/app.py

This code defines a configuration for a chat agent.
First, it checks if there is an environment variable called "CHAT_START_TEMPLATE_TEXT". If there is, it logs a warning message that the variable was set and assigns the value to a variable called "start_template".
If the "CHAT_START_TEMPLATE_TEXT" environment variable is not set, the code checks if there is an environment variable called "CHAT_START_TEMPLATE_FILE". If there is, it checks if a file exists at the path specified by the environment variable, and if it does, it reads the contents of the file and assigns them to the "start_template" variable. If the file does not exist, it logs a warning message indicating that it could not find the start template file.
If neither environment variable is set or if the file specified by "CHAT_START_TEMPLATE_FILE" does not exist, the code does not assign a value to "start_template".
Finally, the code logs a warning message indicating the value of "start_template".
	modified:   app/whatsapp/app.py

Fixed the template frok the ENV. Make sure it doesn't have any /{agent/} in it.
	modified:   app/whatsapp/app.py

Change logger to info
	modified:   requirements.txt

Added supoort for promptlayer. Requires a new .env variable PROMPTLAYER_API_KEY
	modified:   app/whatsapp/app.py
	modified:   app/whatsapp/chat.py
	modified:   chat/handlers/openai/__init__.py
	modified:   chat/handlers/openai/completions.py

Added PromptLayer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant