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

docs(readme): update examples to use claude-2 #52

Merged
merged 1 commit into from
Jul 11, 2023
Merged
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
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const anthropic = new Anthropic({

async function main() {
const completion = await anthropic.completions.create({
model: 'claude-1',
model: 'claude-2',
max_tokens_to_sample: 300,
prompt: `${Anthropic.HUMAN_PROMPT} how does a court case get to the Supreme Court? ${Anthropic.AI_PROMPT}`,
});
Expand All @@ -121,7 +121,7 @@ const anthropic = new Anthropic();

const stream = await anthropic.completions.create({
prompt: `${Anthropic.HUMAN_PROMPT} Your prompt here ${Anthropic.AI_PROMPT}`,
model: 'claude-1',
model: 'claude-2',
stream: true,
max_tokens_to_sample: 300,
});
Expand Down Expand Up @@ -149,7 +149,7 @@ async function main() {
const params: Anthropic.CompletionCreateParams = {
prompt: `${Anthropic.HUMAN_PROMPT} how does a court case get to the Supreme Court? ${Anthropic.AI_PROMPT}`,
max_tokens_to_sample: 300,
model: 'claude-1',
model: 'claude-2',
};
const completion: Anthropic.Completion = await anthropic.completions.create(params);
}
Expand All @@ -170,7 +170,7 @@ async function main() {
.create({
prompt: `${Anthropic.HUMAN_PROMPT} Your prompt here ${Anthropic.AI_PROMPT}`,
max_tokens_to_sample: 300,
model: 'claude-1',
model: 'claude-2',
})
.catch((err) => {
if (err instanceof Anthropic.APIError) {
Expand Down Expand Up @@ -216,7 +216,7 @@ await anthropic.completions.create(
{
prompt: `${Anthropic.HUMAN_PROMPT} Can you help me effectively ask for a raise at work? ${Anthropic.AI_PROMPT}`,
max_tokens_to_sample: 300,
model: 'claude-1',
model: 'claude-2',
},
{
maxRetries: 5,
Expand All @@ -241,7 +241,7 @@ await anthropic.completions.create(
{
prompt: `${Anthropic.HUMAN_PROMPT} Where can I get a good coffee in my neighbourhood? ${Anthropic.AI_PROMPT}`,
max_tokens_to_sample: 300,
model: 'claude-1',
model: 'claude-2',
},
{
timeout: 5 * 1000,
Expand Down Expand Up @@ -276,7 +276,7 @@ await anthropic.completions.create(
{
prompt: `${Anthropic.HUMAN_PROMPT} How does a court case get to the Supreme Court? ${Anthropic.AI_PROMPT}`,
max_tokens_to_sample: 300,
model: 'claude-1',
model: 'claude-2',
},
{
baseURL: 'http://localhost:8080/test-api',
Expand Down
Loading