2023-05-11 09:03:03 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module DiscourseAi
|
|
|
|
module AiBot
|
|
|
|
class AnthropicBot < Bot
|
|
|
|
def self.can_reply_as?(bot_user)
|
2023-07-26 21:24:44 -04:00
|
|
|
bot_user.id == DiscourseAi::AiBot::EntryPoint::CLAUDE_V2_ID
|
2023-05-11 09:03:03 -04:00
|
|
|
end
|
|
|
|
|
FEATURE: UI to update ai personas on admin page (#290)
Introduces a UI to manage customizable personas (admin only feature)
Part of the change was some extensive internal refactoring:
- AIBot now has a persona set in the constructor, once set it never changes
- Command now takes in bot as a constructor param, so it has the correct persona and is not generating AIBot objects on the fly
- Added a .prettierignore file, due to the way ALE is configured in nvim it is a pre-req for prettier to work
- Adds a bunch of validations on the AIPersona model, system personas (artist/creative etc...) are all seeded. We now ensure
- name uniqueness, and only allow certain properties to be touched for system personas.
- (JS note) the client side design takes advantage of nested routes, the parent route for personas gets all the personas via this.store.findAll("ai-persona") then child routes simply reach into this model to find a particular persona.
- (JS note) data is sideloaded into the ai-persona model the meta property supplied from the controller, resultSetMeta
- This removes ai_bot_enabled_personas and ai_bot_enabled_chat_commands, both should be controlled from the UI on a per persona basis
- Fixes a long standing bug in token accounting ... we were doing to_json.length instead of to_json.to_s.length
- Amended it so {commands} are always inserted at the end unconditionally, no need to add it to the template of the system message as it just confuses things
- Adds a concept of required_commands to stock personas, these are commands that must be configured for this stock persona to show up.
- Refactored tests so we stop requiring inference_stubs, it was very confusing to need it, added to plugin.rb for now which at least is clearer
- Migrates the persona selector to gjs
---------
Co-authored-by: Joffrey JAFFEUX <j.jaffeux@gmail.com>
Co-authored-by: Martin Brennan <martin@discourse.org>
2023-11-21 00:56:43 -05:00
|
|
|
def bot_prompt_with_topic_context(post, allow_commands:)
|
|
|
|
super(post, allow_commands: allow_commands).join("\n\n") + "\n\nAssistant:"
|
2023-05-11 09:03:03 -04:00
|
|
|
end
|
|
|
|
|
FEATURE: UI to update ai personas on admin page (#290)
Introduces a UI to manage customizable personas (admin only feature)
Part of the change was some extensive internal refactoring:
- AIBot now has a persona set in the constructor, once set it never changes
- Command now takes in bot as a constructor param, so it has the correct persona and is not generating AIBot objects on the fly
- Added a .prettierignore file, due to the way ALE is configured in nvim it is a pre-req for prettier to work
- Adds a bunch of validations on the AIPersona model, system personas (artist/creative etc...) are all seeded. We now ensure
- name uniqueness, and only allow certain properties to be touched for system personas.
- (JS note) the client side design takes advantage of nested routes, the parent route for personas gets all the personas via this.store.findAll("ai-persona") then child routes simply reach into this model to find a particular persona.
- (JS note) data is sideloaded into the ai-persona model the meta property supplied from the controller, resultSetMeta
- This removes ai_bot_enabled_personas and ai_bot_enabled_chat_commands, both should be controlled from the UI on a per persona basis
- Fixes a long standing bug in token accounting ... we were doing to_json.length instead of to_json.to_s.length
- Amended it so {commands} are always inserted at the end unconditionally, no need to add it to the template of the system message as it just confuses things
- Adds a concept of required_commands to stock personas, these are commands that must be configured for this stock persona to show up.
- Refactored tests so we stop requiring inference_stubs, it was very confusing to need it, added to plugin.rb for now which at least is clearer
- Migrates the persona selector to gjs
---------
Co-authored-by: Joffrey JAFFEUX <j.jaffeux@gmail.com>
Co-authored-by: Martin Brennan <martin@discourse.org>
2023-11-21 00:56:43 -05:00
|
|
|
def prompt_limit(allow_commands: true)
|
|
|
|
# no side channel for commands, so we can ignore allow commands
|
2023-07-26 21:24:44 -04:00
|
|
|
50_000 # https://console.anthropic.com/docs/prompt-design#what-is-a-prompt
|
2023-05-11 09:03:03 -04:00
|
|
|
end
|
|
|
|
|
2023-06-19 18:45:31 -04:00
|
|
|
def title_prompt(post)
|
|
|
|
super(post).join("\n\n") + "\n\nAssistant:"
|
|
|
|
end
|
|
|
|
|
2023-05-23 09:08:17 -04:00
|
|
|
def get_delta(partial, context)
|
2023-08-28 20:57:36 -04:00
|
|
|
completion = partial[:completion]
|
|
|
|
if completion&.start_with?(" ") && !context[:processed_first]
|
|
|
|
completion = completion[1..-1]
|
|
|
|
context[:processed_first] = true
|
|
|
|
end
|
|
|
|
completion
|
2023-05-23 09:08:17 -04:00
|
|
|
end
|
|
|
|
|
2023-08-31 21:48:51 -04:00
|
|
|
def tokenizer
|
|
|
|
DiscourseAi::Tokenizer::AnthropicTokenizer
|
|
|
|
end
|
|
|
|
|
2023-05-11 09:03:03 -04:00
|
|
|
private
|
|
|
|
|
2023-06-19 18:45:31 -04:00
|
|
|
def build_message(poster_username, content, system: false, function: nil)
|
2023-05-11 09:03:03 -04:00
|
|
|
role = poster_username == bot_user.username ? "Assistant" : "Human"
|
|
|
|
|
2023-11-23 14:39:56 -05:00
|
|
|
if system || function
|
|
|
|
content
|
|
|
|
else
|
|
|
|
"#{role}: #{content}"
|
|
|
|
end
|
2023-05-11 09:03:03 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def model_for
|
2023-07-26 21:24:44 -04:00
|
|
|
"claude-2"
|
2023-05-11 09:03:03 -04:00
|
|
|
end
|
|
|
|
|
2023-05-16 13:38:21 -04:00
|
|
|
def get_updated_title(prompt)
|
|
|
|
DiscourseAi::Inference::AnthropicCompletions.perform!(
|
|
|
|
prompt,
|
|
|
|
model_for,
|
2023-08-23 17:20:24 -04:00
|
|
|
temperature: 0.4,
|
2023-05-16 13:38:21 -04:00
|
|
|
max_tokens: 40,
|
|
|
|
).dig(:completion)
|
|
|
|
end
|
|
|
|
|
2023-10-31 17:41:31 -04:00
|
|
|
def submit_prompt(prompt, post: nil, prefer_low_cost: false, &blk)
|
2023-05-11 09:03:03 -04:00
|
|
|
DiscourseAi::Inference::AnthropicCompletions.perform!(
|
|
|
|
prompt,
|
|
|
|
model_for,
|
|
|
|
temperature: 0.4,
|
|
|
|
max_tokens: 3000,
|
2023-10-31 17:41:31 -04:00
|
|
|
post: post,
|
2023-11-23 14:39:56 -05:00
|
|
|
stop_sequences: ["\n\nHuman:", "</function_calls>"],
|
2023-05-11 09:03:03 -04:00
|
|
|
&blk
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|