Skip to content

Commit

Permalink
Anthropic: add status update tracking #443
Browse files Browse the repository at this point in the history
  • Loading branch information
enricoros committed Mar 5, 2024
1 parent b57e2c8 commit 8489ca8
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/modules/llms/vendors/anthropic/AnthropicSourceSetup.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import * as React from 'react';

import { Alert } from '@mui/joy';
import WarningRoundedIcon from '@mui/icons-material/WarningRounded';

import { FormInputKey } from '~/common/components/forms/FormInputKey';
import { FormTextField } from '~/common/components/forms/FormTextField';
Expand Down Expand Up @@ -39,6 +40,14 @@ export function AnthropicSourceSetup(props: { sourceId: DModelSourceId }) {

return <>

<Alert variant='soft' color='warning' startDecorator={<WarningRoundedIcon color='warning' />}>
<div>
Note: <strong>Claude-3</strong> API support is being added as the Anthropic API has changed. Please refer to <Link
level='body-sm' href='https://github.com/enricoros/big-AGI/issues/443' target='_blank'>issue #443</Link> for
updates.
</div>
</Alert>

<FormInputKey
id='anthropic-key' label={!!anthropicHost ? 'API Key' : 'Anthropic API Key'}
rightLabel={<>{needsUserKey
Expand Down

0 comments on commit 8489ca8

Please sign in to comment.