Cloud Coaching - Select AI in Oracle APEX

Поделиться
HTML-код
  • Опубликовано: 30 окт 2024

Комментарии • 10

  • @RajatPanda-k7s
    @RajatPanda-k7s Месяц назад

    Great! very useful information. Helped me deciding the business use cases

  • @bogdanf
    @bogdanf 2 месяца назад +1

    Fantastic video!

  • @artemmatovka7936
    @artemmatovka7936 3 месяца назад +1

    Great event thank you Violeta and Christina 🎉🎉🎉

  • @senthilmurugan
    @senthilmurugan 3 месяца назад +1

    very useful presentation to create the AI apex application in oracle

  • @Dmitro88
    @Dmitro88 3 месяца назад +1

    Genial

  • @Dmitro88
    @Dmitro88 3 месяца назад +1

    👍🏻

  • @ioannisremediakis7323
    @ioannisremediakis7323 3 месяца назад

    When adding multiple tables in the object list in the profile, will it understand the foreign key constraints so you can have questions based on descriptions on the lookup tables for example? Can you give an example of how to contract the create_profile?

    • @oracledevs
      @oracledevs  3 месяца назад

      Yes, adding multiple tables in the object list in the profile can enable AI models to understand foreign key constraints and allow you to ask questions based on descriptions in lookup tables. When you define the relationships and constraints properly, the AI can leverage these to provide more accurate and contextually relevant responses.
      To create a profile that includes multiple tables with foreign key constraints in Oracle APEX using the approach similar to the Select AI example, follow these steps:
      1. Define the Tables and Relationships:
      Ensure your database tables are properly defined with foreign key constraints. E.g:
      CREATE TABLE departments (
      department_id NUMBER PRIMARY KEY,
      department_name VARCHAR2(100)
      );
      CREATE TABLE employees (
      employee_id NUMBER PRIMARY KEY,
      employee_name VARCHAR2(100),
      department_id NUMBER,
      CONSTRAINT fk_department
      FOREIGN KEY (department_id) REFERENCES departments(department_id)
      );
      2. Create the Profile:
      Define a profile in your APEX application that includes these tables and their relationships. The profile configuration will help the AI understand the data context and relationships.
      You can create the profile with the code provided in the demo with a small modification for adding the foreign key relationships. E.g:
      BEGIN
      DBMS_CLOUD_AI.create_profile(
      profile_name => 'OPENAI_APEX',
      attributes => '{
      "provider": "openai",
      "credential_name": "OPENAI_CRED_APEX",
      "object_list": [
      {
      "owner": "",
      "name": "employees",
      "primary_key": "employee_id",
      "columns": ["employee_id", "employee_name", "department_id"]
      },
      {
      "owner": "",
      "name": "departments",
      "primary_key": "department_id",
      "columns": ["department_id", "department_name"]
      }
      ],
      "foreign_keys": [
      {
      "child_table": "employees",
      "child_column": "department_id",
      "parent_table": "departments",
      "parent_column": "department_id"
      }
      ]
      }'
      );
      END;
      /
      For more info please visit this article: medium.com/@cristina.varas98/enhancing-data-analysis-with-select-ai-in-oracle-apex-9d00b070a073

  • @nesdi6653
    @nesdi6653 3 месяца назад

    This video has better audio, sessions need to do AI audio processing.

  • @callicantzaro1724
    @callicantzaro1724 2 месяца назад +1

    Great video!