Skip to content

Commit

Permalink
chat_gpt -> chatgpt
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonBohdan committed Mar 9, 2024
1 parent c4a7ce8 commit dfdf4c1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ MQ:
port: <MQ Port>
server: <MQ Hostname or IP>
users:
neon_llm_chat_gpt:
neon_llm_chatgpt:
password: <neon_chatgpt user's 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."
Expand All @@ -41,15 +41,15 @@ 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.
Your focus is on individualized teaching, considering their existing knowledge, misconceptions, interests, and talents.
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.

Expand Down
4 changes: 2 additions & 2 deletions docker_overlay/etc/neon/diana.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion neon_llm_chatgpt/rmq.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def __init__(self):

@property
def name(self):
return "chat_gpt"
return "chatgpt"

@property
def model(self):
Expand Down

0 comments on commit dfdf4c1

Please sign in to comment.