diff --git a/README.md b/README.md index b7e677e..0d7451c 100644 --- a/README.md +++ b/README.md @@ -25,10 +25,10 @@ MQ: port: server: users: - neon_llm_chat_gpt: + neon_llm_chatgpt: password: user: neon_chatgpt -LLM_CHAT_GPT: +LLM_CHATGPT: key: "" model: "gpt-3.5-turbo" role: "You are trying to give a short answer in less than 40 words." @@ -41,7 +41,7 @@ To add support for Chatbotsforum personas, a list of names and prompts can be ad to configuration: ```yaml llm_bots: - chat_gpt: + chatgpt: - name: tutor description: | You are an AI bot that specializes in tutoring and guiding learners. @@ -49,7 +49,7 @@ llm_bots: Emphasize personalized learning, mimicking the role of a dedicated tutor for each student. You're attempting to provide a concise response within a 40-word limit. ``` -> `chat_gpt` is the MQ service name for this service; each bot has a `name` that +> `chatgpt` is the MQ service name for this service; each bot has a `name` that > is used to identify the persona in chats and `description` is the prompt passed > to ChatGPT. diff --git a/docker_overlay/etc/neon/diana.yaml b/docker_overlay/etc/neon/diana.yaml index 0a422e7..f0ba5f0 100644 --- a/docker_overlay/etc/neon/diana.yaml +++ b/docker_overlay/etc/neon/diana.yaml @@ -15,14 +15,14 @@ MQ: mq_handler: user: neon_api_utils password: Klatchat2021 -LLM_CHAT_GPT: +LLM_CHATGPT: model: "gpt-3.5-turbo" role: "You are trying to give a short answer in less than 40 words." context_depth: 3 max_tokens: 100 num_parallel_processes: 2 #llm_bots: -# chat_gpt: +# chatgpt: # - name: urban_logic # description: | # You are an AI bot that specializes in smart city planning. diff --git a/neon_llm_chatgpt/rmq.py b/neon_llm_chatgpt/rmq.py index 117b202..4f00fc3 100644 --- a/neon_llm_chatgpt/rmq.py +++ b/neon_llm_chatgpt/rmq.py @@ -39,7 +39,7 @@ def __init__(self): @property def name(self): - return "chat_gpt" + return "chatgpt" @property def model(self):