|
104 | 104 | },
|
105 | 105 | {
|
106 | 106 | "cell_type": "code",
|
107 |
| - "execution_count": 12, |
| 107 | + "execution_count": 1, |
108 | 108 | "id": "d89fbadf-9e42-495d-b0f2-a2e0b4ff69ce",
|
109 | 109 | "metadata": {},
|
110 | 110 | "outputs": [
|
|
114 | 114 | "True"
|
115 | 115 | ]
|
116 | 116 | },
|
117 |
| - "execution_count": 12, |
| 117 | + "execution_count": 1, |
118 | 118 | "metadata": {},
|
119 | 119 | "output_type": "execute_result"
|
120 | 120 | }
|
|
136 | 136 | },
|
137 | 137 | {
|
138 | 138 | "cell_type": "code",
|
139 |
| - "execution_count": null, |
| 139 | + "execution_count": 2, |
140 | 140 | "id": "37409412-ad44-41bd-baa5-9148ea3cec19",
|
141 | 141 | "metadata": {},
|
142 | 142 | "outputs": [],
|
|
146 | 146 | },
|
147 | 147 | {
|
148 | 148 | "cell_type": "code",
|
149 |
| - "execution_count": 16, |
| 149 | + "execution_count": 3, |
150 | 150 | "id": "0fe33a13-ff20-4666-9416-14d402f7a247",
|
151 | 151 | "metadata": {},
|
152 | 152 | "outputs": [
|
153 | 153 | {
|
154 | 154 | "name": "stdout",
|
155 | 155 | "output_type": "stream",
|
156 | 156 | "text": [
|
157 |
| - "The ethical implications of AI becoming more powerful are complex and multifaceted. Some key issues to consider include:\n", |
| 157 | + "There are a number of important ethical considerations as AI systems become more advanced and powerful:\n", |
158 | 158 | "\n",
|
159 |
| - "Privacy and data rights: As AI systems become more advanced, they will be able to collect, analyze and use vast amounts of personal data. This raises concerns about individual privacy, data rights, and the potential for misuse or abuse of that information.\n", |
| 159 | + "Privacy and data rights - As AI systems become more sophisticated at processing and analyzing large datasets, there are significant risks to individual privacy and the rights over personal data. Careful regulation and controls will be needed.\n", |
160 | 160 | "\n",
|
161 |
| - "Algorithmic bias and fairness: AI systems can reflect and amplify the biases present in their training data and algorithms. This could lead to unfair or discriminatory decision-making, with significant impacts on individuals and society.\n", |
| 161 | + "Bias and fairness - AI systems can perpetuate or even amplify existing biases in data and decision-making. Ensuring AI is developed and deployed equitably is crucial.\n", |
162 | 162 | "\n",
|
163 |
| - "Transparency and accountability: As AI systems become more opaque and complex, it may be difficult to understand how they arrive at decisions. This lack of transparency makes it challenging to hold AI developers and deployers accountable.\n", |
| 163 | + "Accountability and transparency - As AI is used for high-stakes decisions, there need to be clear lines of accountability and transparency around how the systems work.\n", |
164 | 164 | "\n",
|
165 |
| - "Existential risk: Some experts worry that as AI becomes superintelligent, it could pose an existential threat to humanity if not developed and deployed with extreme care and safeguards.\n", |
| 165 | + "Alignment with human values - As AI capabilities grow, it will be critical that the systems are designed to be aligned with human ethics and values, not just optimized for narrow objectives.\n", |
166 | 166 | "\n",
|
167 |
| - "Employment and economic disruption: AI automation may displace many human workers, leading to job loss and economic upheaval. This could exacerbate inequality and social instability.\n", |
| 167 | + "Existential risk - Some experts are concerned that advanced AI systems could pose existential risks to humanity if not developed and controlled extremely carefully.\n", |
168 | 168 | "\n",
|
169 |
| - "These are just some of the key ethical implications. Ultimately, the responsible development and use of powerful AI will require careful consideration of these issues, as well as robust governance frameworks, public engagement, and ongoing ethical deliberation.\n" |
| 169 | + "These are just some of the key ethical issues. Grappling with the societal implications of transformative AI will require careful interdisciplinary collaboration between AI developers, ethicists, policymakers and the public.\n" |
170 | 170 | ]
|
171 | 171 | }
|
172 | 172 | ],
|
|
360 | 360 | ]
|
361 | 361 | },
|
362 | 362 | {
|
363 |
| - "cell_type": "code", |
364 |
| - "execution_count": null, |
365 |
| - "id": "f85720af-a7d9-43f1-af49-83b35ff49993", |
| 363 | + "cell_type": "markdown", |
| 364 | + "id": "e1f3e531", |
366 | 365 | "metadata": {},
|
367 |
| - "outputs": [], |
368 |
| - "source": [] |
| 366 | + "source": [ |
| 367 | + "### Tools in Claude3" |
| 368 | + ] |
369 | 369 | },
|
370 | 370 | {
|
371 | 371 | "cell_type": "code",
|
372 |
| - "execution_count": null, |
| 372 | + "execution_count": 5, |
373 | 373 | "id": "7bbedb3d-212c-49a4-9b1a-3dd29025e9ee",
|
374 | 374 | "metadata": {},
|
375 |
| - "outputs": [], |
376 |
| - "source": [] |
| 375 | + "outputs": [ |
| 376 | + { |
| 377 | + "name": "stdout", |
| 378 | + "output_type": "stream", |
| 379 | + "text": [ |
| 380 | + "To get the current weather in San Francisco, I can use the get_weather function. Let me fetch that information for you.\n" |
| 381 | + ] |
| 382 | + } |
| 383 | + ], |
| 384 | + "source": [ |
| 385 | + "import anthropic\n", |
| 386 | + "\n", |
| 387 | + "client = anthropic.Anthropic()\n", |
| 388 | + "\n", |
| 389 | + "response = client.messages.create(\n", |
| 390 | + " model=\"claude-3-5-sonnet-20240620\",\n", |
| 391 | + " max_tokens=1024,\n", |
| 392 | + " tools=[\n", |
| 393 | + " {\n", |
| 394 | + " \"name\": \"get_weather\",\n", |
| 395 | + " \"description\": \"Get the current weather in a given location\",\n", |
| 396 | + " \"input_schema\": {\n", |
| 397 | + " \"type\": \"object\",\n", |
| 398 | + " \"properties\": {\n", |
| 399 | + " \"location\": {\n", |
| 400 | + " \"type\": \"string\",\n", |
| 401 | + " \"description\": \"The city and state, e.g. San Francisco, CA\",\n", |
| 402 | + " }\n", |
| 403 | + " },\n", |
| 404 | + " \"required\": [\"location\"],\n", |
| 405 | + " },\n", |
| 406 | + " }\n", |
| 407 | + " ],\n", |
| 408 | + " messages=[{\"role\": \"user\", \"content\": \"What's the weather like in San Francisco?\"}],\n", |
| 409 | + ")\n", |
| 410 | + "print(response.content[0].text)" |
| 411 | + ] |
377 | 412 | },
|
378 | 413 | {
|
379 |
| - "cell_type": "code", |
380 |
| - "execution_count": null, |
381 |
| - "id": "fd97c3f4-e4b1-40dc-8651-3b01866dac60", |
| 414 | + "cell_type": "markdown", |
| 415 | + "id": "8d7aea17", |
382 | 416 | "metadata": {},
|
383 |
| - "outputs": [], |
384 |
| - "source": [] |
| 417 | + "source": [ |
| 418 | + "### Simple Tool" |
| 419 | + ] |
385 | 420 | },
|
386 | 421 | {
|
387 | 422 | "cell_type": "code",
|
388 |
| - "execution_count": null, |
| 423 | + "execution_count": 6, |
389 | 424 | "id": "18e73651-cd86-4053-9528-5ea1da7003b6",
|
390 | 425 | "metadata": {},
|
391 |
| - "outputs": [], |
392 |
| - "source": [] |
| 426 | + "outputs": [ |
| 427 | + { |
| 428 | + "name": "stdout", |
| 429 | + "output_type": "stream", |
| 430 | + "text": [ |
| 431 | + "18537750266060\n" |
| 432 | + ] |
| 433 | + } |
| 434 | + ], |
| 435 | + "source": [ |
| 436 | + "from anthropic import Anthropic\n", |
| 437 | + "client = Anthropic()\n", |
| 438 | + "\n", |
| 439 | + "# A relatively simple math problem\n", |
| 440 | + "response = client.messages.create(\n", |
| 441 | + " model=\"claude-3-5-sonnet-20240620\",\n", |
| 442 | + " messages=[\n", |
| 443 | + " {\n", |
| 444 | + " 'role':'user',\n", |
| 445 | + " 'content':\"Multiply 1984135 by 9343116. Only repond with the result.\"\n", |
| 446 | + " }\n", |
| 447 | + " ],\n", |
| 448 | + " max_tokens=400\n", |
| 449 | + ")\n", |
| 450 | + "\n", |
| 451 | + "print(response.content[0].text)" |
| 452 | + ] |
393 | 453 | },
|
394 | 454 | {
|
395 | 455 | "cell_type": "code",
|
396 |
| - "execution_count": null, |
| 456 | + "execution_count": 7, |
397 | 457 | "id": "a90d4e7b-3ae9-41e5-88bd-fe6ae2922195",
|
398 | 458 | "metadata": {},
|
399 | 459 | "outputs": [],
|
400 |
| - "source": [] |
| 460 | + "source": [ |
| 461 | + "# Define the calculator function\n", |
| 462 | + "def calculator(operation, operand1, operand2):\n", |
| 463 | + " if operation == \"add\":\n", |
| 464 | + " return operand1 + operand2\n", |
| 465 | + " elif operation == \"subtract\":\n", |
| 466 | + " return operand1 - operand2\n", |
| 467 | + " elif operation == \"multiply\":\n", |
| 468 | + " return operand1 * operand2\n", |
| 469 | + " elif operation == \"divide\":\n", |
| 470 | + " if operand2 == 0:\n", |
| 471 | + " raise ValueError(\"Cannot divide by zero.\")\n", |
| 472 | + " return operand1 / operand2\n", |
| 473 | + " else:\n", |
| 474 | + " raise ValueError(f\"Unsupported operation: {operation}\")" |
| 475 | + ] |
401 | 476 | },
|
402 | 477 | {
|
403 | 478 | "cell_type": "code",
|
404 |
| - "execution_count": null, |
| 479 | + "execution_count": 8, |
405 | 480 | "id": "029d0807-24d6-4e9e-af83-e051256d7e85",
|
406 | 481 | "metadata": {},
|
407 |
| - "outputs": [], |
408 |
| - "source": [] |
| 482 | + "outputs": [ |
| 483 | + { |
| 484 | + "data": { |
| 485 | + "text/plain": [ |
| 486 | + "13" |
| 487 | + ] |
| 488 | + }, |
| 489 | + "execution_count": 8, |
| 490 | + "metadata": {}, |
| 491 | + "output_type": "execute_result" |
| 492 | + } |
| 493 | + ], |
| 494 | + "source": [ |
| 495 | + "calculator (\"add\", 10 ,3 )" |
| 496 | + ] |
409 | 497 | },
|
410 | 498 | {
|
411 | 499 | "cell_type": "code",
|
412 |
| - "execution_count": null, |
| 500 | + "execution_count": 12, |
413 | 501 | "id": "3f4b8e96-84fe-4e63-9a7f-4d79057cbf60",
|
414 | 502 | "metadata": {},
|
415 |
| - "outputs": [], |
416 |
| - "source": [] |
| 503 | + "outputs": [ |
| 504 | + { |
| 505 | + "data": { |
| 506 | + "text/plain": [ |
| 507 | + "{'name': 'send_email',\n", |
| 508 | + " 'description': 'Sends an email ot the specified receipient with the given subject and body.',\n", |
| 509 | + " 'input_schema': {'type': 'object',\n", |
| 510 | + " 'properties': {'to': {'type': 'string',\n", |
| 511 | + " 'description': 'The email address of the recipient'},\n", |
| 512 | + " 'subject': {'type': 'string',\n", |
| 513 | + " 'description': 'The subject line of the email'},\n", |
| 514 | + " 'body': {'type': 'string',\n", |
| 515 | + " 'description': 'The content of the email message'}},\n", |
| 516 | + " 'required': ['to', 'subject', 'body']}}" |
| 517 | + ] |
| 518 | + }, |
| 519 | + "execution_count": 12, |
| 520 | + "metadata": {}, |
| 521 | + "output_type": "execute_result" |
| 522 | + } |
| 523 | + ], |
| 524 | + "source": [ |
| 525 | + "# Define the tool for the Send Email\n", |
| 526 | + "{\n", |
| 527 | + " \"name\":\"send_email\",\n", |
| 528 | + " \"description\":\"Sends an email ot the specified receipient with the given subject and body.\",\n", |
| 529 | + " \"input_schema\":{\n", |
| 530 | + " \"type\":\"object\",\n", |
| 531 | + " \"properties\":{\n", |
| 532 | + " \"to\":{\n", |
| 533 | + " \"type\":\"string\",\n", |
| 534 | + " \"description\":\"The email address of the recipient\"\n", |
| 535 | + " },\n", |
| 536 | + " \"subject\":{\n", |
| 537 | + " \"type\":\"string\",\n", |
| 538 | + " \"description\":\"The subject line of the email\"\n", |
| 539 | + " },\n", |
| 540 | + " \"body\":{\n", |
| 541 | + " \"type\":\"string\",\n", |
| 542 | + " \"description\":\"The content of the email message\"\n", |
| 543 | + " }\n", |
| 544 | + " },\n", |
| 545 | + " \"required\":[\"to\",\"subject\",\"body\"]\n", |
| 546 | + " }\n", |
| 547 | + "}" |
| 548 | + ] |
417 | 549 | },
|
418 | 550 | {
|
419 | 551 | "cell_type": "code",
|
420 |
| - "execution_count": null, |
| 552 | + "execution_count": 13, |
421 | 553 | "id": "58c14651-2415-4e5e-87db-3076f9c11665",
|
422 | 554 | "metadata": {},
|
423 |
| - "outputs": [], |
424 |
| - "source": [] |
| 555 | + "outputs": [ |
| 556 | + { |
| 557 | + "data": { |
| 558 | + "text/plain": [ |
| 559 | + "{'name': 'search_product',\n", |
| 560 | + " 'description': 'Search for a product name or keyword and return its current price and availability.',\n", |
| 561 | + " 'input_schema': {'type': 'object',\n", |
| 562 | + " 'properties': {'query': {'type': 'string',\n", |
| 563 | + " 'description': \"The product name or search keyword, e.g. 'iPhone13 Pro' or 'wireless headphones'\"},\n", |
| 564 | + " 'category': {'type': 'string',\n", |
| 565 | + " 'enum': ['electronics', 'clothing', 'home', 'toys', 'sports'],\n", |
| 566 | + " 'description': 'The product category to narrow down the search results'},\n", |
| 567 | + " 'max_price': {'type': 'number',\n", |
| 568 | + " 'description': 'The maximum price of the product, used to filter the search results'}},\n", |
| 569 | + " 'required': ['query']}}" |
| 570 | + ] |
| 571 | + }, |
| 572 | + "execution_count": 13, |
| 573 | + "metadata": {}, |
| 574 | + "output_type": "execute_result" |
| 575 | + } |
| 576 | + ], |
| 577 | + "source": [ |
| 578 | + "# Define the tool for product's search\n", |
| 579 | + "{\n", |
| 580 | + " \"name\":\"search_product\",\n", |
| 581 | + " \"description\":\"Search for a product name or keyword and return its current price and availability.\",\n", |
| 582 | + " \"input_schema\":{\n", |
| 583 | + " \"type\":\"object\",\n", |
| 584 | + " \"properties\":{\n", |
| 585 | + " \"query\":{\n", |
| 586 | + " \"type\":\"string\",\n", |
| 587 | + " \"description\":\"The product name or search keyword, e.g. 'iPhone13 Pro' or 'wireless headphones'\"\n", |
| 588 | + " },\n", |
| 589 | + " \"category\":{\n", |
| 590 | + " \"type\":\"string\",\n", |
| 591 | + " \"enum\":[\"electronics\",\"clothing\",\"home\", \"toys\",\"sports\"],\n", |
| 592 | + " \"description\":\"The product category to narrow down the search results\"\n", |
| 593 | + " },\n", |
| 594 | + " \"max_price\":{\n", |
| 595 | + " \"type\":\"number\",\n", |
| 596 | + " \"description\":\"The maximum price of the product, used to filter the search results\"\n", |
| 597 | + " }\n", |
| 598 | + " },\n", |
| 599 | + " \"required\":[\"query\"]\n", |
| 600 | + " }\n", |
| 601 | + "}" |
| 602 | + ] |
425 | 603 | },
|
426 | 604 | {
|
427 | 605 | "cell_type": "code",
|
428 |
| - "execution_count": null, |
| 606 | + "execution_count": 14, |
429 | 607 | "id": "d05bbb0c-b625-4cf5-9c72-a8dabd020bec",
|
430 | 608 | "metadata": {},
|
431 | 609 | "outputs": [],
|
432 |
| - "source": [] |
| 610 | + "source": [ |
| 611 | + "# define the tool for the calculator function\n", |
| 612 | + "caclulator_tool = {\n", |
| 613 | + " \"name\":\"calculator\",\n", |
| 614 | + " \"description\":\"A simple calculator that performs basic arithmetic operations.\",\n", |
| 615 | + " \"input_schema\":{\n", |
| 616 | + " \"type\":\"object\",\n", |
| 617 | + " \"properties\":{\n", |
| 618 | + " \"operation\":{\n", |
| 619 | + " \"type\":\"string\",\n", |
| 620 | + " \"enum\":[\"add\",\"subtract\",\"multiply\",\"divide\"],\n", |
| 621 | + " \"description\":\"The arithmetic operation to perform.\"\n", |
| 622 | + " },\n", |
| 623 | + " \"operand1\":{\n", |
| 624 | + " \"type\":\"number\",\n", |
| 625 | + " \"description\":\"The first operand.\"\n", |
| 626 | + " },\n", |
| 627 | + " \"operand2\":{\n", |
| 628 | + " \"type\":\"number\",\n", |
| 629 | + " \"description\":\"The second operand.\"\n", |
| 630 | + " }\n", |
| 631 | + " },\n", |
| 632 | + " \"required\":[\"operation\",\"operand1\",\"operand2\"]\n", |
| 633 | + " }\n", |
| 634 | + "}" |
| 635 | + ] |
433 | 636 | },
|
434 | 637 | {
|
435 | 638 | "cell_type": "code",
|
|
528 | 731 | "name": "python",
|
529 | 732 | "nbconvert_exporter": "python",
|
530 | 733 | "pygments_lexer": "ipython3",
|
531 |
| - "version": "3.11.7" |
| 734 | + "version": "3.11.5" |
532 | 735 | }
|
533 | 736 | },
|
534 | 737 | "nbformat": 4,
|
|
0 commit comments