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

Rename chat_gpt -> chatgpt #15

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading