fix: Correct Default Model Name in Response Sender and Update Anthropics 🤖 (#1208)

* feat: add claude-2.1 to default anthropic models

* chore: remove console log in NavLinks

* fix: issue with response sender not using model name, change anthropic default value to Claude

* fix: preset will not be selected on edit
This commit is contained in:
Danny Avila 2023-11-22 18:29:09 -05:00 committed by GitHub
parent f3402401f1
commit 5e6f8cbce7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 6 additions and 6 deletions

View file

@ -98,6 +98,7 @@ const PresetItems: FC<{
className="m-0 h-full rounded-md p-2 px-4 text-gray-400 hover:text-gray-700 dark:bg-gray-700 dark:text-gray-400 dark:hover:text-gray-200 sm:invisible sm:group-hover:visible"
onClick={(e) => {
e.preventDefault();
e.stopPropagation();
onChangePreset(preset);
}}
>

View file

@ -41,8 +41,6 @@ function NavLinks() {
conversation.conversationId !== 'new' &&
conversation.conversationId !== 'search';
console.log('NavLinks', conversation, exportable);
const clickHandler = () => {
if (exportable) {
setShowExports(true);