From a1c4c2c46f0ca4568bf72774fae2cf0b38a1ef08 Mon Sep 17 00:00:00 2001 From: Abhishek Singh Date: Fri, 23 Jan 2026 15:34:03 -0800 Subject: [PATCH] Updated docs --- doc/source/user_guide/agent.rst | 5 - doc/source/user_guide/async_agent.rst | 43 ++++++ docs/.buildinfo | 2 +- docs/.buildinfo.bak | 2 +- docs/_sources/user_guide/agent.rst.txt | 5 - docs/_sources/user_guide/async_agent.rst.txt | 43 ++++++ docs/_static/documentation_options.js | 2 +- docs/genindex.html | 48 +++++- docs/index.html | 38 +++-- docs/license.html | 8 +- docs/objects.inv | Bin 2182 -> 2241 bytes docs/search.html | 8 +- docs/searchindex.js | 2 +- docs/user_guide/actions.html | 8 +- docs/user_guide/agent.html | 84 +++++++++-- docs/user_guide/async_agent.html | 151 ++++++++++++++++++- docs/user_guide/async_profile.html | 44 ++++-- docs/user_guide/connection.html | 8 +- docs/user_guide/conversation.html | 8 +- docs/user_guide/credential.html | 8 +- docs/user_guide/installation.html | 8 +- docs/user_guide/introduction.html | 8 +- docs/user_guide/privileges.html | 8 +- docs/user_guide/profile.html | 87 +++++++---- docs/user_guide/profile_attributes.html | 18 +-- docs/user_guide/provider.html | 8 +- docs/user_guide/summary.html | 8 +- docs/user_guide/synthetic_data.html | 8 +- docs/user_guide/vector_index.html | 60 +++++++- 29 files changed, 573 insertions(+), 157 deletions(-) diff --git a/doc/source/user_guide/agent.rst b/doc/source/user_guide/agent.rst index 421988b..ad549e7 100644 --- a/doc/source/user_guide/agent.rst +++ b/doc/source/user_guide/agent.rst @@ -72,11 +72,6 @@ Python layer and persist the tool in the Database using - - ``tool_name`` - ``profile_name`` -.. note:: - - Use ``select_ai.agent.AsyncTool.create_`` for corresponding async - methods. For e.g. ``await select_ai.agent.AsyncTool.create_rag_tool()`` - can be used to create an RAG tool in an async application. .. latex:clearpage:: diff --git a/doc/source/user_guide/async_agent.rst b/doc/source/user_guide/async_agent.rst index 3c841f4..9d64737 100644 --- a/doc/source/user_guide/async_agent.rst +++ b/doc/source/user_guide/async_agent.rst @@ -3,6 +3,49 @@ ``select_ai.agent`` also provides async interfaces to be used with ``async`` / ``await`` keywords + +.. list-table:: Select AI Async Agent Tools + :header-rows: 1 + :widths: 20 50 30 + :align: left + + * - Tool Type + - AsyncTool Class Method + - Arguments + * - ``EMAIL`` + - ``select_ai.agent.AsyncTool.create_email_notification_tool`` + - - ``tool_name`` + - ``credential_name`` + - ``recipient`` + - ``sender`` + - ``smtp_host`` + * - ``HTTP`` + - ``select_ai.agent.AsyncTool.create_http_tool`` + - - ``tool_name`` + - ``credential_name`` + - ``endpoint`` + * - ``SQL`` + - ``select_ai.agent.AsyncTool.create_sql_tool`` + - - ``tool_name`` + - ``profile_name`` + * - ``SLACK`` + - ``select_ai.agent.AsyncTool.create_slack_notification_tool`` + - - ``tool_name`` + - ``credential_name`` + - ``slack_channel`` + * - ``WEBSEARCH`` + - ``select_ai.agent.AsyncTool.create_websearch_tool`` + - - ``tool_name`` + - ``credential_name`` + * - ``PL/SQL custom tool`` + - ``select_ai.agent.AsyncTool.create_pl_sql_tool`` + - - ``tool_name`` + - ``function`` + * - ``RAG`` + - ``select_ai.agent.AsyncTool.create_rag_tool`` + - - ``tool_name`` + - ``profile_name`` + ************* ``AsyncTool`` ************* diff --git a/docs/.buildinfo b/docs/.buildinfo index 260b419..c40577e 100644 --- a/docs/.buildinfo +++ b/docs/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file records the configuration used when building these files. When it is not found, a full rebuild will be done. -config: 3f9e662855e6bc50d7a46d00f43eb9be +config: b87d5f8ed0634472678ff572d56d38cc tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/docs/.buildinfo.bak b/docs/.buildinfo.bak index 39e2226..260b419 100644 --- a/docs/.buildinfo.bak +++ b/docs/.buildinfo.bak @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file records the configuration used when building these files. When it is not found, a full rebuild will be done. -config: a318d941582e43a924dff11f0ac39b47 +config: 3f9e662855e6bc50d7a46d00f43eb9be tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/docs/_sources/user_guide/agent.rst.txt b/docs/_sources/user_guide/agent.rst.txt index 421988b..ad549e7 100644 --- a/docs/_sources/user_guide/agent.rst.txt +++ b/docs/_sources/user_guide/agent.rst.txt @@ -72,11 +72,6 @@ Python layer and persist the tool in the Database using - - ``tool_name`` - ``profile_name`` -.. note:: - - Use ``select_ai.agent.AsyncTool.create_`` for corresponding async - methods. For e.g. ``await select_ai.agent.AsyncTool.create_rag_tool()`` - can be used to create an RAG tool in an async application. .. latex:clearpage:: diff --git a/docs/_sources/user_guide/async_agent.rst.txt b/docs/_sources/user_guide/async_agent.rst.txt index 3c841f4..9d64737 100644 --- a/docs/_sources/user_guide/async_agent.rst.txt +++ b/docs/_sources/user_guide/async_agent.rst.txt @@ -3,6 +3,49 @@ ``select_ai.agent`` also provides async interfaces to be used with ``async`` / ``await`` keywords + +.. list-table:: Select AI Async Agent Tools + :header-rows: 1 + :widths: 20 50 30 + :align: left + + * - Tool Type + - AsyncTool Class Method + - Arguments + * - ``EMAIL`` + - ``select_ai.agent.AsyncTool.create_email_notification_tool`` + - - ``tool_name`` + - ``credential_name`` + - ``recipient`` + - ``sender`` + - ``smtp_host`` + * - ``HTTP`` + - ``select_ai.agent.AsyncTool.create_http_tool`` + - - ``tool_name`` + - ``credential_name`` + - ``endpoint`` + * - ``SQL`` + - ``select_ai.agent.AsyncTool.create_sql_tool`` + - - ``tool_name`` + - ``profile_name`` + * - ``SLACK`` + - ``select_ai.agent.AsyncTool.create_slack_notification_tool`` + - - ``tool_name`` + - ``credential_name`` + - ``slack_channel`` + * - ``WEBSEARCH`` + - ``select_ai.agent.AsyncTool.create_websearch_tool`` + - - ``tool_name`` + - ``credential_name`` + * - ``PL/SQL custom tool`` + - ``select_ai.agent.AsyncTool.create_pl_sql_tool`` + - - ``tool_name`` + - ``function`` + * - ``RAG`` + - ``select_ai.agent.AsyncTool.create_rag_tool`` + - - ``tool_name`` + - ``profile_name`` + ************* ``AsyncTool`` ************* diff --git a/docs/_static/documentation_options.js b/docs/_static/documentation_options.js index 4e4d652..73b9b36 100644 --- a/docs/_static/documentation_options.js +++ b/docs/_static/documentation_options.js @@ -1,5 +1,5 @@ const DOCUMENTATION_OPTIONS = { - VERSION: '1.2.1', + VERSION: '1.2.2', LANGUAGE: 'en', COLLAPSE_INDEX: false, BUILDER: 'html', diff --git a/docs/genindex.html b/docs/genindex.html index 299d65f..8385dd2 100644 --- a/docs/genindex.html +++ b/docs/genindex.html @@ -4,14 +4,14 @@ - Index — Select AI for Python 1.2.1 documentation + Index — Select AI for Python 1.2.2 documentation - + @@ -85,7 +85,7 @@

Navigation

  • - Select AI for Python 1.2.1 documentation » + Select AI for Python 1.2.2 documentation »
  • @@ -321,12 +321,48 @@

    D

  • (select_ai.VectorIndex method)
  • - - +
      +
    • delete_profile() (select_ai.AsyncProfile class method) + +
    • +
    • delete_task() (select_ai.agent.AsyncTask class method) + +
    • +
    • delete_team() (select_ai.agent.AsyncTeam class method) + +
    • +
    • delete_tool() (select_ai.agent.AsyncTool class method) + +
    • disable() (select_ai.agent.Agent method) @@ -742,7 +778,7 @@

      Navigation

    • - Select AI for Python 1.2.1 documentation » + Select AI for Python 1.2.2 documentation »
    • diff --git a/docs/index.html b/docs/index.html index a2e35df..583985a 100644 --- a/docs/index.html +++ b/docs/index.html @@ -5,14 +5,14 @@ - select_ai documentation — Select AI for Python 1.2.1 documentation + select_ai documentation — Select AI for Python 1.2.2 documentation - + @@ -121,7 +121,7 @@

      Navigation

    • - Select AI for Python 1.2.1 documentation » + Select AI for Python 1.2.2 documentation »
    • @@ -275,12 +275,12 @@

      Profile Attributes

        -
      • 1. Profile Object Model
      • -
      • 2. Base Profile API
          +
        • Profile Object Model
        • +
        • Base Profile API
        • -
        • 3. Profile API
            +
          • Profile API
            • Profile
            • -
            • 4. Create Profile
            • -
            • 5. Narrate
            • -
            • 6. Show SQL
            • -
            • 7. Run SQL
            • -
            • 8. Chat
            • -
            • 9. Summarize
            • -
            • 10. Translate
            • -
            • 11. List profiles
            • -
            • 12. Async Profile
                +
              • Create Profile
              • +
              • Narrate
              • +
              • Show SQL
              • +
              • Run SQL
              • +
              • Chat
              • +
              • Summarize
              • +
              • Translate
              • +
              • List profiles
              • +
              • Async Profile
                • 1. AsyncProfile API @@ -394,6 +395,7 @@

                  Vector IndexVectorIndex
                  • VectorIndex.create()
                  • VectorIndex.delete()
                  • +
                  • VectorIndex.delete_index()
                  • VectorIndex.disable()
                  • VectorIndex.enable()
                  • VectorIndex.fetch()
                  • @@ -416,6 +418,7 @@

                    Vector IndexAsyncVectorIndex
                    • AsyncVectorIndex.create()
                    • AsyncVectorIndex.delete()
                    • +
                    • AsyncVectorIndex.delete_index()
                    • AsyncVectorIndex.disable()
                    • AsyncVectorIndex.enable()
                    • AsyncVectorIndex.fetch()
                    • @@ -504,6 +507,7 @@

                      AI Agent
                    • Task
                      • Task.create()
                      • Task.delete()
                      • +
                      • Task.delete_task()
                      • Task.disable()
                      • Task.enable()
                      • Task.fetch()
                      • @@ -521,6 +525,7 @@

                        AI Agent
                      • Agent
                        • Agent.create()
                        • Agent.delete()
                        • +
                        • Agent.delete_agent()
                        • Agent.disable()
                        • Agent.enable()
                        • Agent.fetch()
                        • @@ -537,6 +542,7 @@

                          AI Agent
                        • Team
                          • Team.create()
                          • Team.delete()
                          • +
                          • Team.delete_team()
                          • Team.disable()
                          • Team.enable()
                          • Team.fetch()
                          • @@ -657,7 +663,7 @@

                            Navigation

                          • - Select AI for Python 1.2.1 documentation » + Select AI for Python 1.2.2 documentation »
                          • diff --git a/docs/license.html b/docs/license.html index 3af1f06..f3c568e 100644 --- a/docs/license.html +++ b/docs/license.html @@ -5,14 +5,14 @@ - <no title> — Select AI for Python 1.2.1 documentation + <no title> — Select AI for Python 1.2.2 documentation - + @@ -93,7 +93,7 @@

                            Navigation

                          • - Select AI for Python 1.2.1 documentation » + Select AI for Python 1.2.2 documentation »
                          • @@ -202,7 +202,7 @@

                            Navigation

                          • - Select AI for Python 1.2.1 documentation » + Select AI for Python 1.2.2 documentation »
                          • diff --git a/docs/objects.inv b/docs/objects.inv index c87fdc54876ed9fd1d4a7fb0eb07ad31ccb17404..b7c17eeb5bf3a7341e6c4851772a25713105ef69 100644 GIT binary patch delta 2130 zcmV-Y2(9;q5y26VhJT#hZ=^O5z~A{Rkb1AA>g%bhl%{REQco8tRr`p%;Ox?{z}ep1 z<^KBGz%B;-F~+kmcZ%`+#u(3d#vjXRO$(8e>hAvE=O@;_RV8I<_x`b{3Fqlg>6ufO zAI`G)$8LOlcNC}khYx9%@JYH6N7i;#5yRl`P4Un+Zy7)RaSo8QljMkI5;5>DM=xxv_~4H9U+TEOdt_+N4&K01{ot-vUr0$QAgg- zXdA}HW7{6;nDP1N`EaP3!ylxGp?rSWJ<{fW7lY_x0gMzi)%=gQbA6s?v)9;^!2@~V zv>m{6<$vlxabJQC!8lzS0N{3HU;svs!jf(P2#{$5C{Di&koV=(0SI6s4I)C^FaYG5 z7y#m)JQ+anq_O}4C~ynq#Plg3Q-x9@d&ZZO0vO&z)X(rvLL)-!eG6^ty!d>vyWgbQ zd7Cr0QZMg`Fml??icit;vU9w|96KjROvmvuaeuTV96$d?PQ9_RZuEp3Ki9^Lo{60K z#ofL7*R~zj*Kmva_G};s&sGf_k(0~YYzMjR7sPNIE(qb?cYzR``wb8PZ0S9i#A8t2 zLGOd8B{1iZ?^mwD6wr<(oCevm45fK&B9!Sdk3gKqQUYm!%}O}Tzh4Ju1?*yNgz|Xm z-+zR^Mq7n~pczFE!?FntmW%OKF^E_O(bKT(p@$)vL(jsoh8~4%3~MHaEl_fbw*?8o zvjqi1vxNzki}6)4h-kK;XlS;eU|6=GSV*>@Q0&|wk+7|5#l*0xwyoo>NC+dpO{gQDjHIP^wOmGL_5KPo6 z4J6bC5MtJ7{6RH99%F?jBz*RhV%KL}akpPGa)bjSY%swcRzomxBODMw0|-$g+){!g#*ZV?+c820l+xF z2#s$cm^i-(h-3kTD8J~9Spo7Wjx8WM^^-6hoAa=ON4{toU2bM(Hh_5()CD!YUKm~@ z*c2Hyr!sez;Mm_r}*)1yb_2tZW@5*xj zS=X~C{CXnRd>bRPAF4CoyXOQ` zu#h%tu-#OFX;?@bH8`)bz|@!!MqTy`FEB+bd9#)-N=N6{u$6734o9xv?;eil=2g}x z)YXvY@M(znEoX#B8AITGd4Kf#H^E4u?z}V-_!oVn^>)~^c(>l@frt_dK=#oHtazJG=wb2p7TO@O&Ef!@)pn^?AOn1^0H5WdhI_WMs@ohkwU14r#0e^^g`* zh%x|rk$yzUskmv+Je}$#vzXV@v{`gAu)Awy64bB{>BCsk98%Gy!>~)0d8v3e(W5OF z)NpxJFMX*Fq0)?&vb!r%+Xb&xCNcSmhAR*=p-X9BFYSk1GF2yGE`JT%4P~m6uk0BuXY|XtVpQqk0cgD>n=y8JTlFVWuV8I?E&n*K7YdToPVx&Nf6 zwlsXw?mfFa7`UHg%jC!%K5oaVH)#zAYVXUb%B0F?eXDC&>woOdC%Z}n$MQ@=tTMuj z9+w%J+BSqv4vEEOF0E5Ny*+&Fd8f-ER=mnV$3&2AOva`^O@;;kIcX>xTJStPf0AA~ z86zR9+C`)^3$BuIZ$3HmXR|L~TtT%q%M|Ne%CcV65^N>w`A|1F%WNrMyz5#fXqny* z#mRD_v{9~eVSlO?c@pzvX%k*dr|EV5EV0dOPLe*-)7fg!{nIWnem4tm@nJo4p=Hjp zv**)VI$I6-y#G)6PH9zi)(wk!&%m9}dg;S(R$wYlEcRyMtxVE9Sy`qAD|9h?z~&C4 zd$y=p`0w+I2yEm7Wh+$g7kg)zgyMcUjR)PIjGw3?*4L<~hTk{a>#6)qD-{ Ie_vIjgIOXc^Z)<= delta 2071 zcmV+y2)|x+$^{2LGtC`?`9gj1y7Rm4AVeO{#!6cNwEZP=z~F zajNrBUM`0m!hNwdm*Yy+Vpi?j60I& zX+@7x;Tug~D9sNfdo{JrAKlcvxB)sl5rIcaIpus9fCxnE=<{RQN8T0|@`s@BO-YI> zpWbJI6KB7Izbs=ukq=SCm`@p`d6p9w3zBlVzQq~c|;3H~F0)NEhn^xZIbzI8Ry zLREoa9M0YwXZQF1xPp^IiN~WAD$eTby=gEXx(VBi0e=??)8?AJVIYqcM%~_<-&;ll za-?4gr}k*qGUo5=6AjXikengrWr!&mUN&}vL<}tlyFvOjMeb&_4Yu)6*T*u%KL2cw z$D%s^L9!6am;3z#t#<#{%HjZKL$kO$6&0X$m@3>0_ey%3Dm zr2znTM}GzeVDu;;mjzI)?i3*J%33`Tz*H4Pgm_N?$mY)h;*LxdKyW0B00Jo9^5ul| zDIgbwQUZI%mGuD_&Q#CMaLyeAV$%Bt+Scjp`7-W)lf%y0ocSnq@}3AI=k2WUBp5IM z#Y=q=vtGP}7cJMtPjitoT&(04J+H-2X)%LTB7bLUako={O`ADg4ZEmo#{q(HY&3un z_F)HN*vA_PVc$T25UdO55CCiq*_*^eP)=KQLDT|~)l$19STF^&O$MhyHp)C`4pa8T zIjq`~2G}8k!`z!haF)l`$wnv-r~Xa&Yp?|?2$}(RFf9A+VOZwd(XgzygCQAj$HKAQ z4u6Ggx@#teXr;!7Jx*h z5JJ$R03`kd5JHv&+>s_g9%DhkC#H0hLYD(n>+!W^1A(gOfO92z{P^9At$5{5^zZu&apvzpQ6CR1Vp=r^ZqP~GeK;U@%>BF*kY zVh^Y-8yIUPLIqcv_2Df#I)Xukm2T#`kU^hd0nn&X^Rs3Na#QChf)GZz>_81GfL@RO4hT@kOjye|UGsn`Sbs=sHJA?S z!!#_UwHmA^`C)2w2(2#jd4HIqmAqa{6QrYYYuL)xQv0K;A9weswtAH{GIcV(IzILh zzu~OqAfpMqFOPnI7mQ@;$bTh)f6+HuZihXK595UfhhpYi65N|bmI**tkdPrC?H|iHq%soJLz;~tN)PBnI*XE1 zaaFfG9_vN3nAg#?S#;8~n`>m^)v!WpnJbSdrX#huATW3{}_RHaFctC7a?S$mdBy4Fb_-<1NNY<6BGwrLjDB zuM+R}@k`C(rw=*(R)0}hWVGUR+OtDZ-?u+kbu0=|(qCp(uWguC?mp?c&NZL3`A9Ag zdhVlanY7&g<2I~#lcV8C&3!pm8CAJP-|9NcI=gept`fnaJeeR?8R12bZ5Zj=)`w0O ziN&RuNvAq`yZ_kpPM0Q@y-K5F!fR}dgKhdW>R0OLq`s_g!GClA{7HJ{Xo!T2Y8R2x zEVzpNz4_?OpY^_cah1>5EM2T~DN8z0L$DRC=fmlMGt8Fq#ha#Pg68qAFOHTIrHOK# z3uCp&6X_>Qlkj3Xjj!uxk!fbLlBSj(&sKwWPy0yw-3+|Nhjq+_hB?d3o=Y&GP| z;Xma&<*1^wZhu(Jdm8S1){F1^-TARNGK@C^Z#5+Kla*m=FhUoz2W;-px@Uumh5wEp z7*QJzm(pnM8jYZdIbAGi_&krx&tq`-M(WbtYka%LBb%9{!;UYhakO@H2KlKQTsT3a zS2Cg2t_$L;rul$@yh<73X<9P-E-RYO$*xn7z9cDzJP@b<+5NK3ulnm@{{! - Search — Select AI for Python 1.2.1 documentation + Search — Select AI for Python 1.2.2 documentation @@ -12,7 +12,7 @@ - + @@ -75,7 +75,7 @@

                            Navigation

                          • - Select AI for Python 1.2.1 documentation » + Select AI for Python 1.2.2 documentation »
                          • @@ -149,7 +149,7 @@

                            Navigation

                          • - Select AI for Python 1.2.1 documentation » + Select AI for Python 1.2.2 documentation »
                          • diff --git a/docs/searchindex.js b/docs/searchindex.js index da836b3..60d79cd 100644 --- a/docs/searchindex.js +++ b/docs/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles":{"AI Agent":[[0,"ai-agent"]],"AI Provider and expected credential format":[[8,null]],"AI agent examples":[[3,"ai-agent-examples"]],"AWSProvider":[[14,"awsprovider"]],"Actions":[[0,"actions"]],"Agent":[[3,"id1"]],"AnthropicProvider":[[14,"anthropicprovider"]],"Async AI Agent":[[3,"async-ai-agent"]],"Async AI agent examples":[[4,"async-ai-agent-examples"]],"Async API":[[8,"async-api"],[14,"async-api"],[14,"id3"],[16,"async-api"],[16,"id2"]],"Async Profile":[[12,"async-profile"]],"Async Profile creation":[[5,"async-profile-creation"]],"Async RAG using vector index":[[17,"async-rag-using-vector-index"]],"Async chat":[[5,"async-chat"]],"Async chat session":[[7,"async-chat-session"]],"Async concurrent SQL":[[5,"async-concurrent-sql"]],"Async create vector index":[[17,"async-create-vector-index"]],"Async explain SQL":[[5,"async-explain-sql"]],"Async fetch vector index":[[17,"async-fetch-vector-index"]],"Async list conversations":[[7,"async-list-conversations"]],"Async list vector index":[[17,"async-list-vector-index"]],"Async pipeline":[[5,"async-pipeline"]],"Async run SQL":[[5,"async-run-sql"]],"Async show SQL":[[5,"async-show-sql"]],"Async update vector index attributes":[[17,"async-update-vector-index-attributes"]],"AsyncAgent":[[4,"asyncagent"]],"AsyncConversation API":[[7,"asyncconversation-api"]],"AsyncProfile API":[[5,null]],"AsyncTask":[[4,"asynctask"]],"AsyncTeam":[[4,"asyncteam"]],"AsyncTool":[[4,null]],"AsyncVectorIndex API":[[17,"asyncvectorindex-api"]],"Asynchronous connection":[[6,"asynchronous-connection"]],"AzureProvider":[[14,"azureprovider"]],"Base Profile API":[[12,"base-profile-api"]],"Chat":[[12,"chat"]],"Chat session":[[7,"chat-session"]],"ChunkProcessingMethod":[[15,"chunkprocessingmethod"]],"CohereProvider":[[14,"cohereprovider"]],"Connecting to Oracle Database":[[6,null]],"Conversation":[[0,"conversation"]],"Conversation API":[[7,"conversation-api"]],"Conversation Object model":[[7,null]],"ConversationAttributes":[[7,"conversationattributes"]],"Create Agent":[[3,"create-agent"],[4,"create-agent"]],"Create Profile":[[12,"create-profile"]],"Create Task":[[3,"create-task"],[4,"create-task"]],"Create Tool":[[3,"create-tool"],[4,"create-tool"]],"Create conversion":[[7,"create-conversion"]],"Create credential":[[8,"create-credential"]],"Create vector index":[[17,"create-vector-index"]],"Credential":[[0,"credential"]],"Delete conversation":[[7,"delete-conversation"]],"Delete vector index":[[17,"delete-vector-index"]],"Disable AI service provider":[[14,"disable-ai-service-provider"]],"Enable AI service provider":[[14,"enable-ai-service-provider"]],"ExtractivenessLevel":[[15,"extractivenesslevel"]],"Fetch vector index":[[17,"fetch-vector-index"]],"Getting Started":[[0,"getting-started"]],"GoogleProvider":[[14,"googleprovider"]],"Grant privilege":[[11,null]],"HuggingFaceProvider":[[14,"huggingfaceprovider"]],"Installation requirements":[[9,"installation-requirements"]],"Installing select_ai":[[9,null]],"Introduction to Select AI for Python":[[10,null]],"List Agents":[[4,"list-agents"]],"List Tasks":[[3,"list-tasks"],[4,"list-tasks"]],"List Teams":[[4,"list-teams"]],"List Tools":[[3,"list-tools"],[4,"list-tools"]],"List conversations":[[7,"list-conversations"]],"List profiles":[[12,"list-profiles"]],"List profiles asynchronously":[[5,"list-profiles-asynchronously"]],"List vector index":[[17,"list-vector-index"]],"Multi table synthetic data":[[16,"multi-table-synthetic-data"]],"Narrate":[[12,"narrate"]],"OCIGenAIProvider":[[14,"ocigenaiprovider"]],"OpenAIProvider":[[14,"openaiprovider"]],"OracleVectorIndexAttributes":[[17,"oraclevectorindexattributes"]],"Privileges":[[0,"privileges"]],"Profile":[[0,"profile"]],"Profile API":[[12,"profile-api"]],"Profile Attributes":[[0,"profile-attributes"]],"Profile Object Model":[[12,null]],"ProfileAttributes":[[13,null]],"Provider":[[0,"provider"],[14,null]],"RAG using vector index":[[17,"rag-using-vector-index"]],"Revoke privilege":[[11,"revoke-privilege"]],"Run SQL":[[12,"run-sql"]],"Run Team":[[3,"run-team"],[4,"run-team"]],"Select AI Actions":[[2,"id1"]],"Select AI Agent Tools":[[3,"id2"]],"Show SQL":[[12,"show-sql"]],"Single table synthetic data":[[16,"single-table-synthetic-data"]],"Summarize":[[5,"summarize"],[12,"summarize"]],"Summary":[[0,"summary"]],"SummaryParams":[[15,null]],"SummaryStyle":[[15,"summarystyle"]],"Supported Actions":[[2,null]],"Supported Tools":[[3,"supported-tools"]],"Sync API":[[8,"sync-api"],[14,"sync-api"],[14,"id2"],[16,"sync-api"],[16,"id1"]],"Synchronous connection":[[6,"synchronous-connection"]],"Synthetic Data":[[0,"synthetic-data"]],"SyntheticDataAttributes":[[16,null]],"SyntheticDataParams":[[16,"syntheticdataparams"]],"Task":[[3,"task"]],"Team":[[3,"team"]],"Tool":[[3,null]],"Translate":[[5,"translate"],[12,"translate"]],"Update vector index attributes":[[17,"update-vector-index-attributes"]],"Vector Index":[[0,"vector-index"]],"VectorIndex API":[[17,"vectorindex-api"]],"VectorIndex Object Model":[[17,null]],"VectorIndexAttributes":[[17,"vectorindexattributes"]],"Web Search Agent using OpenAI\u2019s GPT model":[[3,"web-search-agent-using-openai-s-gpt-model"],[4,"web-search-agent-using-openai-s-gpt-model"]],"select_ai documentation":[[0,null]],"select_ai installation":[[9,"select-ai-installation"]]},"docnames":["index","license","user_guide/actions","user_guide/agent","user_guide/async_agent","user_guide/async_profile","user_guide/connection","user_guide/conversation","user_guide/credential","user_guide/installation","user_guide/introduction","user_guide/privileges","user_guide/profile","user_guide/profile_attributes","user_guide/provider","user_guide/summary","user_guide/synthetic_data","user_guide/vector_index"],"envversion":{"sphinx":65,"sphinx.domains.c":3,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":9,"sphinx.domains.index":1,"sphinx.domains.javascript":3,"sphinx.domains.math":2,"sphinx.domains.python":4,"sphinx.domains.rst":2,"sphinx.domains.std":2},"filenames":["index.rst","license.rst","user_guide/actions.rst","user_guide/agent.rst","user_guide/async_agent.rst","user_guide/async_profile.rst","user_guide/connection.rst","user_guide/conversation.rst","user_guide/credential.rst","user_guide/installation.rst","user_guide/introduction.rst","user_guide/privileges.rst","user_guide/profile.rst","user_guide/profile_attributes.rst","user_guide/provider.rst","user_guide/summary.rst","user_guide/synthetic_data.rst","user_guide/vector_index.rst"],"indexentries":{"add_negative_feedback() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.add_negative_feedback",false]],"add_negative_feedback() (select_ai.profile method)":[[12,"select_ai.Profile.add_negative_feedback",false]],"add_positive_feedback() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.add_positive_feedback",false]],"add_positive_feedback() (select_ai.profile method)":[[12,"select_ai.Profile.add_positive_feedback",false]],"agent (class in select_ai.agent)":[[3,"select_ai.agent.Agent",false]],"agentattributes (class in select_ai.agent)":[[3,"select_ai.agent.AgentAttributes",false]],"asyncagent (class in select_ai.agent)":[[4,"select_ai.agent.AsyncAgent",false]],"asyncprofile (class in select_ai)":[[5,"select_ai.AsyncProfile",false]],"asynctask (class in select_ai.agent)":[[4,"select_ai.agent.AsyncTask",false]],"asyncteam (class in select_ai.agent)":[[4,"select_ai.agent.AsyncTeam",false]],"asynctool (class in select_ai.agent)":[[4,"select_ai.agent.AsyncTool",false]],"baseprofile (class in select_ai)":[[12,"select_ai.BaseProfile",false]],"chat() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.chat",false]],"chat() (select_ai.profile method)":[[12,"select_ai.Profile.chat",false]],"chat_session() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.chat_session",false]],"chat_session() (select_ai.profile method)":[[12,"select_ai.Profile.chat_session",false]],"chunkprocessingmethod (class in select_ai.summary)":[[15,"select_ai.summary.ChunkProcessingMethod",false]],"create() (select_ai.agent.agent method)":[[3,"select_ai.agent.Agent.create",false]],"create() (select_ai.agent.asyncagent method)":[[4,"select_ai.agent.AsyncAgent.create",false]],"create() (select_ai.agent.asynctask method)":[[4,"select_ai.agent.AsyncTask.create",false]],"create() (select_ai.agent.asyncteam method)":[[4,"select_ai.agent.AsyncTeam.create",false]],"create() (select_ai.agent.task method)":[[3,"select_ai.agent.Task.create",false]],"create() (select_ai.agent.team method)":[[3,"select_ai.agent.Team.create",false]],"create() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.create",false]],"create() (select_ai.profile method)":[[12,"select_ai.Profile.create",false]],"create_built_in_tool() (select_ai.agent.asynctool class method)":[[4,"select_ai.agent.AsyncTool.create_built_in_tool",false]],"create_built_in_tool() (select_ai.agent.tool class method)":[[3,"select_ai.agent.Tool.create_built_in_tool",false]],"create_email_notification_tool() (select_ai.agent.asynctool class method)":[[4,"select_ai.agent.AsyncTool.create_email_notification_tool",false]],"create_email_notification_tool() (select_ai.agent.tool class method)":[[3,"select_ai.agent.Tool.create_email_notification_tool",false]],"create_pl_sql_tool() (select_ai.agent.asynctool class method)":[[4,"select_ai.agent.AsyncTool.create_pl_sql_tool",false]],"create_pl_sql_tool() (select_ai.agent.tool class method)":[[3,"select_ai.agent.Tool.create_pl_sql_tool",false]],"create_rag_tool() (select_ai.agent.asynctool class method)":[[4,"select_ai.agent.AsyncTool.create_rag_tool",false]],"create_rag_tool() (select_ai.agent.tool class method)":[[3,"select_ai.agent.Tool.create_rag_tool",false]],"create_slack_notification_tool() (select_ai.agent.asynctool class method)":[[4,"select_ai.agent.AsyncTool.create_slack_notification_tool",false]],"create_slack_notification_tool() (select_ai.agent.tool class method)":[[3,"select_ai.agent.Tool.create_slack_notification_tool",false]],"create_sql_tool() (select_ai.agent.asynctool class method)":[[4,"select_ai.agent.AsyncTool.create_sql_tool",false]],"create_sql_tool() (select_ai.agent.tool class method)":[[3,"select_ai.agent.Tool.create_sql_tool",false]],"create_websearch_tool() (select_ai.agent.asynctool class method)":[[4,"select_ai.agent.AsyncTool.create_websearch_tool",false]],"create_websearch_tool() (select_ai.agent.tool class method)":[[3,"select_ai.agent.Tool.create_websearch_tool",false]],"delete() (select_ai.agent.agent method)":[[3,"select_ai.agent.Agent.delete",false]],"delete() (select_ai.agent.asyncagent method)":[[4,"select_ai.agent.AsyncAgent.delete",false]],"delete() (select_ai.agent.asynctask method)":[[4,"select_ai.agent.AsyncTask.delete",false]],"delete() (select_ai.agent.asyncteam method)":[[4,"select_ai.agent.AsyncTeam.delete",false]],"delete() (select_ai.agent.asynctool method)":[[4,"select_ai.agent.AsyncTool.delete",false]],"delete() (select_ai.agent.task method)":[[3,"select_ai.agent.Task.delete",false]],"delete() (select_ai.agent.team method)":[[3,"select_ai.agent.Team.delete",false]],"delete() (select_ai.agent.tool method)":[[3,"select_ai.agent.Tool.delete",false]],"delete() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.delete",false]],"delete() (select_ai.profile method)":[[12,"select_ai.Profile.delete",false]],"delete_feedback() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.delete_feedback",false]],"delete_feedback() (select_ai.profile method)":[[12,"select_ai.Profile.delete_feedback",false]],"disable() (select_ai.agent.agent method)":[[3,"select_ai.agent.Agent.disable",false]],"disable() (select_ai.agent.asyncagent method)":[[4,"select_ai.agent.AsyncAgent.disable",false]],"disable() (select_ai.agent.asynctask method)":[[4,"select_ai.agent.AsyncTask.disable",false]],"disable() (select_ai.agent.asyncteam method)":[[4,"select_ai.agent.AsyncTeam.disable",false]],"disable() (select_ai.agent.asynctool method)":[[4,"select_ai.agent.AsyncTool.disable",false]],"disable() (select_ai.agent.task method)":[[3,"select_ai.agent.Task.disable",false]],"disable() (select_ai.agent.team method)":[[3,"select_ai.agent.Team.disable",false]],"disable() (select_ai.agent.tool method)":[[3,"select_ai.agent.Tool.disable",false]],"enable() (select_ai.agent.agent method)":[[3,"select_ai.agent.Agent.enable",false]],"enable() (select_ai.agent.asyncagent method)":[[4,"select_ai.agent.AsyncAgent.enable",false]],"enable() (select_ai.agent.asynctask method)":[[4,"select_ai.agent.AsyncTask.enable",false]],"enable() (select_ai.agent.asyncteam method)":[[4,"select_ai.agent.AsyncTeam.enable",false]],"enable() (select_ai.agent.asynctool method)":[[4,"select_ai.agent.AsyncTool.enable",false]],"enable() (select_ai.agent.task method)":[[3,"select_ai.agent.Task.enable",false]],"enable() (select_ai.agent.team method)":[[3,"select_ai.agent.Team.enable",false]],"enable() (select_ai.agent.tool method)":[[3,"select_ai.agent.Tool.enable",false]],"explain_sql() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.explain_sql",false]],"explain_sql() (select_ai.profile method)":[[12,"select_ai.Profile.explain_sql",false]],"extractivenesslevel (class in select_ai.summary)":[[15,"select_ai.summary.ExtractivenessLevel",false]],"fetch() (select_ai.agent.agent class method)":[[3,"select_ai.agent.Agent.fetch",false]],"fetch() (select_ai.agent.asyncagent class method)":[[4,"select_ai.agent.AsyncAgent.fetch",false]],"fetch() (select_ai.agent.asynctask class method)":[[4,"select_ai.agent.AsyncTask.fetch",false]],"fetch() (select_ai.agent.asyncteam class method)":[[4,"select_ai.agent.AsyncTeam.fetch",false]],"fetch() (select_ai.agent.asynctool class method)":[[4,"select_ai.agent.AsyncTool.fetch",false]],"fetch() (select_ai.agent.task class method)":[[3,"select_ai.agent.Task.fetch",false]],"fetch() (select_ai.agent.team class method)":[[3,"select_ai.agent.Team.fetch",false]],"fetch() (select_ai.agent.tool class method)":[[3,"select_ai.agent.Tool.fetch",false]],"fetch() (select_ai.asyncprofile class method)":[[5,"select_ai.AsyncProfile.fetch",false]],"fetch() (select_ai.profile class method)":[[12,"select_ai.Profile.fetch",false]],"generate() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.generate",false]],"generate() (select_ai.profile method)":[[12,"select_ai.Profile.generate",false]],"generate_synthetic_data() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.generate_synthetic_data",false]],"generate_synthetic_data() (select_ai.profile method)":[[12,"select_ai.Profile.generate_synthetic_data",false]],"get_attributes() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.get_attributes",false]],"get_attributes() (select_ai.profile method)":[[12,"select_ai.Profile.get_attributes",false]],"list() (select_ai.agent.agent class method)":[[3,"select_ai.agent.Agent.list",false]],"list() (select_ai.agent.asyncagent class method)":[[4,"select_ai.agent.AsyncAgent.list",false]],"list() (select_ai.agent.asynctask class method)":[[4,"select_ai.agent.AsyncTask.list",false]],"list() (select_ai.agent.asyncteam class method)":[[4,"select_ai.agent.AsyncTeam.list",false]],"list() (select_ai.agent.asynctool class method)":[[4,"select_ai.agent.AsyncTool.list",false]],"list() (select_ai.agent.task class method)":[[3,"select_ai.agent.Task.list",false]],"list() (select_ai.agent.team class method)":[[3,"select_ai.agent.Team.list",false]],"list() (select_ai.agent.tool class method)":[[3,"select_ai.agent.Tool.list",false]],"list() (select_ai.asyncprofile class method)":[[5,"select_ai.AsyncProfile.list",false]],"list() (select_ai.profile class method)":[[12,"select_ai.Profile.list",false]],"narrate() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.narrate",false]],"narrate() (select_ai.profile method)":[[12,"select_ai.Profile.narrate",false]],"profile (class in select_ai)":[[12,"select_ai.Profile",false]],"run() (select_ai.agent.asyncteam method)":[[4,"select_ai.agent.AsyncTeam.run",false]],"run() (select_ai.agent.team method)":[[3,"select_ai.agent.Team.run",false]],"run_pipeline() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.run_pipeline",false]],"run_sql() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.run_sql",false]],"run_sql() (select_ai.profile method)":[[12,"select_ai.Profile.run_sql",false]],"set_attribute() (select_ai.agent.agent method)":[[3,"select_ai.agent.Agent.set_attribute",false]],"set_attribute() (select_ai.agent.asyncagent method)":[[4,"select_ai.agent.AsyncAgent.set_attribute",false]],"set_attribute() (select_ai.agent.asynctask method)":[[4,"select_ai.agent.AsyncTask.set_attribute",false]],"set_attribute() (select_ai.agent.asyncteam method)":[[4,"select_ai.agent.AsyncTeam.set_attribute",false]],"set_attribute() (select_ai.agent.asynctool method)":[[4,"select_ai.agent.AsyncTool.set_attribute",false]],"set_attribute() (select_ai.agent.task method)":[[3,"select_ai.agent.Task.set_attribute",false]],"set_attribute() (select_ai.agent.team method)":[[3,"select_ai.agent.Team.set_attribute",false]],"set_attribute() (select_ai.agent.tool method)":[[3,"select_ai.agent.Tool.set_attribute",false]],"set_attribute() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.set_attribute",false]],"set_attribute() (select_ai.profile method)":[[12,"select_ai.Profile.set_attribute",false]],"set_attributes() (select_ai.agent.agent method)":[[3,"select_ai.agent.Agent.set_attributes",false]],"set_attributes() (select_ai.agent.asyncagent method)":[[4,"select_ai.agent.AsyncAgent.set_attributes",false]],"set_attributes() (select_ai.agent.asynctask method)":[[4,"select_ai.agent.AsyncTask.set_attributes",false]],"set_attributes() (select_ai.agent.asyncteam method)":[[4,"select_ai.agent.AsyncTeam.set_attributes",false]],"set_attributes() (select_ai.agent.asynctool method)":[[4,"select_ai.agent.AsyncTool.set_attributes",false]],"set_attributes() (select_ai.agent.task method)":[[3,"select_ai.agent.Task.set_attributes",false]],"set_attributes() (select_ai.agent.team method)":[[3,"select_ai.agent.Team.set_attributes",false]],"set_attributes() (select_ai.agent.tool method)":[[3,"select_ai.agent.Tool.set_attributes",false]],"set_attributes() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.set_attributes",false]],"set_attributes() (select_ai.profile method)":[[12,"select_ai.Profile.set_attributes",false]],"show_prompt() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.show_prompt",false]],"show_prompt() (select_ai.profile method)":[[12,"select_ai.Profile.show_prompt",false]],"show_sql() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.show_sql",false]],"show_sql() (select_ai.profile method)":[[12,"select_ai.Profile.show_sql",false]],"style (class in select_ai.summary)":[[15,"select_ai.summary.Style",false]],"summarize() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.summarize",false]],"summarize() (select_ai.profile method)":[[12,"select_ai.Profile.summarize",false]],"summaryparams (class in select_ai.summary)":[[15,"select_ai.summary.SummaryParams",false]],"task (class in select_ai.agent)":[[3,"select_ai.agent.Task",false]],"taskattributes (class in select_ai.agent)":[[3,"select_ai.agent.TaskAttributes",false]],"team (class in select_ai.agent)":[[3,"select_ai.agent.Team",false]],"teamattributes (class in select_ai.agent)":[[3,"select_ai.agent.TeamAttributes",false]],"tool (class in select_ai.agent)":[[3,"select_ai.agent.Tool",false]],"toolattributes (class in select_ai.agent)":[[3,"select_ai.agent.ToolAttributes",false]],"toolparams (class in select_ai.agent)":[[3,"select_ai.agent.ToolParams",false]],"translate() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.translate",false]],"translate() (select_ai.profile method)":[[12,"select_ai.Profile.translate",false]]},"objects":{"select_ai":[[14,0,1,"","AWSProvider"],[14,0,1,"","AnthropicProvider"],[7,0,1,"","AsyncConversation"],[5,0,1,"","AsyncProfile"],[17,0,1,"","AsyncVectorIndex"],[14,0,1,"","AzureProvider"],[12,0,1,"","BaseProfile"],[14,0,1,"","CohereProvider"],[7,0,1,"","Conversation"],[7,0,1,"","ConversationAttributes"],[14,0,1,"","GoogleProvider"],[14,0,1,"","HuggingFaceProvider"],[14,0,1,"","OCIGenAIProvider"],[14,0,1,"","OpenAIProvider"],[17,0,1,"","OracleVectorIndexAttributes"],[12,0,1,"","Profile"],[13,0,1,"","ProfileAttributes"],[14,0,1,"","Provider"],[16,0,1,"","SyntheticDataAttributes"],[16,0,1,"","SyntheticDataParams"],[17,0,1,"","VectorIndex"],[17,0,1,"","VectorIndexAttributes"]],"select_ai.AsyncConversation":[[7,1,1,"","create"],[7,1,1,"","delete"],[7,1,1,"","fetch"],[7,1,1,"","get_attributes"],[7,1,1,"","list"],[7,1,1,"","set_attributes"]],"select_ai.AsyncProfile":[[5,1,1,"","add_negative_feedback"],[5,1,1,"","add_positive_feedback"],[5,1,1,"","chat"],[5,1,1,"","chat_session"],[5,1,1,"","create"],[5,1,1,"","delete"],[5,1,1,"","delete_feedback"],[5,1,1,"","explain_sql"],[5,1,1,"","fetch"],[5,1,1,"","generate"],[5,1,1,"","generate_synthetic_data"],[5,1,1,"","get_attributes"],[5,1,1,"","list"],[5,1,1,"","narrate"],[5,1,1,"","run_pipeline"],[5,1,1,"","run_sql"],[5,1,1,"","set_attribute"],[5,1,1,"","set_attributes"],[5,1,1,"","show_prompt"],[5,1,1,"","show_sql"],[5,1,1,"","summarize"],[5,1,1,"","translate"]],"select_ai.AsyncVectorIndex":[[17,1,1,"","create"],[17,1,1,"","delete"],[17,1,1,"","disable"],[17,1,1,"","enable"],[17,1,1,"","fetch"],[17,1,1,"","get_attributes"],[17,1,1,"","get_profile"],[17,1,1,"","list"],[17,1,1,"","set_attribute"],[17,1,1,"","set_attributes"]],"select_ai.Conversation":[[7,1,1,"","create"],[7,1,1,"","delete"],[7,1,1,"","fetch"],[7,1,1,"","get_attributes"],[7,1,1,"","list"],[7,1,1,"","set_attributes"]],"select_ai.Profile":[[12,1,1,"","add_negative_feedback"],[12,1,1,"","add_positive_feedback"],[12,1,1,"","chat"],[12,1,1,"","chat_session"],[12,1,1,"","create"],[12,1,1,"","delete"],[12,1,1,"","delete_feedback"],[12,1,1,"","explain_sql"],[12,1,1,"","fetch"],[12,1,1,"","generate"],[12,1,1,"","generate_synthetic_data"],[12,1,1,"","get_attributes"],[12,1,1,"","list"],[12,1,1,"","narrate"],[12,1,1,"","run_sql"],[12,1,1,"","set_attribute"],[12,1,1,"","set_attributes"],[12,1,1,"","show_prompt"],[12,1,1,"","show_sql"],[12,1,1,"","summarize"],[12,1,1,"","translate"]],"select_ai.VectorIndex":[[17,1,1,"","create"],[17,1,1,"","delete"],[17,1,1,"","disable"],[17,1,1,"","enable"],[17,1,1,"","fetch"],[17,1,1,"","get_attributes"],[17,1,1,"","get_profile"],[17,1,1,"","list"],[17,1,1,"","set_attribute"],[17,1,1,"","set_attributes"]],"select_ai.agent":[[3,0,1,"","Agent"],[3,0,1,"","AgentAttributes"],[4,0,1,"","AsyncAgent"],[4,0,1,"","AsyncTask"],[4,0,1,"","AsyncTeam"],[4,0,1,"","AsyncTool"],[3,0,1,"","Task"],[3,0,1,"","TaskAttributes"],[3,0,1,"","Team"],[3,0,1,"","TeamAttributes"],[3,0,1,"","Tool"],[3,0,1,"","ToolAttributes"],[3,0,1,"","ToolParams"]],"select_ai.agent.Agent":[[3,1,1,"","create"],[3,1,1,"","delete"],[3,1,1,"","disable"],[3,1,1,"","enable"],[3,1,1,"","fetch"],[3,1,1,"","list"],[3,1,1,"","set_attribute"],[3,1,1,"","set_attributes"]],"select_ai.agent.AsyncAgent":[[4,1,1,"","create"],[4,1,1,"","delete"],[4,1,1,"","disable"],[4,1,1,"","enable"],[4,1,1,"","fetch"],[4,1,1,"","list"],[4,1,1,"","set_attribute"],[4,1,1,"","set_attributes"]],"select_ai.agent.AsyncTask":[[4,1,1,"","create"],[4,1,1,"","delete"],[4,1,1,"","disable"],[4,1,1,"","enable"],[4,1,1,"","fetch"],[4,1,1,"","list"],[4,1,1,"","set_attribute"],[4,1,1,"","set_attributes"]],"select_ai.agent.AsyncTeam":[[4,1,1,"","create"],[4,1,1,"","delete"],[4,1,1,"","disable"],[4,1,1,"","enable"],[4,1,1,"","fetch"],[4,1,1,"","list"],[4,1,1,"","run"],[4,1,1,"","set_attribute"],[4,1,1,"","set_attributes"]],"select_ai.agent.AsyncTool":[[4,1,1,"","create_built_in_tool"],[4,1,1,"","create_email_notification_tool"],[4,1,1,"","create_pl_sql_tool"],[4,1,1,"","create_rag_tool"],[4,1,1,"","create_slack_notification_tool"],[4,1,1,"","create_sql_tool"],[4,1,1,"","create_websearch_tool"],[4,1,1,"","delete"],[4,1,1,"","disable"],[4,1,1,"","enable"],[4,1,1,"","fetch"],[4,1,1,"","list"],[4,1,1,"","set_attribute"],[4,1,1,"","set_attributes"]],"select_ai.agent.Task":[[3,1,1,"","create"],[3,1,1,"","delete"],[3,1,1,"","disable"],[3,1,1,"","enable"],[3,1,1,"","fetch"],[3,1,1,"","list"],[3,1,1,"","set_attribute"],[3,1,1,"","set_attributes"]],"select_ai.agent.Team":[[3,1,1,"","create"],[3,1,1,"","delete"],[3,1,1,"","disable"],[3,1,1,"","enable"],[3,1,1,"","fetch"],[3,1,1,"","list"],[3,1,1,"","run"],[3,1,1,"","set_attribute"],[3,1,1,"","set_attributes"]],"select_ai.agent.Tool":[[3,1,1,"","create_built_in_tool"],[3,1,1,"","create_email_notification_tool"],[3,1,1,"","create_pl_sql_tool"],[3,1,1,"","create_rag_tool"],[3,1,1,"","create_slack_notification_tool"],[3,1,1,"","create_sql_tool"],[3,1,1,"","create_websearch_tool"],[3,1,1,"","delete"],[3,1,1,"","disable"],[3,1,1,"","enable"],[3,1,1,"","fetch"],[3,1,1,"","list"],[3,1,1,"","set_attribute"],[3,1,1,"","set_attributes"]],"select_ai.summary":[[15,0,1,"","ChunkProcessingMethod"],[15,0,1,"","ExtractivenessLevel"],[15,0,1,"","Style"],[15,0,1,"","SummaryParams"]]},"objnames":{"0":["py","class","Python class"],"1":["py","method","Python method"]},"objtypes":{"0":"py:class","1":"py:method"},"terms":{"":[0,1,5,7,9,12,14,16,17],"0":[1,5,7,12,17],"01":[3,4],"02":[3,4],"03":[3,4],"04":[3,4],"05":[3,4],"06":[3,4],"07":[3,4],"07b9":[3,4],"08":[3,4],"09":[3,4],"1":[1,3,4,5,7,12,17],"10":[3,4,7,9,10,16],"100":[3,4,16],"1024":[5,12,13,17],"11":[9,10],"11c8":7,"12":[9,10],"128":17,"128e":[3,4],"13":[9,10,16],"14":9,"1440":[],"1450":17,"151b000ad3b4":7,"17b":[3,4],"2":[3,4,5,17],"20000":5,"2019":[3,4,16],"2025":1,"25e23a25":[3,4],"3":[3,4,5,9,10,17],"300":16,"37ddc22e":7,"37df777f":7,"380a1910":7,"3ab2ed3":7,"3d49":7,"4":[3,4,5,17],"40":16,"400":[5,12],"40e7":[3,4],"463a":[3,4],"4ed7":[3,4],"5":[3,4,5,16,17],"503":[5,12],"5275a80":7,"55":[5,12],"5bf2":7,"6":[3,4],"7":[3,4,7],"7e52":7,"8":[3,4],"80":9,"8000":7,"9":[3,4,9,10],"987c":[3,4],"A":[1,3,4,5,12,17],"AND":1,"AS":[1,5,12],"BE":1,"BUT":1,"By":7,"FOR":1,"For":[3,5,6,9,12,16,17],"IN":1,"If":[3,4,7,9],"In":[3,4,8,17],"It":[0,5,10,12,15],"NO":1,"NOT":1,"No":[3,4],"OF":1,"OR":1,"THE":1,"TO":1,"The":[1,3,4,5,7,8,10,12,13,14,15,16,17],"There":12,"These":[3,4,14,17],"To":[5,6,9,14,17],"WITH":1,"_":1,"_required_field":[3,4],"a290":7,"a489":[3,4],"abil":7,"about":[3,4,5,12,17],"abov":1,"abstract":12,"access":[2,3,4,5,12,13,14,17],"accomplish":[3,4],"accuraci":2,"acl":14,"acquir":[5,12],"act":[2,3,4],"action":[1,3,4,5,12],"activ":17,"actor":[3,4,16],"actual":[5,12],"ad":17,"add":[3,14],"add_negative_feedback":[0,5,12],"add_positive_feedback":[0,5,12],"addit":[3,4,6],"addition":[5,12],"adjac":17,"admin":11,"admin_us":[11,14],"administr":5,"advanc":[3,4],"adventur":[3,4],"affili":1,"after":[5,12],"agent_attribut":[3,4],"agent_nam":[3,4],"agent_name_pattern":[3,4],"agentattribut":[0,3,4],"agentnotfounderror":[3,4],"agenttasknotfounderror":[3,4],"agentteamnotfounderror":[3,4],"agenttoolnotfounderror":[3,4],"agreement":1,"ai":[1,5,7,11,12,13,17],"alcohol":[5,12],"algorithm":[3,4],"alia":5,"all":[1,3,4,5,7,11,12,13,17],"allow":[3,4,5,14],"along":[6,17],"alreadi":9,"also":[3,4,5,12,14,16,17],"alwai":[],"amazon":12,"amount":[5,12,17],"an":[1,2,3,4,5,6,7,12,13,14,17],"analyst":[3,4],"analyt":[3,4,5,12],"analyz":[3,4,5],"analyze_movie_task":[3,4],"ancient":[5,12],"ani":[1,3,4,9,14],"anim":[3,4],"annot":[5,12,13,17],"anomali":[3,4],"anoth":2,"answer":[3,4,5],"anthrop":[8,14],"anthropicprovid":0,"api":[0,3,9,10,13],"applic":[3,4,5,6],"appreci":7,"approxim":15,"ar":[3,4,5,7,9,12,13,14,15,16,17],"area":[5,12],"arg":[5,12],"argument":3,"aris":1,"arrai":[3,13],"artifici":[3,4,5],"as_complet":5,"ashburn":17,"ask":3,"assign":[3,16],"associ":[1,3,4,5,17],"astrobiologi":[5,12],"astronom":[5,12],"astronomi":[5,12],"async":[0,9],"async_connect":[4,5,6,7,8,14,16,17],"async_convers":7,"async_create_credenti":[4,8],"async_disable_provid":[],"async_enable_provid":[],"async_grant_http_access":14,"async_oci_ai_profil":[5,7,12,16],"async_oci_vector_ai_profil":[12,17],"async_profil":[5,7,16,17],"async_revoke_http_access":14,"async_sess":7,"async_vector_index":17,"asyncag":[0,3],"asyncconvers":[0,5],"asyncgener":[4,5,7,17],"asynchron":[0,4,10,12],"asyncio":[4,5,7,8,14,16,17],"asyncprofil":[0,4,7,12,16,17],"asynctask":[0,3],"asyncteam":[0,3],"asynctool":[0,3],"asyncvectorindex":0,"attach":3,"attribut":[3,4,5,7,12,13,14,16],"attribute_nam":[3,4,5,12,17],"attribute_valu":[3,4,5,12,17],"augment":[10,17],"authent":[5,8,12],"author":1,"autom":[3,4,5,13],"automat":[3,9],"automl":[3,4],"autonom":[3,5],"avail":[9,15],"aw":[12,14],"await":[3,4,5,6,7,8,14,16,17],"awar":[5,7,12],"aws_apiformat":14,"awsprovid":0,"azur":[12,14],"azure_deployment_nam":14,"azure_embedding_deployment_nam":14,"azure_resource_nam":14,"azureprovid":0,"b":[1,17],"b2":[5,12],"back":12,"base":[0,3,4,5,6,10,14,17],"baseprofil":[0,12,17],"be11":[3,4],"be1a000a15b6":7,"becom":[5,12],"beer":[5,12],"befor":[5,11],"begin":13,"behavior":[2,3,13,17],"behind":9,"being":[5,12,14],"below":[1,6,16,17],"benefit":[3,4],"better":9,"between":[0,7,17],"biograph":[3,4],"biographi":[3,4],"block":[12,14,17],"bool":[3,4,5,7,12,13,16,17],"both":[1,10,14,17],"branch":[5,12],"breakdown":5,"brew":[5,12],"bridg":0,"bucket":17,"build":[3,4,5,7,17],"built":[3,4,12],"burn":[5,12],"busi":[3,4,5],"c":[1,5],"c2e3ff20":[3,4],"calcul":[5,17],"call":[3,14],"callabl":3,"can":[2,3,4,5,6,7,9,12,14,15,17],"cancri":[5,12],"cannot":17,"capabl":[0,3,4],"case":[5,14],"case_sensitive_valu":[5,12,13,17],"cc72740c75a5":[3,4],"celesti":[5,12],"certain":3,"chain":3,"challeng":7,"channel":[3,4],"charact":17,"charg":1,"chat":[0,2],"chat_sess":[0,5,7,12],"chat_task":5,"chatgpt":[3,4],"check":[16,17],"chemistri":[5,12],"chicago":[3,4,5,12,17],"choic":17,"choos":[3,15],"chunk":[15,17],"chunk_overlap":17,"chunk_processing_method":15,"chunk_siz":17,"chunkprocessingmethod":0,"civil":[5,12],"claim":1,"clarif":3,"clarifi":2,"class":[3,4,5,7,12,13,14,15,16,17],"classif":[3,4],"classmethod":[3,4,5,7,12,17],"clear":[],"climat":7,"close":15,"cloud":[3,4,5,12,14],"clue":[5,12],"cluster":[3,4,14],"coher":[14,17],"cohereprovid":0,"collect":[1,5,17],"column":[3,5,12,13],"com":[3,4,9,14,17],"combin":7,"comedi":[3,4],"comment":[3,5,12,13,16,17],"compar":17,"compart":14,"compet":12,"complet":[1,16],"complianc":[3,4],"compliant":[3,4],"compon":5,"compos":3,"composit":[3,5,12],"comprehens":[7,12],"comput":[5,12],"concept":14,"concret":14,"concurr":[0,10,12,17],"conda":17,"condit":1,"config":8,"configur":[3,13,17],"connect":[0,1,3,4,7,8,9,11,12,14,16,17],"consid":17,"constantli":[5,12],"constraint":[5,12,13,17],"consum":16,"contain":[3,4,5,12,15,17],"content":[2,3,4,5,12,17],"context":[3,5,7,12],"contextu":7,"continu":[3,4,5],"continue_on_error":5,"contract":1,"contribut":1,"control":[15,16],"convers":[2,3,4,5,12,13,17],"conversation_attribut":7,"conversation_id":[3,4,5,7,12],"conversation_length":7,"conversationattribut":0,"convert":[14,17],"cool":[5,12],"coordin":3,"copi":1,"copyright":1,"corpor":[5,12],"correct":5,"correspond":[3,5,8,12],"cosin":17,"could":[3,4,5,12],"count":[5,12,16],"cover":[1,13],"creat":[0,1,5,9,11,13,14],"create_":3,"create_built_in_tool":[3,4],"create_credenti":[3,8],"create_email_notification_tool":[3,4],"create_http_tool":3,"create_pl_sql_tool":[3,4],"create_rag_tool":[3,4],"create_slack_notification_tool":[3,4],"create_sql_tool":[3,4],"create_tool":3,"create_websearch_tool":[3,4],"creation":[0,3,4,7,12],"credenti":[3,4,5,12,13,17],"credential_nam":[3,4,5,8,12,13,17],"cultur":7,"current":[3,4,17],"cust_email":5,"cust_first_nam":5,"cust_id":5,"cust_last_nam":5,"custom":[3,4,5,15,17],"customer_count":5,"d4328a7b2210":[3,4],"d81a000a3fda":7,"d81a000a53b":7,"d81a000a85f":7,"d917b055":[3,4],"da17":7,"dai":7,"damag":1,"dank":[5,12],"data":[1,2,3,4,5,10,12,14,17],"data_guard":3,"databas":[0,3,4,5,7,8,9,11,12,14,16,17],"databaseerror":[5,12,17],"datafram":[5,12],"date":[3,4,7,16],"datetim":7,"db_admin":11,"db_admin_password":11,"db_connect_str":11,"dba":5,"dbms_cloud":11,"dbms_cloud_ai":[0,10,11],"dbms_cloud_ai_ag":[3,11],"dbms_cloud_pipelin":11,"de":[5,12],"deal":1,"dedic":14,"deep":2,"def":[4,5,7,8,14,16,17],"default":[2,3,4,5,8,12,13,16,17],"default_config":8,"defin":[1,3,5,12,13,16,17],"degre":[13,15],"delet":[0,3,4,5,12],"delete_feedback":[0,5,12],"demonstr":[],"denot":13,"depend":[3,5,9,14],"deploi":[3,4,5,14],"deploy":[3,4],"deriv":1,"describ":[3,5,12],"descript":[2,3,4,5,7,12,17],"design":[3,5],"despit":[5,12],"detail":[2,11,12,16],"detect":[3,4,5,12],"determin":15,"develop":[3,4,5,7,12],"df":[5,12],"dict":[5,12],"dictionari":3,"differ":[2,3],"dir_containing_tnsnam":11,"directli":[3,4],"director":[3,4,16],"disabl":[0,3,4,16,17],"disable_provid":[],"discoveri":[5,7,12],"displai":[1,2],"distanc":17,"distribut":1,"do":3,"document":[1,11,17],"documentari":[3,4],"doe":[5,12,17],"doesn":5,"dotenv":11,"doubl":5,"drama":[3,4],"drive":5,"driver":6,"drop":7,"dsn":[3,4,5,6,7,8,9,11,12,14,16,17],"dtype":12,"due":[5,12],"dure":3,"dwcsdev":17,"dynam":[5,12],"e":[3,4,5,6,12,16,17],"e063":7,"e8a1":[3,4],"each":[1,3,17],"earli":[5,12],"earliest":13,"easier":5,"ecosystem":0,"effici":5,"either":[1,3,12,17],"elabor":7,"element":[5,12,17],"elig":13,"elimin":[3,4,5],"els":[5,12],"email":[3,4,5],"emb":17,"embed":[14,17],"embedding_model":[5,12,14,17],"empti":12,"en":[5,12],"enabl":[0,2,3,4,5,7,13,15,16,17],"enable_custom_source_uri":[13,17],"enable_human_tool":[3,4],"enable_provid":[],"enable_sourc":[5,12,13,17],"enable_source_offset":[5,12,13,17],"enclos":5,"end":[1,5,12],"endpoint":[3,4,14,17],"enforce_object_list":[5,12,13,17],"english":17,"enhanc":[3,4],"enough":[5,12],"ensur":[3,4,5],"enter":9,"enum":2,"enumer":5,"env":11,"environ":[3,4,11,17],"epic":[3,4],"error":[3,4,5,7,12,17],"essenti":7,"even":[5,12],"event":[1,5,9,12],"evolut":[5,12],"evolv":[5,12],"exampl":[0,5,7,8,9,16,17],"exce":15,"exchang":7,"exclude_nul":[5,12],"execut":[2,3,5,6,11],"exist":[3,4,5,12,17],"exoplanet":[5,12],"expans":[5,12],"expect":[5,12,14,15],"expertis":2,"explain":[0,2,12],"explain_sql":[0,5,12],"explainsql":[2,5],"explan":5,"explicitli":5,"explor":2,"export":[1,11],"express":[1,3,4,5,12,17],"extern":3,"extract":15,"extractiveness_level":15,"extractivenesslevel":0,"extraterrestri":[5,12],"f":5,"f084":7,"f3da":7,"f56d":[3,4],"f7a1":7,"f7e5e445d286":[3,4],"fals":[3,4,5,7,12,16,17],"famili":[3,4],"fantasi":[3,4],"faster":16,"fccenv":17,"featur":[3,4,10],"februari":[3,4],"feedback":[2,5,12],"feedback_cont":[5,12],"fetch":[0,3,4,5,7,12],"fetched_profil":[5,12],"fewer":5,"fi":[3,4],"field":[3,5,12],"file":[1,5,8,9,11,12],"film":[3,4],"find":7,"fingerprint":8,"first":[5,12],"fit":1,"flexibl":[3,4],"float":[5,12,13,17],"focu":5,"focus":[3,4,5,12],"follow":[1,2,3,4,8,11,15,17],"forc":[3,4,5,7,12,17],"forego":1,"foreign":13,"form":[5,12],"format":[5,12,13,14,15],"forth":1,"found":[3,4,5,12],"fp":8,"fp8":[3,4],"framework":[3,4],"free":1,"freeli":1,"from":[1,2,3,4,5,7,8,9,11,12,13,15,16,17],"from_fil":8,"fulfil":3,"full":[5,12],"fulli":17,"function":[3,4,5,12,17],"g":[3,5,12,16,17],"ga":[5,12],"gain":7,"galaxi":[5,12],"gamma":[5,12],"gap":0,"gcp":12,"gen":[8,14],"gener":[0,2,3,4,5,10,12,13,14,15,16,17],"generate_synthetic_data":[0,5,12,16],"genr":[3,4],"get":[5,7,12,17],"get_attribut":[0,5,7,12,17],"get_profil":[0,17],"getenv":[3,4,5,7,8,11,12,14,16,17],"give":[5,12],"googl":[12,14],"googleprovid":0,"govern":[3,4],"gpt":0,"grant":[0,1],"grant_http_access":14,"grant_privileg":11,"graph":17,"graphenv":17,"gravit":[5,12],"group":3,"guid":[3,5,12,16],"ha":[5,12],"halo":[5,12],"hardwar":1,"have":[1,5,7],"help":[3,4,7,10,17],"here":[3,4,5,7],"herebi":1,"hereund":1,"hf":8,"hf_xxx":8,"high":[3,4,5,12,15,16],"higher":[5,9,16],"highlight":[3,4,14],"histor":[3,4],"histori":[5,7,12,13],"holder":1,"horror":[3,4],"host":[3,4,14],"hot":[5,12],"how":[3,4,5,12,15,17],"http":[3,4,5,9,12,14,17],"https_proxi":6,"https_proxy_port":6,"huggingfac":[8,14],"huggingfaceprovid":0,"human":[3,4],"hyperparamet":[3,4],"i":[0,1,2,3,4,5,6,7,9,10,12,13,15,16,17],"ibm":12,"ic":[5,12],"id":[3,4,5,7],"identifi":[3,4,5,12],"ignor":[5,12,17],"ii":1,"impact":7,"implement":14,"impli":1,"import":[1,3,4,5,6,7,8,9,11,12,14,16,17],"improv":[2,3,4],"includ":[1,3,4,5,7,12,13],"include_data":17,"incorpor":13,"index":[3,4,12,13],"index_nam":17,"index_name_pattern":17,"indic":[13,14,17],"inform":[3,4,16,17],"infrar":[5,12],"infrastructur":[3,4,5,12],"inherit":[3,4],"inlin":[5,12],"input":[3,4,15,17],"insid":[3,4],"insight":[5,7,12],"inspir":[5,12],"instal":0,"instanti":12,"instruct":[2,3,4],"int":[5,7,12,13,15,16,17],"integr":[0,3,4,5,13],"intellectu":7,"intellig":[3,4,5],"intend":3,"interact":[5,7,12],"interfac":[4,5],"interpret":14,"interv":17,"introduc":9,"introduct":0,"invalid":5,"invok":[3,4,10,14],"involv":[],"item":[3,4,17],"iter":[3,4,5,7,12,17],"iterative_refin":15,"its":[1,3,4,5,7,12],"januari":[3,4],"job":17,"json":[13,17],"keep":[3,4],"kei":[3,4,7,8,13,15],"kept":5,"key_cont":8,"key_fil":8,"keyword":[2,4,5,6],"kind":1,"knowledg":7,"known":14,"kwarg":[5,12],"languag":[2,3,4,5,7,12,13,14,17],"larg":[2,5,12],"larger":[1,5],"last":5,"layer":[3,4],"learn":[3,4,5,7],"led":[5,12],"less":13,"let":[3,4,17],"level":[5,17],"leverag":[3,4,5],"li":7,"liabil":1,"liabl":1,"licens":1,"licensor":1,"life":[5,12],"like":[3,4,6],"limit":[1,15],"link":[3,4,17],"list":[0,1,2,13,15,16],"llama":[3,4,14],"llama_4_maverick":[3,4],"llm":[2,3,5,7,12,13,14,15,16],"llm_chat_tool":[3,4],"load":17,"local":[5,12],"locat":17,"location_uri":[5,12],"long":[5,12],"loop":9,"low":[15,16],"lower":13,"lrgrwrk":1,"m":[6,9],"machin":[3,4,5],"made":[1,7],"main":[3,4,5,7,8,14,16,17],"maintain":[3,4],"major":12,"make":[1,2,5,12],"manag":[5,9,13,15,17],"mani":[5,12],"manifest":17,"manipul":5,"manner":[5,7],"manual":[5,7],"map":[3,4,5,12,13,16],"map_reduc":15,"mapped_sql":[5,12],"match":[3,4,5,12,17],"match_limit":17,"mathemat":[5,12],"maverick":[3,4],"max_token":[5,12,13,17],"max_word":15,"maximum":[15,17],"mean":13,"meant":3,"meanwhil":[5,12],"medium":[15,16],"merchant":1,"merg":12,"messag":9,"meta":[3,4],"metadata":[12,13],"method":[3,5,6,11,12,14,15,17],"microsoft":12,"milki":[5,12],"min_word":15,"minimum":[1,15,17],"minut":17,"misconcept":7,"mission":[3,4],"mistak":7,"ml":[3,4,5],"mlenv":17,"model":[0,5,14,15],"modul":[0,10],"more":[3,4,5,7,12,15,16],"most":13,"move":[3,4],"movement":[3,4],"movi":[3,4,16],"movie_agent_team":[3,4],"movie_analyst":[3,4],"movie_sql_tool":[3,4],"much":[5,12],"multi":[0,3],"multipl":[3,4,5,12,16,17],"multit":16,"music":[3,4],"must":[1,3,13,15],"my":[3,4,5,12,17],"my_oci_ai_profile_kei":[3,4,5,8,12,17],"myrenv":17,"mysteri":[3,4,5,12],"n":17,"nad":5,"name":[3,4,5,12,13,14,16,17],"narrat":[0,2,5,17],"natur":[2,3,4,5,7,12,13,14,17],"need":[3,4,5,9],"neg":[5,12,13],"network":[5,12],"new":[3,4,5,7,12,17],"next":5,"night":[3,4,5,12],"non":[12,13,17],"none":[3,4,5,7,12,13,14,15,16,17],"noninfring":1,"note":5,"notic":1,"notif":[3,4],"notification_typ":[3,4],"notificationtyp":3,"null":12,"number":[5,7,12,13,15,16,17],"number_of_promot":5,"numer":[5,12],"o":[3,4,5,7,8,11,12,14,16,17],"object":[0,3,4,5,8,13,14,16],"object_list":[3,4,5,12,13,16,17],"object_list_mod":[5,12,13,17],"object_nam":16,"object_storage_credential_nam":17,"objectstor":17,"objectstorag":17,"observ":[5,12],"obtain":1,"occur":[7,17],"oci":[3,4,5,8,12,14,17],"oci_ai_profil":[3,4,5,7,12,16],"oci_apiformat":[3,4,5,12,14,17],"oci_compartment_id":[5,12,14,17],"oci_endpoint_id":[5,12,14,17],"oci_runtimetyp":[5,12,14,17],"oci_vector_ai_profil":[5,12,17],"ocid":14,"ocigenaiprovid":[0,3,4,5,12,17],"offer":[1,3,4,5,12,14],"older":[5,12],"omf":5,"oml":5,"oml4pi":5,"one":[1,2,3,4,5,14,15],"onli":[3,13],"open":[3,4,8],"open_ai_api_kei":[3,4],"open_ai_credential_nam":[3,4],"open_ai_profile_nam":[3,4],"openai":[0,8,14],"openai_cr":[3,4],"openai_profil":[3,4],"openaiprovid":[0,3,4],"oper":[],"operation":[3,4],"optic":[5,12],"option":[3,4,9,15,16],"ora":[5,11],"oracl":[0,1,3,4,5,8,10,11,12,14,17],"oraclecloud":17,"oracledb":[5,6,9,12,17],"oraclevectorindexattribut":0,"orchestr":3,"order":3,"org":[5,12],"organ":[3,4],"origin":[5,12,15],"oss":[],"other":[1,10,11,12],"otherwis":1,"our":[5,12],"out":1,"outlin":3,"output":[2,3,4,5,7,8,11,12,14,16,17],"outsid":[3,4],"over":[3,7],"overal":[5,12],"overlap":17,"own":[1,16],"owner":[3,4,5,12,13,16],"owner_nam":16,"p":[5,12],"packag":[0,3,9,11],"page":[3,4],"pair":[3,4],"panda":[5,9,12],"paragraph":15,"parallel":16,"param":[3,4,5,12,16],"paramet":[3,4,5,6,7,12,13,14,15,16,17],"parti":10,"particular":1,"pass":[3,4,6,17],"password":[3,4,5,6,7,8,9,11,12,14,16,17],"past":7,"patent":1,"path":[5,11,12],"pattern":[3,4,5,12,17],"paus":[3,4],"pdb3":17,"per":13,"perform":[1,2,3,4,5,12,17],"permiss":1,"permit":14,"persist":3,"person":1,"pformat":[3,4,5,12],"phenomena":[5,12],"physic":[5,12],"piec":1,"pint":[5,12],"pip":9,"pipelin":[0,12],"pipeline_nam":17,"pitfal":7,"pl":[0,3,4,6,16],"placehold":[3,4],"platform":12,"point":15,"popul":[16,17],"portion":1,"posit":[5,12],"possibl":16,"potenti":2,"power":5,"pprint":[3,4,5,12],"prebuilt":[3,4],"predict":[3,4],"present":15,"pressur":[5,12],"prevent":[5,12],"previou":[3,4],"previous":17,"primari":13,"primarili":[3,4],"print":[3,4,5,7,8,9,11,12,14,17],"prior":3,"prioriti":16,"privaci":[3,4],"private_kei":8,"privileg":[],"procedur":[3,4,17],"process":[3,4,14,15],"product":[3,4,5],"profil":[3,4,7,8,13,16,17],"profile_attribut":[3,4,5,12,17],"profile_nam":[3,4,5,7,12,16,17],"profile_name_pattern":[5,12],"profileattribut":[0,3,4,5,12,17],"profileemptyattributeserror":12,"profileexistserror":12,"profilenotfounderror":[5,12,17],"program":[5,10],"promo_id":[5,12],"promot":[3,4,5,12],"promotion_count":5,"prompt":[2,3,4,5,7,9,12,13,14,16,17],"prompt_spec":[5,12],"prompt_specif":5,"properti":3,"provid":[1,2,3,4,5,7,10,12,13,17],"provider_endpoint":[5,12,14,17],"provider_nam":[5,12,14,17],"providerattribut":[5,12],"proxi":[3,4,7,9,12,17],"purpos":[1,3],"py":9,"pypi":9,"python":[0,1,3,4,5,6,9,12],"python3":9,"queri":[2,3,4,5,7,13,17],"question":[3,4,5],"quot":5,"r":[3,4,17],"radio":[5,12],"rag":[0,3,4,10],"rai":[5,12],"rais":[3,4,5,12,17],"raise_error_if_exist":12,"raise_error_on_empty_attribut":12,"random":13,"rang":[3,4,5,12],"read":[5,8,11],"reason":[3,4,7],"receiv":14,"recipi":[3,4],"record":16,"record_count":16,"refer":[1,5,14],"referenc":16,"referenti":13,"refresh_r":17,"regard":12,"regexp_lik":[3,4,5,12,17],"region":[3,4,5,12,14,17],"regist":[3,4],"regress":[3,4],"regular":[3,4,5,12,17],"relat":[3,4],"releas":[3,4,16],"relev":[7,11,13],"remain":[5,12],"remov":[7,14,17],"repair":5,"rephras":15,"replac":[3,4,5,8,12,17],"replet":7,"repositori":9,"repres":[7,12],"request":[3,4,5,12,16,17],"requir":[0,3,4,12,17],"research":[3,4,5,7,12],"resid":[3,4,17],"resourc":[14,16],"respect":[],"respond":[3,4],"respons":[3,4,5,7,12,14],"restrict":[1,13],"result":[2,5,12,17],"resum":[3,4],"retention_dai":7,"retriev":[5,10,17],"return":[3,4,5,7,12,13,17],"revok":0,"revoke_http_access":14,"revoke_privileg":11,"rich":0,"right":1,"robust":[3,4],"role":[3,4],"romanc":[3,4],"round":5,"roundtrip":5,"row":[5,16],"run":[0,7,8,9,11,14,16,17],"run_pipelin":[5,12],"run_sql":[0,5,12],"runsql":[2,12],"runtim":14,"sagittariu":[5,12],"sale":1,"same":3,"sampl":[11,16],"sample_row":16,"save":[5,12],"scalabl":[3,4,5],"scale":[3,4],"schedul":17,"schema":[5,12,16],"sci":[3,4],"scienc":[5,7,12],"scientif":7,"scientist":[3,4,7],"script":[5,11],"seamlessli":[3,4],"search":[0,5,12,17],"second":[5,12],"secur":[3,4,5,8],"see":14,"seed":[5,12,13,17],"seek":[5,12],"select":[0,1,4,5,7,11,12,14,16,17],"select_ai":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17],"select_ai_admin_password":[11,14],"select_ai_admin_us":[11,14],"select_ai_agent_nam":[3,4],"select_ai_connection_test":9,"select_ai_db_connect_str":[3,4,5,7,8,11,12,14,16,17],"select_ai_db_password":11,"select_ai_db_us":[11,14],"select_ai_password":[3,4,5,7,8,11,12,16,17],"select_ai_task_nam":[3,4],"select_ai_team_nam":[3,4],"select_ai_tool_nam":[3,4],"select_ai_us":[3,4,5,7,8,11,12,14,16,17],"self":5,"sell":1,"semant":17,"send":[3,5,13,16],"sender":[3,4],"sensit":5,"sent":[2,3,5,12,13,14,16],"separ":17,"sequenc":13,"sequenti":[3,4],"seri":[3,4,7],"serv":[3,4],"server":[3,4],"servic":[0,5,8,12],"session":[0,3,4,5,12],"set":[1,3,4,5,12],"set_attribut":[0,3,4,5,7,12,17],"sever":[5,7,10],"sh":[5,12],"shall":1,"shape":7,"should":[3,4,5,6,11,16],"show":[0,2,3,4,8,16],"show_prompt":[0,5,12],"show_sql":[0,5,12],"shown":[6,9],"showprompt":2,"showsql":[2,5],"signific":7,"similar":[3,17],"similarity_threshold":17,"similarli":11,"simul":5,"sinc":[5,12],"singl":[0,3,4,5,12,17],"size":17,"sk":8,"sky":[5,12],"slack":[3,4],"slack_channel":[3,4],"smtp":[3,4],"smtp_host":[3,4],"so":[3,5,12],"social":7,"societi":7,"softwar":1,"sold":1,"solid":[5,12],"solver":[3,4],"some":[5,7,12],"soon":5,"sourc":[5,11,12,17],"source_languag":[5,12],"spark_db_us":[],"special":[3,4],"specif":[3,4,12,14,17],"specifi":[3,4,5,12,13,14,15,17],"speed":[3,4],"split":[5,12,15],"sport":[3,4],"sql":[0,2,3,4,6,10,13,16],"sql_id":[5,12],"sql_task":5,"sql_tool":[3,4],"sqltoolparam":[3,4],"stabil":9,"stand":[5,12],"star":[5,12],"start":[3,4,5,12],"state":[3,4],"statement":[2,3,12],"statist":16,"step":[3,4],"stop":13,"stop_token":[5,12,13,17],"storag":[5,12,17],"store":[3,4,5,7,8,12,17],"stori":[3,4],"str":[3,4,5,7,12,13,14,16,17],"strategi":3,"stream":[5,12,13,17],"string":[5,13],"structur":9,"studi":[5,7,12],"style":[0,10,15],"subject":1,"sublicens":1,"subprogram":6,"substanti":1,"summar":[0,2],"summari":[2,3,4,5,12,15],"summary_styl":15,"summaryparam":[0,5,12],"summarystyl":0,"sun":[5,12],"support":[0,4,5,10,13,14,17],"sync":0,"synchron":[0,5,10,12],"synthet":[5,10,12],"synthetic_data_attribut":[5,12,16],"synthetic_data_param":16,"syntheticdataattribut":[0,5,12],"syntheticdataparam":0,"system":[7,17],"t":5,"tabl":[0,3,5,8,12,13,17],"table_statist":16,"target":[5,12],"target_languag":[5,12],"task":[0,5,16],"task_nam":[3,4],"task_name_pattern":[3,4],"taskattribut":[0,3,4],"team":0,"team_attribut":[],"team_nam":[3,4],"team_name_pattern":[3,4],"teamattribut":[0,3,4],"technic":2,"technologi":[3,4,5,12],"temperatur":[5,12,13,17],"tenanc":8,"tenancy_ocid":8,"tenant1":17,"term":1,"termin":13,"test":17,"test_vector_index":17,"text":[2,3,5,10,12,13,15,17],"than":[5,12],"thank":[5,12],"them":[3,5,12,17],"theoret":[5,12],"thi":[1,2,3,4,5,7,8,9,11,12,13,14,15,16,17],"thin":[3,6],"thing":5,"third":10,"thriller":[3,4],"through":[3,7,9],"time":[3,4,7],"timedelta":7,"titl":[3,4,7],"tl":6,"tns_admin":11,"togeth":[3,4],"token":[13,15],"tool":0,"tool_input":[3,4],"tool_nam":[3,4],"tool_name_pattern":[3,4],"tool_param":[3,4],"tool_typ":[3,4],"toolattribut":[0,3,4],"toolparam":[0,3,4],"tooltyp":[3,4],"topic":[3,4,7],"tort":1,"total":5,"touch":[5,12],"train":[3,4],"transform":14,"translat":[0,2,3,4,13],"trillion":[5,12],"trip":5,"true":[3,4,5,7,8,12,13,16,17],"tune":[3,4,13],"tupl":[5,12],"two":17,"txt":1,"type":[3,4,5,14,17],"typic":[5,7],"u":[3,4,5,7,12,17],"ultraviolet":[5,12],"under":[1,14],"underli":[5,12],"understand":[5,7,12,17],"union":[5,12,17],"uniqu":[3,5,12],"unit":17,"univers":[1,5,12],"unless":[5,7],"unmodifi":1,"up":[3,4],"updat":[0,5,7,12],"updated_attribut":17,"upgrad":9,"upl":1,"uri":[5,12],"url":[3,4,5,12,14],"us":[0,1,2,5,6,7,8,9,10,11,12,13,14,15,16],"usag":[5,7],"user":[2,3,4,5,6,7,8,9,11,12,14,16,17],"user_ocid":8,"user_prompt":16,"user_queri":[3,4],"usernam":[3,4,8],"util":[3,4],"uuid":[3,4],"uuid4":[3,4],"v":[5,12],"v3":17,"valid":13,"validate_config":8,"valu":[3,4,5,7,12,13,14,15,16,17],"valuabl":7,"vari":14,"variabl":[3,4,11],"varieti":[3,4],"variou":[3,4,5,12],"vecpipelin":17,"vector":[3,4,13],"vector_db_credential_nam":17,"vector_db_endpoint":17,"vector_db_provid":17,"vector_dimens":17,"vector_distance_metr":17,"vector_index":17,"vector_index_attribut":17,"vector_index_nam":[5,12,13,17],"vector_table_nam":17,"vectordbprovid":17,"vectordistancemetr":17,"vectorindex":[0,3,4,7],"vectorindexattribut":0,"vectorindexnotfounderror":17,"version":[1,9,10],"versu":15,"via":[5,12],"view":[5,12],"wai":[5,12],"wait":[3,4,5],"waiting_for_human":[3,4],"wallet":6,"wallet_loc":6,"wallet_password":6,"want":[5,12],"war":[3,4],"warranti":1,"water":[5,12],"wave":[5,12],"we":[3,4,5,8],"web":[0,12],"web_search_ag":[3,4],"web_search_task":[3,4],"web_search_team":[3,4],"web_search_tool":[3,4],"websearch":[3,4],"websit":[3,4],"were":7,"western":[3,4],"what":[3,4,5,7,12],"when":[2,3,9,14,15,17],"where":[3,4,5,12],"whether":[1,3,4,13,17],"which":[0,1,3,4,7,14,15,17],"while":[5,12],"who":16,"whose":3,"why":7,"wide":[3,4,12],"wiki":[5,12],"wikipedia":[5,12],"wire":3,"within":[3,4,5,17],"without":[1,2,3,4,5,12],"word":15,"work":[1,3,4],"workflow":[0,3,4,5],"workload":[3,4],"world":[3,4],"write":5,"www":[3,4],"x":[5,12],"xxx":8,"you":[3,4,5,9,10,12,14,15,17],"your":[2,3,4,8,14,17],"your_db_dsn":[6,9],"your_db_password":[6,9],"your_db_us":[6,9],"\u00aa":1,"\u00b2":1,"\u00b3":1,"\u00b5":1,"\u00b9":1,"\u00ba":1,"\u00bc":1,"\u00bd":1,"\u00be":1,"\u03c9":1,"\u215b":1,"\u215c":1,"\u215d":1,"\u215e":1},"titles":["select_ai documentation","<no title>","1. Supported Actions","1. Tool","6.1. AsyncTool","1. AsyncProfile API","3. Connecting to Oracle Database","1. Conversation Object model","1. Create credential","2. Installing select_ai","1. Introduction to Select AI for Python","1. Grant privilege","1. Profile Object Model","1. ProfileAttributes","1. Provider","1. SummaryParams","1. SyntheticDataAttributes","1. VectorIndex Object Model"],"titleterms":{"":[3,4],"action":[0,2],"agent":[0,3,4],"ai":[0,2,3,4,8,10,14],"anthropicprovid":14,"api":[5,7,8,12,14,16,17],"async":[3,4,5,7,8,12,14,16,17],"asyncag":4,"asyncconvers":7,"asynchron":[5,6],"asyncprofil":5,"asynctask":4,"asyncteam":4,"asynctool":4,"asyncvectorindex":17,"attribut":[0,17],"awsprovid":14,"azureprovid":14,"base":12,"chat":[5,7,12],"chunkprocessingmethod":15,"cohereprovid":14,"concurr":5,"connect":6,"convers":[0,7],"conversationattribut":7,"creat":[3,4,7,8,12,17],"creation":5,"credenti":[0,8],"data":[0,16],"databas":6,"delet":[7,17],"disabl":14,"document":0,"enabl":14,"exampl":[3,4],"expect":8,"explain":5,"extractivenesslevel":15,"fetch":17,"format":8,"get":0,"googleprovid":14,"gpt":[3,4],"grant":11,"huggingfaceprovid":14,"index":[0,17],"instal":9,"introduct":10,"list":[3,4,5,7,12,17],"model":[3,4,7,12,17],"multi":16,"narrat":12,"object":[7,12,17],"ocigenaiprovid":14,"openai":[3,4],"openaiprovid":14,"oracl":6,"oraclevectorindexattribut":17,"pipelin":5,"privileg":[0,11],"profil":[0,5,12],"profileattribut":13,"provid":[0,8,14],"python":10,"rag":17,"requir":9,"revok":11,"run":[3,4,5,12],"search":[3,4],"select":[2,3,10],"select_ai":[0,9],"servic":14,"session":7,"show":[5,12],"singl":16,"sql":[5,12],"start":0,"summar":[5,12],"summari":0,"summaryparam":15,"summarystyl":15,"support":[2,3],"sync":[8,14,16],"synchron":6,"synthet":[0,16],"syntheticdataattribut":16,"syntheticdataparam":16,"tabl":16,"task":[3,4],"team":[3,4],"tool":[3,4],"translat":[5,12],"updat":17,"us":[3,4,17],"vector":[0,17],"vectorindex":17,"vectorindexattribut":17,"web":[3,4]}}) +Search.setIndex({"alltitles":{"AI Agent":[[0,"ai-agent"]],"AI Provider and expected credential format":[[8,null]],"AI agent examples":[[3,"ai-agent-examples"]],"AWSProvider":[[14,"awsprovider"]],"Actions":[[0,"actions"]],"Agent":[[3,"id1"]],"AnthropicProvider":[[14,"anthropicprovider"]],"Async AI Agent":[[3,"async-ai-agent"]],"Async AI agent examples":[[4,"async-ai-agent-examples"]],"Async API":[[8,"async-api"],[14,"async-api"],[14,"id3"],[16,"async-api"],[16,"id2"]],"Async Profile":[[12,"async-profile"]],"Async Profile creation":[[5,"async-profile-creation"]],"Async RAG using vector index":[[17,"async-rag-using-vector-index"]],"Async chat":[[5,"async-chat"]],"Async chat session":[[7,"async-chat-session"]],"Async concurrent SQL":[[5,"async-concurrent-sql"]],"Async create vector index":[[17,"async-create-vector-index"]],"Async explain SQL":[[5,"async-explain-sql"]],"Async fetch vector index":[[17,"async-fetch-vector-index"]],"Async list conversations":[[7,"async-list-conversations"]],"Async list vector index":[[17,"async-list-vector-index"]],"Async pipeline":[[5,"async-pipeline"]],"Async run SQL":[[5,"async-run-sql"]],"Async show SQL":[[5,"async-show-sql"]],"Async update vector index attributes":[[17,"async-update-vector-index-attributes"]],"AsyncAgent":[[4,"asyncagent"]],"AsyncConversation API":[[7,"asyncconversation-api"]],"AsyncProfile API":[[5,null]],"AsyncTask":[[4,"asynctask"]],"AsyncTeam":[[4,"asyncteam"]],"AsyncTool":[[4,"asynctool"]],"AsyncVectorIndex API":[[17,"asyncvectorindex-api"]],"Asynchronous connection":[[6,"asynchronous-connection"]],"AzureProvider":[[14,"azureprovider"]],"Base Profile API":[[12,"base-profile-api"]],"Chat":[[12,"chat"]],"Chat session":[[7,"chat-session"]],"ChunkProcessingMethod":[[15,"chunkprocessingmethod"]],"CohereProvider":[[14,"cohereprovider"]],"Connecting to Oracle Database":[[6,null]],"Conversation":[[0,"conversation"]],"Conversation API":[[7,"conversation-api"]],"Conversation Object model":[[7,null]],"ConversationAttributes":[[7,"conversationattributes"]],"Create Agent":[[3,"create-agent"],[4,"create-agent"]],"Create Profile":[[12,"create-profile"]],"Create Task":[[3,"create-task"],[4,"create-task"]],"Create Tool":[[3,"create-tool"],[4,"create-tool"]],"Create conversion":[[7,"create-conversion"]],"Create credential":[[8,"create-credential"]],"Create vector index":[[17,"create-vector-index"]],"Credential":[[0,"credential"]],"Delete conversation":[[7,"delete-conversation"]],"Delete vector index":[[17,"delete-vector-index"]],"Disable AI service provider":[[14,"disable-ai-service-provider"]],"Enable AI service provider":[[14,"enable-ai-service-provider"]],"ExtractivenessLevel":[[15,"extractivenesslevel"]],"Fetch vector index":[[17,"fetch-vector-index"]],"Getting Started":[[0,"getting-started"]],"GoogleProvider":[[14,"googleprovider"]],"Grant privilege":[[11,null]],"HuggingFaceProvider":[[14,"huggingfaceprovider"]],"Installation requirements":[[9,"installation-requirements"]],"Installing select_ai":[[9,null]],"Introduction to Select AI for Python":[[10,null]],"List Agents":[[4,"list-agents"]],"List Tasks":[[3,"list-tasks"],[4,"list-tasks"]],"List Teams":[[4,"list-teams"]],"List Tools":[[3,"list-tools"],[4,"list-tools"]],"List conversations":[[7,"list-conversations"]],"List profiles":[[12,"list-profiles"]],"List profiles asynchronously":[[5,"list-profiles-asynchronously"]],"List vector index":[[17,"list-vector-index"]],"Multi table synthetic data":[[16,"multi-table-synthetic-data"]],"Narrate":[[12,"narrate"]],"OCIGenAIProvider":[[14,"ocigenaiprovider"]],"OpenAIProvider":[[14,"openaiprovider"]],"OracleVectorIndexAttributes":[[17,"oraclevectorindexattributes"]],"Privileges":[[0,"privileges"]],"Profile":[[0,"profile"]],"Profile API":[[12,"profile-api"]],"Profile Attributes":[[0,"profile-attributes"]],"Profile Object Model":[[12,null]],"ProfileAttributes":[[13,null]],"Provider":[[0,"provider"],[14,null]],"RAG using vector index":[[17,"rag-using-vector-index"]],"Revoke privilege":[[11,"revoke-privilege"]],"Run SQL":[[12,"run-sql"]],"Run Team":[[3,"run-team"],[4,"run-team"]],"Select AI Actions":[[2,"id1"]],"Select AI Agent Tools":[[3,"id2"]],"Select AI Async Agent Tools":[[4,null]],"Show SQL":[[12,"show-sql"]],"Single table synthetic data":[[16,"single-table-synthetic-data"]],"Summarize":[[5,"summarize"],[12,"summarize"]],"Summary":[[0,"summary"]],"SummaryParams":[[15,null]],"SummaryStyle":[[15,"summarystyle"]],"Supported Actions":[[2,null]],"Supported Tools":[[3,"supported-tools"]],"Sync API":[[8,"sync-api"],[14,"sync-api"],[14,"id2"],[16,"sync-api"],[16,"id1"]],"Synchronous connection":[[6,"synchronous-connection"]],"Synthetic Data":[[0,"synthetic-data"]],"SyntheticDataAttributes":[[16,null]],"SyntheticDataParams":[[16,"syntheticdataparams"]],"Task":[[3,"task"]],"Team":[[3,"team"]],"Tool":[[3,null]],"Translate":[[5,"translate"],[12,"translate"]],"Update vector index attributes":[[17,"update-vector-index-attributes"]],"Vector Index":[[0,"vector-index"]],"VectorIndex API":[[17,"vectorindex-api"]],"VectorIndex Object Model":[[17,null]],"VectorIndexAttributes":[[17,"vectorindexattributes"]],"Web Search Agent using OpenAI\u2019s GPT model":[[3,"web-search-agent-using-openai-s-gpt-model"],[4,"web-search-agent-using-openai-s-gpt-model"]],"select_ai documentation":[[0,null]],"select_ai installation":[[9,"select-ai-installation"]]},"docnames":["index","license","user_guide/actions","user_guide/agent","user_guide/async_agent","user_guide/async_profile","user_guide/connection","user_guide/conversation","user_guide/credential","user_guide/installation","user_guide/introduction","user_guide/privileges","user_guide/profile","user_guide/profile_attributes","user_guide/provider","user_guide/summary","user_guide/synthetic_data","user_guide/vector_index"],"envversion":{"sphinx":65,"sphinx.domains.c":3,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":9,"sphinx.domains.index":1,"sphinx.domains.javascript":3,"sphinx.domains.math":2,"sphinx.domains.python":4,"sphinx.domains.rst":2,"sphinx.domains.std":2},"filenames":["index.rst","license.rst","user_guide/actions.rst","user_guide/agent.rst","user_guide/async_agent.rst","user_guide/async_profile.rst","user_guide/connection.rst","user_guide/conversation.rst","user_guide/credential.rst","user_guide/installation.rst","user_guide/introduction.rst","user_guide/privileges.rst","user_guide/profile.rst","user_guide/profile_attributes.rst","user_guide/provider.rst","user_guide/summary.rst","user_guide/synthetic_data.rst","user_guide/vector_index.rst"],"indexentries":{"add_negative_feedback() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.add_negative_feedback",false]],"add_negative_feedback() (select_ai.profile method)":[[12,"select_ai.Profile.add_negative_feedback",false]],"add_positive_feedback() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.add_positive_feedback",false]],"add_positive_feedback() (select_ai.profile method)":[[12,"select_ai.Profile.add_positive_feedback",false]],"agent (class in select_ai.agent)":[[3,"select_ai.agent.Agent",false]],"agentattributes (class in select_ai.agent)":[[3,"select_ai.agent.AgentAttributes",false]],"anthropicprovider (class in select_ai)":[[14,"select_ai.AnthropicProvider",false]],"asyncagent (class in select_ai.agent)":[[4,"select_ai.agent.AsyncAgent",false]],"asyncconversation (class in select_ai)":[[7,"select_ai.AsyncConversation",false]],"asyncprofile (class in select_ai)":[[5,"select_ai.AsyncProfile",false]],"asynctask (class in select_ai.agent)":[[4,"select_ai.agent.AsyncTask",false]],"asyncteam (class in select_ai.agent)":[[4,"select_ai.agent.AsyncTeam",false]],"asynctool (class in select_ai.agent)":[[4,"select_ai.agent.AsyncTool",false]],"asyncvectorindex (class in select_ai)":[[17,"select_ai.AsyncVectorIndex",false]],"awsprovider (class in select_ai)":[[14,"select_ai.AWSProvider",false]],"azureprovider (class in select_ai)":[[14,"select_ai.AzureProvider",false]],"baseprofile (class in select_ai)":[[12,"select_ai.BaseProfile",false]],"chat() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.chat",false]],"chat() (select_ai.profile method)":[[12,"select_ai.Profile.chat",false]],"chat_session() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.chat_session",false]],"chat_session() (select_ai.profile method)":[[12,"select_ai.Profile.chat_session",false]],"chunkprocessingmethod (class in select_ai.summary)":[[15,"select_ai.summary.ChunkProcessingMethod",false]],"cohereprovider (class in select_ai)":[[14,"select_ai.CohereProvider",false]],"conversation (class in select_ai)":[[7,"select_ai.Conversation",false]],"conversationattributes (class in select_ai)":[[7,"select_ai.ConversationAttributes",false]],"create() (select_ai.agent.agent method)":[[3,"select_ai.agent.Agent.create",false]],"create() (select_ai.agent.asyncagent method)":[[4,"select_ai.agent.AsyncAgent.create",false]],"create() (select_ai.agent.asynctask method)":[[4,"select_ai.agent.AsyncTask.create",false]],"create() (select_ai.agent.asyncteam method)":[[4,"select_ai.agent.AsyncTeam.create",false]],"create() (select_ai.agent.task method)":[[3,"select_ai.agent.Task.create",false]],"create() (select_ai.agent.team method)":[[3,"select_ai.agent.Team.create",false]],"create() (select_ai.asyncconversation method)":[[7,"select_ai.AsyncConversation.create",false]],"create() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.create",false]],"create() (select_ai.asyncvectorindex method)":[[17,"select_ai.AsyncVectorIndex.create",false]],"create() (select_ai.conversation method)":[[7,"select_ai.Conversation.create",false]],"create() (select_ai.profile method)":[[12,"select_ai.Profile.create",false]],"create() (select_ai.vectorindex method)":[[17,"select_ai.VectorIndex.create",false]],"create_built_in_tool() (select_ai.agent.asynctool class method)":[[4,"select_ai.agent.AsyncTool.create_built_in_tool",false]],"create_built_in_tool() (select_ai.agent.tool class method)":[[3,"select_ai.agent.Tool.create_built_in_tool",false]],"create_email_notification_tool() (select_ai.agent.asynctool class method)":[[4,"select_ai.agent.AsyncTool.create_email_notification_tool",false]],"create_email_notification_tool() (select_ai.agent.tool class method)":[[3,"select_ai.agent.Tool.create_email_notification_tool",false]],"create_pl_sql_tool() (select_ai.agent.asynctool class method)":[[4,"select_ai.agent.AsyncTool.create_pl_sql_tool",false]],"create_pl_sql_tool() (select_ai.agent.tool class method)":[[3,"select_ai.agent.Tool.create_pl_sql_tool",false]],"create_rag_tool() (select_ai.agent.asynctool class method)":[[4,"select_ai.agent.AsyncTool.create_rag_tool",false]],"create_rag_tool() (select_ai.agent.tool class method)":[[3,"select_ai.agent.Tool.create_rag_tool",false]],"create_slack_notification_tool() (select_ai.agent.asynctool class method)":[[4,"select_ai.agent.AsyncTool.create_slack_notification_tool",false]],"create_slack_notification_tool() (select_ai.agent.tool class method)":[[3,"select_ai.agent.Tool.create_slack_notification_tool",false]],"create_sql_tool() (select_ai.agent.asynctool class method)":[[4,"select_ai.agent.AsyncTool.create_sql_tool",false]],"create_sql_tool() (select_ai.agent.tool class method)":[[3,"select_ai.agent.Tool.create_sql_tool",false]],"create_websearch_tool() (select_ai.agent.asynctool class method)":[[4,"select_ai.agent.AsyncTool.create_websearch_tool",false]],"create_websearch_tool() (select_ai.agent.tool class method)":[[3,"select_ai.agent.Tool.create_websearch_tool",false]],"delete() (select_ai.agent.agent method)":[[3,"select_ai.agent.Agent.delete",false]],"delete() (select_ai.agent.asyncagent method)":[[4,"select_ai.agent.AsyncAgent.delete",false]],"delete() (select_ai.agent.asynctask method)":[[4,"select_ai.agent.AsyncTask.delete",false]],"delete() (select_ai.agent.asyncteam method)":[[4,"select_ai.agent.AsyncTeam.delete",false]],"delete() (select_ai.agent.asynctool method)":[[4,"select_ai.agent.AsyncTool.delete",false]],"delete() (select_ai.agent.task method)":[[3,"select_ai.agent.Task.delete",false]],"delete() (select_ai.agent.team method)":[[3,"select_ai.agent.Team.delete",false]],"delete() (select_ai.agent.tool method)":[[3,"select_ai.agent.Tool.delete",false]],"delete() (select_ai.asyncconversation method)":[[7,"select_ai.AsyncConversation.delete",false]],"delete() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.delete",false]],"delete() (select_ai.asyncvectorindex method)":[[17,"select_ai.AsyncVectorIndex.delete",false]],"delete() (select_ai.conversation method)":[[7,"select_ai.Conversation.delete",false]],"delete() (select_ai.profile method)":[[12,"select_ai.Profile.delete",false]],"delete() (select_ai.vectorindex method)":[[17,"select_ai.VectorIndex.delete",false]],"delete_agent() (select_ai.agent.agent class method)":[[3,"select_ai.agent.Agent.delete_agent",false]],"delete_agent() (select_ai.agent.asyncagent class method)":[[4,"select_ai.agent.AsyncAgent.delete_agent",false]],"delete_feedback() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.delete_feedback",false]],"delete_feedback() (select_ai.profile method)":[[12,"select_ai.Profile.delete_feedback",false]],"delete_index() (select_ai.asyncvectorindex class method)":[[17,"select_ai.AsyncVectorIndex.delete_index",false]],"delete_index() (select_ai.vectorindex class method)":[[17,"select_ai.VectorIndex.delete_index",false]],"delete_profile() (select_ai.asyncprofile class method)":[[5,"select_ai.AsyncProfile.delete_profile",false]],"delete_profile() (select_ai.profile class method)":[[12,"select_ai.Profile.delete_profile",false]],"delete_task() (select_ai.agent.asynctask class method)":[[4,"select_ai.agent.AsyncTask.delete_task",false]],"delete_task() (select_ai.agent.task class method)":[[3,"select_ai.agent.Task.delete_task",false]],"delete_team() (select_ai.agent.asyncteam class method)":[[4,"select_ai.agent.AsyncTeam.delete_team",false]],"delete_team() (select_ai.agent.team class method)":[[3,"select_ai.agent.Team.delete_team",false]],"delete_tool() (select_ai.agent.asynctool class method)":[[4,"select_ai.agent.AsyncTool.delete_tool",false]],"delete_tool() (select_ai.agent.tool class method)":[[3,"select_ai.agent.Tool.delete_tool",false]],"disable() (select_ai.agent.agent method)":[[3,"select_ai.agent.Agent.disable",false]],"disable() (select_ai.agent.asyncagent method)":[[4,"select_ai.agent.AsyncAgent.disable",false]],"disable() (select_ai.agent.asynctask method)":[[4,"select_ai.agent.AsyncTask.disable",false]],"disable() (select_ai.agent.asyncteam method)":[[4,"select_ai.agent.AsyncTeam.disable",false]],"disable() (select_ai.agent.asynctool method)":[[4,"select_ai.agent.AsyncTool.disable",false]],"disable() (select_ai.agent.task method)":[[3,"select_ai.agent.Task.disable",false]],"disable() (select_ai.agent.team method)":[[3,"select_ai.agent.Team.disable",false]],"disable() (select_ai.agent.tool method)":[[3,"select_ai.agent.Tool.disable",false]],"disable() (select_ai.asyncvectorindex method)":[[17,"select_ai.AsyncVectorIndex.disable",false]],"disable() (select_ai.vectorindex method)":[[17,"select_ai.VectorIndex.disable",false]],"enable() (select_ai.agent.agent method)":[[3,"select_ai.agent.Agent.enable",false]],"enable() (select_ai.agent.asyncagent method)":[[4,"select_ai.agent.AsyncAgent.enable",false]],"enable() (select_ai.agent.asynctask method)":[[4,"select_ai.agent.AsyncTask.enable",false]],"enable() (select_ai.agent.asyncteam method)":[[4,"select_ai.agent.AsyncTeam.enable",false]],"enable() (select_ai.agent.asynctool method)":[[4,"select_ai.agent.AsyncTool.enable",false]],"enable() (select_ai.agent.task method)":[[3,"select_ai.agent.Task.enable",false]],"enable() (select_ai.agent.team method)":[[3,"select_ai.agent.Team.enable",false]],"enable() (select_ai.agent.tool method)":[[3,"select_ai.agent.Tool.enable",false]],"enable() (select_ai.asyncvectorindex method)":[[17,"select_ai.AsyncVectorIndex.enable",false]],"enable() (select_ai.vectorindex method)":[[17,"select_ai.VectorIndex.enable",false]],"explain_sql() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.explain_sql",false]],"explain_sql() (select_ai.profile method)":[[12,"select_ai.Profile.explain_sql",false]],"extractivenesslevel (class in select_ai.summary)":[[15,"select_ai.summary.ExtractivenessLevel",false]],"fetch() (select_ai.agent.agent class method)":[[3,"select_ai.agent.Agent.fetch",false]],"fetch() (select_ai.agent.asyncagent class method)":[[4,"select_ai.agent.AsyncAgent.fetch",false]],"fetch() (select_ai.agent.asynctask class method)":[[4,"select_ai.agent.AsyncTask.fetch",false]],"fetch() (select_ai.agent.asyncteam class method)":[[4,"select_ai.agent.AsyncTeam.fetch",false]],"fetch() (select_ai.agent.asynctool class method)":[[4,"select_ai.agent.AsyncTool.fetch",false]],"fetch() (select_ai.agent.task class method)":[[3,"select_ai.agent.Task.fetch",false]],"fetch() (select_ai.agent.team class method)":[[3,"select_ai.agent.Team.fetch",false]],"fetch() (select_ai.agent.tool class method)":[[3,"select_ai.agent.Tool.fetch",false]],"fetch() (select_ai.asyncconversation class method)":[[7,"select_ai.AsyncConversation.fetch",false]],"fetch() (select_ai.asyncprofile class method)":[[5,"select_ai.AsyncProfile.fetch",false]],"fetch() (select_ai.asyncvectorindex class method)":[[17,"select_ai.AsyncVectorIndex.fetch",false]],"fetch() (select_ai.conversation class method)":[[7,"select_ai.Conversation.fetch",false]],"fetch() (select_ai.profile class method)":[[12,"select_ai.Profile.fetch",false]],"fetch() (select_ai.vectorindex class method)":[[17,"select_ai.VectorIndex.fetch",false]],"generate() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.generate",false]],"generate() (select_ai.profile method)":[[12,"select_ai.Profile.generate",false]],"generate_synthetic_data() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.generate_synthetic_data",false]],"generate_synthetic_data() (select_ai.profile method)":[[12,"select_ai.Profile.generate_synthetic_data",false]],"get_attributes() (select_ai.asyncconversation method)":[[7,"select_ai.AsyncConversation.get_attributes",false]],"get_attributes() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.get_attributes",false]],"get_attributes() (select_ai.asyncvectorindex method)":[[17,"select_ai.AsyncVectorIndex.get_attributes",false]],"get_attributes() (select_ai.conversation method)":[[7,"select_ai.Conversation.get_attributes",false]],"get_attributes() (select_ai.profile method)":[[12,"select_ai.Profile.get_attributes",false]],"get_attributes() (select_ai.vectorindex method)":[[17,"select_ai.VectorIndex.get_attributes",false]],"get_profile() (select_ai.asyncvectorindex method)":[[17,"select_ai.AsyncVectorIndex.get_profile",false]],"get_profile() (select_ai.vectorindex method)":[[17,"select_ai.VectorIndex.get_profile",false]],"googleprovider (class in select_ai)":[[14,"select_ai.GoogleProvider",false]],"huggingfaceprovider (class in select_ai)":[[14,"select_ai.HuggingFaceProvider",false]],"list() (select_ai.agent.agent class method)":[[3,"select_ai.agent.Agent.list",false]],"list() (select_ai.agent.asyncagent class method)":[[4,"select_ai.agent.AsyncAgent.list",false]],"list() (select_ai.agent.asynctask class method)":[[4,"select_ai.agent.AsyncTask.list",false]],"list() (select_ai.agent.asyncteam class method)":[[4,"select_ai.agent.AsyncTeam.list",false]],"list() (select_ai.agent.asynctool class method)":[[4,"select_ai.agent.AsyncTool.list",false]],"list() (select_ai.agent.task class method)":[[3,"select_ai.agent.Task.list",false]],"list() (select_ai.agent.team class method)":[[3,"select_ai.agent.Team.list",false]],"list() (select_ai.agent.tool class method)":[[3,"select_ai.agent.Tool.list",false]],"list() (select_ai.asyncconversation class method)":[[7,"select_ai.AsyncConversation.list",false]],"list() (select_ai.asyncprofile class method)":[[5,"select_ai.AsyncProfile.list",false]],"list() (select_ai.asyncvectorindex class method)":[[17,"select_ai.AsyncVectorIndex.list",false]],"list() (select_ai.conversation class method)":[[7,"select_ai.Conversation.list",false]],"list() (select_ai.profile class method)":[[12,"select_ai.Profile.list",false]],"list() (select_ai.vectorindex class method)":[[17,"select_ai.VectorIndex.list",false]],"narrate() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.narrate",false]],"narrate() (select_ai.profile method)":[[12,"select_ai.Profile.narrate",false]],"ocigenaiprovider (class in select_ai)":[[14,"select_ai.OCIGenAIProvider",false]],"openaiprovider (class in select_ai)":[[14,"select_ai.OpenAIProvider",false]],"oraclevectorindexattributes (class in select_ai)":[[17,"select_ai.OracleVectorIndexAttributes",false]],"profile (class in select_ai)":[[12,"select_ai.Profile",false]],"profileattributes (class in select_ai)":[[13,"select_ai.ProfileAttributes",false]],"provider (class in select_ai)":[[14,"select_ai.Provider",false]],"run() (select_ai.agent.asyncteam method)":[[4,"select_ai.agent.AsyncTeam.run",false]],"run() (select_ai.agent.team method)":[[3,"select_ai.agent.Team.run",false]],"run_pipeline() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.run_pipeline",false]],"run_sql() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.run_sql",false]],"run_sql() (select_ai.profile method)":[[12,"select_ai.Profile.run_sql",false]],"set_attribute() (select_ai.agent.agent method)":[[3,"select_ai.agent.Agent.set_attribute",false]],"set_attribute() (select_ai.agent.asyncagent method)":[[4,"select_ai.agent.AsyncAgent.set_attribute",false]],"set_attribute() (select_ai.agent.asynctask method)":[[4,"select_ai.agent.AsyncTask.set_attribute",false]],"set_attribute() (select_ai.agent.asyncteam method)":[[4,"select_ai.agent.AsyncTeam.set_attribute",false]],"set_attribute() (select_ai.agent.asynctool method)":[[4,"select_ai.agent.AsyncTool.set_attribute",false]],"set_attribute() (select_ai.agent.task method)":[[3,"select_ai.agent.Task.set_attribute",false]],"set_attribute() (select_ai.agent.team method)":[[3,"select_ai.agent.Team.set_attribute",false]],"set_attribute() (select_ai.agent.tool method)":[[3,"select_ai.agent.Tool.set_attribute",false]],"set_attribute() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.set_attribute",false]],"set_attribute() (select_ai.asyncvectorindex method)":[[17,"select_ai.AsyncVectorIndex.set_attribute",false]],"set_attribute() (select_ai.profile method)":[[12,"select_ai.Profile.set_attribute",false]],"set_attribute() (select_ai.vectorindex method)":[[17,"select_ai.VectorIndex.set_attribute",false]],"set_attributes() (select_ai.agent.agent method)":[[3,"select_ai.agent.Agent.set_attributes",false]],"set_attributes() (select_ai.agent.asyncagent method)":[[4,"select_ai.agent.AsyncAgent.set_attributes",false]],"set_attributes() (select_ai.agent.asynctask method)":[[4,"select_ai.agent.AsyncTask.set_attributes",false]],"set_attributes() (select_ai.agent.asyncteam method)":[[4,"select_ai.agent.AsyncTeam.set_attributes",false]],"set_attributes() (select_ai.agent.asynctool method)":[[4,"select_ai.agent.AsyncTool.set_attributes",false]],"set_attributes() (select_ai.agent.task method)":[[3,"select_ai.agent.Task.set_attributes",false]],"set_attributes() (select_ai.agent.team method)":[[3,"select_ai.agent.Team.set_attributes",false]],"set_attributes() (select_ai.agent.tool method)":[[3,"select_ai.agent.Tool.set_attributes",false]],"set_attributes() (select_ai.asyncconversation method)":[[7,"select_ai.AsyncConversation.set_attributes",false]],"set_attributes() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.set_attributes",false]],"set_attributes() (select_ai.asyncvectorindex method)":[[17,"select_ai.AsyncVectorIndex.set_attributes",false]],"set_attributes() (select_ai.conversation method)":[[7,"select_ai.Conversation.set_attributes",false]],"set_attributes() (select_ai.profile method)":[[12,"select_ai.Profile.set_attributes",false]],"set_attributes() (select_ai.vectorindex method)":[[17,"select_ai.VectorIndex.set_attributes",false]],"show_prompt() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.show_prompt",false]],"show_prompt() (select_ai.profile method)":[[12,"select_ai.Profile.show_prompt",false]],"show_sql() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.show_sql",false]],"show_sql() (select_ai.profile method)":[[12,"select_ai.Profile.show_sql",false]],"style (class in select_ai.summary)":[[15,"select_ai.summary.Style",false]],"summarize() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.summarize",false]],"summarize() (select_ai.profile method)":[[12,"select_ai.Profile.summarize",false]],"summaryparams (class in select_ai.summary)":[[15,"select_ai.summary.SummaryParams",false]],"syntheticdataattributes (class in select_ai)":[[16,"select_ai.SyntheticDataAttributes",false]],"syntheticdataparams (class in select_ai)":[[16,"select_ai.SyntheticDataParams",false]],"task (class in select_ai.agent)":[[3,"select_ai.agent.Task",false]],"taskattributes (class in select_ai.agent)":[[3,"select_ai.agent.TaskAttributes",false]],"team (class in select_ai.agent)":[[3,"select_ai.agent.Team",false]],"teamattributes (class in select_ai.agent)":[[3,"select_ai.agent.TeamAttributes",false]],"tool (class in select_ai.agent)":[[3,"select_ai.agent.Tool",false]],"toolattributes (class in select_ai.agent)":[[3,"select_ai.agent.ToolAttributes",false]],"toolparams (class in select_ai.agent)":[[3,"select_ai.agent.ToolParams",false]],"translate() (select_ai.asyncprofile method)":[[5,"select_ai.AsyncProfile.translate",false]],"translate() (select_ai.profile method)":[[12,"select_ai.Profile.translate",false]],"vectorindex (class in select_ai)":[[17,"select_ai.VectorIndex",false]],"vectorindexattributes (class in select_ai)":[[17,"select_ai.VectorIndexAttributes",false]]},"objects":{"select_ai":[[14,0,1,"","AWSProvider"],[14,0,1,"","AnthropicProvider"],[7,0,1,"","AsyncConversation"],[5,0,1,"","AsyncProfile"],[17,0,1,"","AsyncVectorIndex"],[14,0,1,"","AzureProvider"],[12,0,1,"","BaseProfile"],[14,0,1,"","CohereProvider"],[7,0,1,"","Conversation"],[7,0,1,"","ConversationAttributes"],[14,0,1,"","GoogleProvider"],[14,0,1,"","HuggingFaceProvider"],[14,0,1,"","OCIGenAIProvider"],[14,0,1,"","OpenAIProvider"],[17,0,1,"","OracleVectorIndexAttributes"],[12,0,1,"","Profile"],[13,0,1,"","ProfileAttributes"],[14,0,1,"","Provider"],[16,0,1,"","SyntheticDataAttributes"],[16,0,1,"","SyntheticDataParams"],[17,0,1,"","VectorIndex"],[17,0,1,"","VectorIndexAttributes"]],"select_ai.AsyncConversation":[[7,1,1,"","create"],[7,1,1,"","delete"],[7,1,1,"","fetch"],[7,1,1,"","get_attributes"],[7,1,1,"","list"],[7,1,1,"","set_attributes"]],"select_ai.AsyncProfile":[[5,1,1,"","add_negative_feedback"],[5,1,1,"","add_positive_feedback"],[5,1,1,"","chat"],[5,1,1,"","chat_session"],[5,1,1,"","create"],[5,1,1,"","delete"],[5,1,1,"","delete_feedback"],[5,1,1,"","delete_profile"],[5,1,1,"","explain_sql"],[5,1,1,"","fetch"],[5,1,1,"","generate"],[5,1,1,"","generate_synthetic_data"],[5,1,1,"","get_attributes"],[5,1,1,"","list"],[5,1,1,"","narrate"],[5,1,1,"","run_pipeline"],[5,1,1,"","run_sql"],[5,1,1,"","set_attribute"],[5,1,1,"","set_attributes"],[5,1,1,"","show_prompt"],[5,1,1,"","show_sql"],[5,1,1,"","summarize"],[5,1,1,"","translate"]],"select_ai.AsyncVectorIndex":[[17,1,1,"","create"],[17,1,1,"","delete"],[17,1,1,"","delete_index"],[17,1,1,"","disable"],[17,1,1,"","enable"],[17,1,1,"","fetch"],[17,1,1,"","get_attributes"],[17,1,1,"","get_profile"],[17,1,1,"","list"],[17,1,1,"","set_attribute"],[17,1,1,"","set_attributes"]],"select_ai.Conversation":[[7,1,1,"","create"],[7,1,1,"","delete"],[7,1,1,"","fetch"],[7,1,1,"","get_attributes"],[7,1,1,"","list"],[7,1,1,"","set_attributes"]],"select_ai.Profile":[[12,1,1,"","add_negative_feedback"],[12,1,1,"","add_positive_feedback"],[12,1,1,"","chat"],[12,1,1,"","chat_session"],[12,1,1,"","create"],[12,1,1,"","delete"],[12,1,1,"","delete_feedback"],[12,1,1,"","delete_profile"],[12,1,1,"","explain_sql"],[12,1,1,"","fetch"],[12,1,1,"","generate"],[12,1,1,"","generate_synthetic_data"],[12,1,1,"","get_attributes"],[12,1,1,"","list"],[12,1,1,"","narrate"],[12,1,1,"","run_sql"],[12,1,1,"","set_attribute"],[12,1,1,"","set_attributes"],[12,1,1,"","show_prompt"],[12,1,1,"","show_sql"],[12,1,1,"","summarize"],[12,1,1,"","translate"]],"select_ai.VectorIndex":[[17,1,1,"","create"],[17,1,1,"","delete"],[17,1,1,"","delete_index"],[17,1,1,"","disable"],[17,1,1,"","enable"],[17,1,1,"","fetch"],[17,1,1,"","get_attributes"],[17,1,1,"","get_profile"],[17,1,1,"","list"],[17,1,1,"","set_attribute"],[17,1,1,"","set_attributes"]],"select_ai.agent":[[3,0,1,"","Agent"],[3,0,1,"","AgentAttributes"],[4,0,1,"","AsyncAgent"],[4,0,1,"","AsyncTask"],[4,0,1,"","AsyncTeam"],[4,0,1,"","AsyncTool"],[3,0,1,"","Task"],[3,0,1,"","TaskAttributes"],[3,0,1,"","Team"],[3,0,1,"","TeamAttributes"],[3,0,1,"","Tool"],[3,0,1,"","ToolAttributes"],[3,0,1,"","ToolParams"]],"select_ai.agent.Agent":[[3,1,1,"","create"],[3,1,1,"","delete"],[3,1,1,"","delete_agent"],[3,1,1,"","disable"],[3,1,1,"","enable"],[3,1,1,"","fetch"],[3,1,1,"","list"],[3,1,1,"","set_attribute"],[3,1,1,"","set_attributes"]],"select_ai.agent.AsyncAgent":[[4,1,1,"","create"],[4,1,1,"","delete"],[4,1,1,"","delete_agent"],[4,1,1,"","disable"],[4,1,1,"","enable"],[4,1,1,"","fetch"],[4,1,1,"","list"],[4,1,1,"","set_attribute"],[4,1,1,"","set_attributes"]],"select_ai.agent.AsyncTask":[[4,1,1,"","create"],[4,1,1,"","delete"],[4,1,1,"","delete_task"],[4,1,1,"","disable"],[4,1,1,"","enable"],[4,1,1,"","fetch"],[4,1,1,"","list"],[4,1,1,"","set_attribute"],[4,1,1,"","set_attributes"]],"select_ai.agent.AsyncTeam":[[4,1,1,"","create"],[4,1,1,"","delete"],[4,1,1,"","delete_team"],[4,1,1,"","disable"],[4,1,1,"","enable"],[4,1,1,"","fetch"],[4,1,1,"","list"],[4,1,1,"","run"],[4,1,1,"","set_attribute"],[4,1,1,"","set_attributes"]],"select_ai.agent.AsyncTool":[[4,1,1,"","create_built_in_tool"],[4,1,1,"","create_email_notification_tool"],[4,1,1,"","create_pl_sql_tool"],[4,1,1,"","create_rag_tool"],[4,1,1,"","create_slack_notification_tool"],[4,1,1,"","create_sql_tool"],[4,1,1,"","create_websearch_tool"],[4,1,1,"","delete"],[4,1,1,"","delete_tool"],[4,1,1,"","disable"],[4,1,1,"","enable"],[4,1,1,"","fetch"],[4,1,1,"","list"],[4,1,1,"","set_attribute"],[4,1,1,"","set_attributes"]],"select_ai.agent.Task":[[3,1,1,"","create"],[3,1,1,"","delete"],[3,1,1,"","delete_task"],[3,1,1,"","disable"],[3,1,1,"","enable"],[3,1,1,"","fetch"],[3,1,1,"","list"],[3,1,1,"","set_attribute"],[3,1,1,"","set_attributes"]],"select_ai.agent.Team":[[3,1,1,"","create"],[3,1,1,"","delete"],[3,1,1,"","delete_team"],[3,1,1,"","disable"],[3,1,1,"","enable"],[3,1,1,"","fetch"],[3,1,1,"","list"],[3,1,1,"","run"],[3,1,1,"","set_attribute"],[3,1,1,"","set_attributes"]],"select_ai.agent.Tool":[[3,1,1,"","create_built_in_tool"],[3,1,1,"","create_email_notification_tool"],[3,1,1,"","create_pl_sql_tool"],[3,1,1,"","create_rag_tool"],[3,1,1,"","create_slack_notification_tool"],[3,1,1,"","create_sql_tool"],[3,1,1,"","create_websearch_tool"],[3,1,1,"","delete"],[3,1,1,"","delete_tool"],[3,1,1,"","disable"],[3,1,1,"","enable"],[3,1,1,"","fetch"],[3,1,1,"","list"],[3,1,1,"","set_attribute"],[3,1,1,"","set_attributes"]],"select_ai.summary":[[15,0,1,"","ChunkProcessingMethod"],[15,0,1,"","ExtractivenessLevel"],[15,0,1,"","Style"],[15,0,1,"","SummaryParams"]]},"objnames":{"0":["py","class","Python class"],"1":["py","method","Python method"]},"objtypes":{"0":"py:class","1":"py:method"},"terms":{"":[0,1,5,7,9,12,14,16,17],"0":[1,5,7,12,17],"01":[3,4],"02":[3,4],"03":[3,4],"04":[3,4],"05":[3,4],"06":[3,4],"07":[3,4],"07b9":[3,4],"08":[3,4],"09":[3,4],"1":[1,3,4,5,7,12,17],"10":[3,4,7,9,10,16],"100":[3,4,16],"1024":[5,12,13,17],"11":[9,10],"11c8":7,"12":[9,10],"128":17,"128e":[3,4],"13":[9,10,16],"14":9,"1440":[],"1450":17,"151b000ad3b4":7,"17b":[3,4],"2":[3,4,5,17],"20000":5,"2019":[3,4,16],"2025":1,"25e23a25":[3,4],"3":[3,4,5,9,10,17],"300":16,"37ddc22e":7,"37df777f":7,"380a1910":7,"3ab2ed3":7,"3d49":7,"4":[3,4,5,17],"40":16,"400":[5,12],"40e7":[3,4],"463a":[3,4],"4ed7":[3,4],"5":[3,4,5,16,17],"503":[5,12],"5275a80":7,"55":[5,12],"5bf2":7,"6":[3,4],"7":[3,4,7],"7e52":7,"8":[3,4],"80":9,"8000":7,"9":[3,4,9,10],"987c":[3,4],"A":[1,3,4,5,12,17],"AND":1,"AS":[1,5,12],"BE":1,"BUT":1,"By":7,"FOR":1,"For":[3,5,6,9,12,16,17],"IN":1,"If":[3,4,7,9],"In":[3,4,8,17],"It":[0,5,10,12,15],"NO":1,"NOT":1,"No":[3,4],"OF":1,"OR":1,"THE":1,"TO":1,"The":[1,3,4,5,7,8,10,12,13,14,15,16,17],"There":12,"These":[3,4,14,17],"To":[5,6,9,14,17],"WITH":1,"_":1,"_required_field":[3,4],"a290":7,"a489":[3,4],"abil":7,"about":[3,4,5,12,17],"abov":1,"abstract":12,"access":[2,3,4,5,12,13,14,17],"accomplish":[3,4],"accuraci":2,"acl":14,"acquir":[5,12],"act":[2,3,4],"action":[1,3,4,5,12],"activ":17,"actor":[3,4,16],"actual":[5,12],"ad":17,"add":[3,14],"add_negative_feedback":[0,5,12],"add_positive_feedback":[0,5,12],"addit":[3,4,6],"addition":[5,12],"adjac":17,"admin":11,"admin_us":[11,14],"administr":5,"advanc":[3,4],"adventur":[3,4],"affili":1,"after":[5,12],"agent_attribut":[3,4],"agent_nam":[3,4],"agent_name_pattern":[3,4],"agentattribut":[0,3,4],"agentnotfounderror":[3,4],"agenttasknotfounderror":[3,4],"agentteamnotfounderror":[3,4],"agenttoolnotfounderror":[3,4],"agreement":1,"ai":[1,5,7,11,12,13,17],"alcohol":[5,12],"algorithm":[3,4],"alia":5,"all":[1,3,4,5,7,11,12,13,17],"allow":[3,4,5,14],"along":[6,17],"alreadi":9,"also":[3,4,5,12,14,16,17],"alwai":[],"amazon":12,"amount":[5,12,17],"an":[1,2,3,4,5,6,7,12,13,14,17],"analyst":[3,4],"analyt":[3,4,5,12],"analyz":[3,4,5],"analyze_movie_task":[3,4],"ancient":[5,12],"ani":[1,3,4,9,14],"anim":[3,4],"annot":[5,12,13,17],"anomali":[3,4],"anoth":2,"answer":[3,4,5],"anthrop":[8,14],"anthropicprovid":0,"api":[0,3,9,10,13],"applic":[3,4,5,6],"appreci":7,"approxim":15,"ar":[3,4,5,7,9,12,13,14,15,16,17],"area":[5,12],"arg":[5,12],"argument":[3,4],"aris":1,"arrai":[3,13],"artifici":[3,4,5],"as_complet":5,"ashburn":17,"ask":3,"assign":[3,16],"associ":[1,3,4,5,17],"astrobiologi":[5,12],"astronom":[5,12],"astronomi":[5,12],"async":[0,9],"async_connect":[4,5,6,7,8,14,16,17],"async_convers":7,"async_create_credenti":[4,8],"async_disable_provid":[],"async_enable_provid":[],"async_grant_http_access":14,"async_oci_ai_profil":[5,7,12,16],"async_oci_vector_ai_profil":[12,17],"async_profil":[5,7,16,17],"async_revoke_http_access":14,"async_sess":7,"async_vector_index":17,"asyncag":[0,3],"asyncconvers":[0,5],"asyncgener":[4,5,7,17],"asynchron":[0,4,10,12],"asyncio":[4,5,7,8,14,16,17],"asyncprofil":[0,4,7,12,16,17],"asynctask":[0,3],"asyncteam":[0,3],"asynctool":[0,3],"asyncvectorindex":0,"attach":3,"attribut":[3,4,5,7,12,13,14,16],"attribute_nam":[3,4,5,12,17],"attribute_valu":[3,4,5,12,17],"augment":[10,17],"authent":[5,8,12],"author":1,"autom":[3,4,5,13],"automat":[3,9],"automl":[3,4],"autonom":[3,5],"avail":[9,15],"aw":[12,14],"await":[4,5,6,7,8,14,16,17],"awar":[5,7,12],"aws_apiformat":14,"awsprovid":0,"azur":[12,14],"azure_deployment_nam":14,"azure_embedding_deployment_nam":14,"azure_resource_nam":14,"azureprovid":0,"b":[1,17],"b2":[5,12],"back":12,"base":[0,3,4,5,6,10,14,17],"baseprofil":[0,12,17],"be11":[3,4],"be1a000a15b6":7,"becom":[5,12],"beer":[5,12],"befor":[5,11],"begin":13,"behavior":[2,3,13,17],"behind":9,"being":[5,12,14],"below":[1,6,16,17],"benefit":[3,4],"better":9,"between":[0,7,17],"biograph":[3,4],"biographi":[3,4],"block":[12,14,17],"bool":[3,4,5,7,12,13,16,17],"both":[1,10,14,17],"branch":[5,12],"breakdown":5,"brew":[5,12],"bridg":0,"bucket":17,"build":[3,4,5,7,17],"built":[3,4,12],"burn":[5,12],"busi":[3,4,5],"c":[1,5],"c2e3ff20":[3,4],"calcul":[5,17],"call":[3,14],"callabl":3,"can":[2,3,4,5,6,7,9,12,14,15,17],"cancri":[5,12],"cannot":17,"capabl":[0,3,4],"case":[5,14],"case_sensitive_valu":[5,12,13,17],"cc72740c75a5":[3,4],"celesti":[5,12],"certain":3,"chain":3,"challeng":7,"channel":[3,4],"charact":17,"charg":1,"chat":[0,2],"chat_sess":[0,5,7,12],"chat_task":5,"chatgpt":[3,4],"check":[16,17],"chemistri":[5,12],"chicago":[3,4,5,12,17],"choic":17,"choos":[3,15],"chunk":[15,17],"chunk_overlap":17,"chunk_processing_method":15,"chunk_siz":17,"chunkprocessingmethod":0,"civil":[5,12],"claim":1,"clarif":3,"clarifi":2,"class":[3,4,5,7,12,13,14,15,16,17],"classif":[3,4],"classmethod":[3,4,5,7,12,17],"clear":[],"climat":7,"close":15,"cloud":[3,4,5,12,14],"clue":[5,12],"cluster":[3,4,14],"coher":[14,17],"cohereprovid":0,"collect":[1,5,17],"column":[3,5,12,13],"com":[3,4,9,14,17],"combin":7,"comedi":[3,4],"comment":[3,5,12,13,16,17],"compar":17,"compart":14,"compet":12,"complet":[1,16],"complianc":[3,4],"compliant":[3,4],"compon":5,"compos":3,"composit":[3,5,12],"comprehens":[7,12],"comput":[5,12],"concept":14,"concret":14,"concurr":[0,10,12,17],"conda":17,"condit":1,"config":8,"configur":[3,13,17],"connect":[0,1,3,4,7,8,9,11,12,14,16,17],"consid":17,"constantli":[5,12],"constraint":[5,12,13,17],"consum":16,"contain":[3,4,5,12,15,17],"content":[2,3,4,5,12,17],"context":[3,5,7,12],"contextu":7,"continu":[3,4,5],"continue_on_error":5,"contract":1,"contribut":1,"control":[15,16],"convers":[2,3,4,5,12,13,17],"conversation_attribut":7,"conversation_id":[3,4,5,7,12],"conversation_length":7,"conversationattribut":0,"convert":[14,17],"cool":[5,12],"coordin":3,"copi":1,"copyright":1,"corpor":[5,12],"correct":5,"correspond":[5,8,12],"cosin":17,"could":[3,4,5,12],"count":[5,12,16],"cover":[1,13],"creat":[0,1,5,9,11,13,14],"create_":[],"create_built_in_tool":[3,4],"create_credenti":[3,8],"create_email_notification_tool":[3,4],"create_http_tool":[3,4],"create_pl_sql_tool":[3,4],"create_rag_tool":[3,4],"create_slack_notification_tool":[3,4],"create_sql_tool":[3,4],"create_tool":3,"create_websearch_tool":[3,4],"creation":[0,3,4,7,12],"credenti":[3,4,5,12,13,17],"credential_nam":[3,4,5,8,12,13,17],"cultur":7,"current":[3,4,17],"cust_email":5,"cust_first_nam":5,"cust_id":5,"cust_last_nam":5,"custom":[3,4,5,15,17],"customer_count":5,"d4328a7b2210":[3,4],"d81a000a3fda":7,"d81a000a53b":7,"d81a000a85f":7,"d917b055":[3,4],"da17":7,"dai":7,"damag":1,"dank":[5,12],"data":[1,2,3,4,5,10,12,14,17],"data_guard":3,"databas":[0,3,4,5,7,8,9,11,12,14,16,17],"databaseerror":[5,12,17],"datafram":[5,12],"date":[3,4,7,16],"datetim":7,"db_admin":11,"db_admin_password":11,"db_connect_str":11,"dba":5,"dbms_cloud":11,"dbms_cloud_ai":[0,10,11],"dbms_cloud_ai_ag":[3,11],"dbms_cloud_pipelin":11,"de":[5,12],"deal":1,"dedic":14,"deep":2,"def":[4,5,7,8,14,16,17],"default":[2,3,4,5,8,12,13,16,17],"default_config":8,"defin":[1,3,5,12,13,16,17],"degre":[13,15],"delet":[0,3,4,5,12],"delete_ag":[0,3,4],"delete_feedback":[0,5,12],"delete_index":[0,17],"delete_profil":[0,5,12],"delete_task":[0,3,4],"delete_team":[0,3,4],"delete_tool":[3,4],"demonstr":[],"denot":13,"depend":[3,5,9,14],"deploi":[3,4,5,14],"deploy":[3,4],"deriv":1,"describ":[3,5,12],"descript":[2,3,4,5,7,12,17],"design":[3,5],"despit":[5,12],"detail":[2,11,12,16],"detect":[3,4,5,12],"determin":15,"develop":[3,4,5,7,12],"df":[5,12],"dict":[5,12],"dictionari":3,"differ":[2,3],"dir_containing_tnsnam":11,"directli":[3,4],"director":[3,4,16],"disabl":[0,3,4,16,17],"disable_provid":[],"discoveri":[5,7,12],"displai":[1,2],"distanc":17,"distribut":1,"do":3,"document":[1,11,17],"documentari":[3,4],"doe":[5,12,17],"doesn":5,"dotenv":11,"doubl":5,"drama":[3,4],"drive":5,"driver":6,"drop":7,"dsn":[3,4,5,6,7,8,9,11,12,14,16,17],"dtype":12,"due":[5,12],"dure":3,"dwcsdev":17,"dynam":[5,12],"e":[3,4,5,6,12,16,17],"e063":7,"e8a1":[3,4],"each":[1,3,17],"earli":[5,12],"earliest":13,"easier":5,"ecosystem":0,"effici":5,"either":[1,3,12,17],"elabor":7,"element":[5,12,17],"elig":13,"elimin":[3,4,5],"els":[5,12],"email":[3,4,5],"emb":17,"embed":[14,17],"embedding_model":[5,12,14,17],"empti":12,"en":[5,12],"enabl":[0,2,3,4,5,7,13,15,16,17],"enable_custom_source_uri":[13,17],"enable_human_tool":[3,4],"enable_provid":[],"enable_sourc":[5,12,13,17],"enable_source_offset":[5,12,13,17],"enclos":5,"end":[1,5,12],"endpoint":[3,4,14,17],"enforce_object_list":[5,12,13,17],"english":17,"enhanc":[3,4],"enough":[5,12],"ensur":[3,4,5],"enter":9,"enum":2,"enumer":5,"env":11,"environ":[3,4,11,17],"epic":[3,4],"error":[3,4,5,7,12,17],"essenti":7,"even":[5,12],"event":[1,5,9,12],"evolut":[5,12],"evolv":[5,12],"exampl":[0,5,7,8,9,16,17],"exce":15,"exchang":7,"exclude_nul":[5,12],"execut":[2,3,5,6,11],"exist":[3,4,5,12,17],"exoplanet":[5,12],"expans":[5,12],"expect":[5,12,14,15],"expertis":2,"explain":[0,2,12],"explain_sql":[0,5,12],"explainsql":[2,5],"explan":5,"explicitli":5,"explor":2,"export":[1,11],"express":[1,3,4,5,12,17],"extern":3,"extract":15,"extractiveness_level":15,"extractivenesslevel":0,"extraterrestri":[5,12],"f":5,"f084":7,"f3da":7,"f56d":[3,4],"f7a1":7,"f7e5e445d286":[3,4],"fals":[3,4,5,7,12,16,17],"famili":[3,4],"fantasi":[3,4],"faster":16,"fccenv":17,"featur":[3,4,10],"februari":[3,4],"feedback":[2,5,12],"feedback_cont":[5,12],"fetch":[0,3,4,5,7,12],"fetched_profil":[5,12],"fewer":5,"fi":[3,4],"field":[3,5,12],"file":[1,5,8,9,11,12],"film":[3,4],"find":7,"fingerprint":8,"first":[5,12],"fit":1,"flexibl":[3,4],"float":[5,12,13,17],"focu":5,"focus":[3,4,5,12],"follow":[1,2,3,4,8,11,15,17],"forc":[3,4,5,7,12,17],"forego":1,"foreign":13,"form":[5,12],"format":[5,12,13,14,15],"forth":1,"found":[3,4,5,12],"fp":8,"fp8":[3,4],"framework":[3,4],"free":1,"freeli":1,"from":[1,2,3,4,5,7,8,9,11,12,13,15,16,17],"from_fil":8,"fulfil":3,"full":[5,12],"fulli":17,"function":[3,4,5,12,17],"g":[5,12,16,17],"ga":[5,12],"gain":7,"galaxi":[5,12],"gamma":[5,12],"gap":0,"gcp":12,"gen":[8,14],"gener":[0,2,3,4,5,10,12,13,14,15,16,17],"generate_synthetic_data":[0,5,12,16],"genr":[3,4],"get":[5,7,12,17],"get_attribut":[0,5,7,12,17],"get_profil":[0,17],"getenv":[3,4,5,7,8,11,12,14,16,17],"give":[5,12],"googl":[12,14],"googleprovid":0,"govern":[3,4],"gpt":0,"grant":[0,1],"grant_http_access":14,"grant_privileg":11,"graph":17,"graphenv":17,"gravit":[5,12],"group":3,"guid":[3,5,12,16],"ha":[5,12],"halo":[5,12],"hardwar":1,"have":[1,5,7],"help":[3,4,7,10,17],"here":[3,4,5,7],"herebi":1,"hereund":1,"hf":8,"hf_xxx":8,"high":[3,4,5,12,15,16],"higher":[5,9,16],"highlight":[3,4,14],"histor":[3,4],"histori":[5,7,12,13],"holder":1,"horror":[3,4],"host":[3,4,14],"hot":[5,12],"how":[3,4,5,12,15,17],"http":[3,4,5,9,12,14,17],"https_proxi":6,"https_proxy_port":6,"huggingfac":[8,14],"huggingfaceprovid":0,"human":[3,4],"hyperparamet":[3,4],"i":[0,1,2,3,4,5,6,7,9,10,12,13,15,16,17],"ibm":12,"ic":[5,12],"id":[3,4,5,7],"identifi":[3,4,5,12],"ignor":[5,12,17],"ii":1,"impact":7,"implement":14,"impli":1,"import":[1,3,4,5,6,7,8,9,11,12,14,16,17],"improv":[2,3,4],"includ":[1,3,4,5,7,12,13],"include_data":17,"incorpor":13,"index":[3,4,12,13],"index_nam":17,"index_name_pattern":17,"indic":[13,14,17],"inform":[3,4,16,17],"infrar":[5,12],"infrastructur":[3,4,5,12],"inherit":[3,4],"inlin":[5,12],"input":[3,4,15,17],"insid":[3,4],"insight":[5,7,12],"inspir":[5,12],"instal":0,"instanti":12,"instruct":[2,3,4],"int":[5,7,12,13,15,16,17],"integr":[0,3,4,5,13],"intellectu":7,"intellig":[3,4,5],"intend":3,"interact":[5,7,12],"interfac":[4,5],"interpret":14,"interv":17,"introduc":9,"introduct":0,"invalid":5,"invok":[3,4,10,14],"involv":[],"item":[3,4,17],"iter":[3,4,5,7,12,17],"iterative_refin":15,"its":[1,3,4,5,7,12],"januari":[3,4],"job":17,"json":[13,17],"keep":[3,4],"kei":[3,4,7,8,13,15],"kept":5,"key_cont":8,"key_fil":8,"keyword":[2,4,5,6],"kind":1,"knowledg":7,"known":14,"kwarg":[5,12],"languag":[2,3,4,5,7,12,13,14,17],"larg":[2,5,12],"larger":[1,5],"last":5,"layer":[3,4],"learn":[3,4,5,7],"led":[5,12],"less":13,"let":[3,4,17],"level":[5,17],"leverag":[3,4,5],"li":7,"liabil":1,"liabl":1,"licens":1,"licensor":1,"life":[5,12],"like":[3,4,6],"limit":[1,15],"link":[3,4,17],"list":[0,1,2,13,15,16],"llama":[3,4,14],"llama_4_maverick":[3,4],"llm":[2,3,5,7,12,13,14,15,16],"llm_chat_tool":[3,4],"load":17,"local":[5,12],"locat":17,"location_uri":[5,12],"long":[5,12],"loop":9,"low":[15,16],"lower":13,"lrgrwrk":1,"m":[6,9],"machin":[3,4,5],"made":[1,7],"main":[3,4,5,7,8,14,16,17],"maintain":[3,4],"major":12,"make":[1,2,5,12],"manag":[5,9,13,15,17],"mani":[5,12],"manifest":17,"manipul":5,"manner":[5,7],"manual":[5,7],"map":[3,4,5,12,13,16],"map_reduc":15,"mapped_sql":[5,12],"match":[3,4,5,12,17],"match_limit":17,"mathemat":[5,12],"maverick":[3,4],"max_token":[5,12,13,17],"max_word":15,"maximum":[15,17],"mean":13,"meant":3,"meanwhil":[5,12],"medium":[15,16],"merchant":1,"merg":12,"messag":9,"meta":[3,4],"metadata":[12,13],"method":[3,4,5,6,11,12,14,15,17],"microsoft":12,"milki":[5,12],"min_word":15,"minimum":[1,15,17],"minut":17,"misconcept":7,"mission":[3,4],"mistak":7,"ml":[3,4,5],"mlenv":17,"model":[0,5,14,15],"modul":[0,10],"more":[3,4,5,7,12,15,16],"most":13,"move":[3,4],"movement":[3,4],"movi":[3,4,16],"movie_agent_team":[3,4],"movie_analyst":[3,4],"movie_sql_tool":[3,4],"much":[5,12],"multi":[0,3],"multipl":[3,4,5,12,16,17],"multit":16,"music":[3,4],"must":[1,3,13,15],"my":[3,4,5,12,17],"my_oci_ai_profile_kei":[3,4,5,8,12,17],"myrenv":17,"mysteri":[3,4,5,12],"n":17,"nad":5,"name":[3,4,5,12,13,14,16,17],"narrat":[0,2,5,17],"natur":[2,3,4,5,7,12,13,14,17],"need":[3,4,5,9],"neg":[5,12,13],"network":[5,12],"new":[3,4,5,7,12,17],"next":5,"night":[3,4,5,12],"non":[12,13,17],"none":[3,4,5,7,12,13,14,15,16,17],"noninfring":1,"note":5,"notic":1,"notif":[3,4],"notification_typ":[3,4],"notificationtyp":3,"null":12,"number":[5,7,12,13,15,16,17],"number_of_promot":5,"numer":[5,12],"o":[3,4,5,7,8,11,12,14,16,17],"object":[0,3,4,5,8,13,14,16],"object_list":[3,4,5,12,13,16,17],"object_list_mod":[5,12,13,17],"object_nam":16,"object_storage_credential_nam":17,"objectstor":17,"objectstorag":17,"observ":[5,12],"obtain":1,"occur":[7,17],"oci":[3,4,5,8,12,14,17],"oci_ai_profil":[3,4,5,7,12,16],"oci_apiformat":[3,4,5,12,14,17],"oci_compartment_id":[5,12,14,17],"oci_endpoint_id":[5,12,14,17],"oci_runtimetyp":[5,12,14,17],"oci_vector_ai_profil":[5,12,17],"ocid":14,"ocigenaiprovid":[0,3,4,5,12,17],"offer":[1,3,4,5,12,14],"older":[5,12],"omf":5,"oml":5,"oml4pi":5,"one":[1,2,3,4,5,14,15],"onli":[3,13],"open":[3,4,8],"open_ai_api_kei":[3,4],"open_ai_credential_nam":[3,4],"open_ai_profile_nam":[3,4],"openai":[0,8,14],"openai_cr":[3,4],"openai_profil":[3,4],"openaiprovid":[0,3,4],"oper":[],"operation":[3,4],"optic":[5,12],"option":[3,4,9,15,16],"ora":[5,11],"oracl":[0,1,3,4,5,8,10,11,12,14,17],"oraclecloud":17,"oracledb":[5,6,9,12,17],"oraclevectorindexattribut":0,"orchestr":3,"order":3,"org":[5,12],"organ":[3,4],"origin":[5,12,15],"oss":[],"ot":4,"other":[1,10,11,12],"otherwis":1,"our":[5,12],"out":1,"outlin":3,"output":[2,3,4,5,7,8,11,12,14,16,17],"outsid":[3,4],"over":[3,7],"overal":[5,12],"overlap":17,"own":[1,16],"owner":[3,4,5,12,13,16],"owner_nam":16,"p":[5,12],"packag":[0,3,9,11],"page":[3,4],"pair":[3,4],"panda":[5,9,12],"paragraph":15,"parallel":16,"param":[3,4,5,12,16],"paramet":[3,4,5,6,7,12,13,14,15,16,17],"parti":10,"particular":1,"pass":[3,4,6,17],"password":[3,4,5,6,7,8,9,11,12,14,16,17],"past":7,"patent":1,"path":[5,11,12],"pattern":[3,4,5,12,17],"paus":[3,4],"pdb3":17,"per":13,"perform":[1,2,3,4,5,12,17],"permiss":1,"permit":14,"persist":3,"person":1,"pformat":[3,4,5,12],"phenomena":[5,12],"physic":[5,12],"piec":1,"pint":[5,12],"pip":9,"pipelin":[0,12],"pipeline_nam":17,"pitfal":7,"pl":[0,3,4,6,16],"placehold":[3,4],"platform":12,"point":15,"popul":[16,17],"portion":1,"posit":[5,12],"possibl":16,"potenti":2,"power":5,"pprint":[3,4,5,12],"prebuilt":[3,4],"predict":[3,4],"present":15,"pressur":[5,12],"prevent":[5,12],"previou":[3,4],"previous":17,"primari":13,"primarili":[3,4],"print":[3,4,5,7,8,9,11,12,14,17],"prior":3,"prioriti":16,"privaci":[3,4],"private_kei":8,"privileg":[],"procedur":[3,4,17],"process":[3,4,14,15],"product":[3,4,5],"profil":[3,4,7,8,13,16,17],"profile_attribut":[3,4,5,12,17],"profile_nam":[3,4,5,7,12,16,17],"profile_name_pattern":[5,12],"profileattribut":[0,3,4,5,12,17],"profileemptyattributeserror":12,"profileexistserror":12,"profilenotfounderror":[5,12,17],"program":[5,10],"promo_id":[5,12],"promot":[3,4,5,12],"promotion_count":5,"prompt":[2,3,4,5,7,9,12,13,14,16,17],"prompt_spec":[5,12],"prompt_specif":5,"properti":3,"provid":[1,2,3,4,5,7,10,12,13,17],"provider_endpoint":[5,12,14,17],"provider_nam":[5,12,14,17],"providerattribut":[5,12],"proxi":[3,4,7,9,12,17],"purpos":[1,3],"py":9,"pypi":9,"python":[0,1,3,4,5,6,9,12],"python3":9,"queri":[2,3,4,5,7,13,17],"question":[3,4,5],"quot":5,"r":[3,4,17],"radio":[5,12],"rag":[0,3,4,10],"rai":[5,12],"rais":[3,4,5,12,17],"raise_error_if_exist":12,"raise_error_on_empty_attribut":12,"random":13,"rang":[3,4,5,12],"read":[5,8,11],"reason":[3,4,7],"receiv":14,"recipi":[3,4],"record":16,"record_count":16,"refer":[1,5,14],"referenc":16,"referenti":13,"refresh_r":17,"regard":12,"regexp_lik":[3,4,5,12,17],"region":[3,4,5,12,14,17],"regist":[3,4],"regress":[3,4],"regular":[3,4,5,12,17],"relat":[3,4],"releas":[3,4,16],"relev":[7,11,13],"remain":[5,12],"remov":[7,14,17],"repair":5,"rephras":15,"replac":[3,4,5,8,12,17],"replet":7,"repositori":9,"repres":[7,12],"request":[3,4,5,12,16,17],"requir":[0,3,4,12,17],"research":[3,4,5,7,12],"resid":[3,4,17],"resourc":[14,16],"respect":[],"respond":[3,4],"respons":[3,4,5,7,12,14],"restrict":[1,13],"result":[2,5,12,17],"resum":[3,4],"retention_dai":7,"retriev":[5,10,17],"return":[3,4,5,7,12,13,17],"revok":0,"revoke_http_access":14,"revoke_privileg":11,"rich":0,"right":1,"robust":[3,4],"role":[3,4],"romanc":[3,4],"round":5,"roundtrip":5,"row":[5,16],"run":[0,7,8,9,11,14,16,17],"run_pipelin":[5,12],"run_sql":[0,5,12],"runsql":[2,12],"runtim":14,"sagittariu":[5,12],"sale":1,"same":3,"sampl":[11,16],"sample_row":16,"save":[5,12],"scalabl":[3,4,5],"scale":[3,4],"schedul":17,"schema":[5,12,16],"sci":[3,4],"scienc":[5,7,12],"scientif":7,"scientist":[3,4,7],"script":[5,11],"seamlessli":[3,4],"search":[0,5,12,17],"second":[5,12],"secur":[3,4,5,8],"see":14,"seed":[5,12,13,17],"seek":[5,12],"select":[0,1,5,7,11,12,14,16,17],"select_ai":[2,3,4,5,6,7,8,10,11,12,13,14,15,16,17],"select_ai_admin_password":[11,14],"select_ai_admin_us":[11,14],"select_ai_agent_nam":[3,4],"select_ai_connection_test":9,"select_ai_db_connect_str":[3,4,5,7,8,11,12,14,16,17],"select_ai_db_password":11,"select_ai_db_us":[11,14],"select_ai_password":[3,4,5,7,8,11,12,16,17],"select_ai_task_nam":[3,4],"select_ai_team_nam":[3,4],"select_ai_tool_nam":[3,4],"select_ai_us":[3,4,5,7,8,11,12,14,16,17],"self":5,"sell":1,"semant":17,"send":[3,5,13,16],"sender":[3,4],"sensit":5,"sent":[2,3,5,12,13,14,16],"separ":17,"sequenc":13,"sequenti":[3,4],"seri":[3,4,7],"serv":[3,4],"server":[3,4],"servic":[0,5,8,12],"session":[0,3,4,5,12],"set":[1,3,4,5,12],"set_attribut":[0,3,4,5,7,12,17],"sever":[5,7,10],"sh":[5,12],"shall":1,"shape":7,"should":[3,4,5,6,11,16],"show":[0,2,3,4,8,16],"show_prompt":[0,5,12],"show_sql":[0,5,12],"shown":[6,9],"showprompt":2,"showsql":[2,5],"signific":7,"similar":[3,17],"similarity_threshold":17,"similarli":11,"simul":5,"sinc":[5,12],"singl":[0,3,4,5,12,17],"size":17,"sk":8,"sky":[5,12],"slack":[3,4],"slack_channel":[3,4],"smtp":[3,4],"smtp_host":[3,4],"so":[3,5,12],"social":7,"societi":7,"softwar":1,"sold":1,"solid":[5,12],"solver":[3,4],"some":[5,7,12],"soon":5,"sourc":[5,11,12,17],"source_languag":[5,12],"spark_db_us":[],"special":[3,4],"specif":[3,4,12,14,17],"specifi":[3,4,5,12,13,14,15,17],"speed":[3,4],"split":[5,12,15],"sport":[3,4],"sql":[0,2,3,4,6,10,13,16],"sql_id":[5,12],"sql_task":5,"sql_tool":[3,4],"sqltoolparam":[3,4],"stabil":9,"stand":[5,12],"star":[5,12],"start":[3,4,5,12],"state":[3,4],"statement":[2,3,12],"statist":16,"step":[3,4],"stop":13,"stop_token":[5,12,13,17],"storag":[5,12,17],"store":[3,4,5,7,8,12,17],"stori":[3,4],"str":[3,4,5,7,12,13,14,16,17],"strategi":3,"stream":[5,12,13,17],"string":[5,13],"structur":9,"studi":[5,7,12],"style":[0,10,15],"subject":1,"sublicens":1,"subprogram":6,"substanti":1,"summar":[0,2],"summari":[2,3,4,5,12,15],"summary_styl":15,"summaryparam":[0,5,12],"summarystyl":0,"sun":[5,12],"support":[0,4,5,10,13,14,17],"sync":0,"synchron":[0,5,10,12],"synthet":[5,10,12],"synthetic_data_attribut":[5,12,16],"synthetic_data_param":16,"syntheticdataattribut":[0,5,12],"syntheticdataparam":0,"system":[7,17],"t":5,"tabl":[0,3,5,8,12,13,17],"table_statist":16,"target":[5,12],"target_languag":[5,12],"task":[0,5,16],"task_nam":[3,4],"task_name_pattern":[3,4],"taskattribut":[0,3,4],"team":0,"team_attribut":[],"team_nam":[3,4],"team_name_pattern":[3,4],"teamattribut":[0,3,4],"technic":2,"technologi":[3,4,5,12],"temperatur":[5,12,13,17],"tenanc":8,"tenancy_ocid":8,"tenant1":17,"term":1,"termin":13,"test":17,"test_vector_index":17,"text":[2,3,5,10,12,13,15,17],"than":[5,12],"thank":[5,12],"them":[3,5,12,17],"theoret":[5,12],"thi":[1,2,3,4,5,7,8,9,11,12,13,14,15,16,17],"thin":[3,6],"thing":5,"third":10,"thriller":[3,4],"through":[3,7,9],"time":[3,4,7],"timedelta":7,"titl":[3,4,7],"tl":6,"tns_admin":11,"togeth":[3,4],"token":[13,15],"tool":0,"tool_input":[3,4],"tool_nam":[3,4],"tool_name_pattern":[3,4],"tool_param":[3,4],"tool_typ":[3,4],"toolattribut":[0,3,4],"toolparam":[0,3,4],"tooltyp":[3,4],"topic":[3,4,7],"tort":1,"total":5,"touch":[5,12],"train":[3,4],"transform":14,"translat":[0,2,3,4,13],"trillion":[5,12],"trip":5,"true":[3,4,5,7,8,12,13,16,17],"tune":[3,4,13],"tupl":[5,12],"two":17,"txt":1,"type":[3,4,5,14,17],"typic":[5,7],"u":[3,4,5,7,12,17],"ultraviolet":[5,12],"under":[1,14],"underli":[5,12],"understand":[5,7,12,17],"union":[5,12,17],"uniqu":[3,5,12],"unit":17,"univers":[1,5,12],"unless":[5,7],"unmodifi":1,"up":[3,4],"updat":[0,5,7,12],"updated_attribut":17,"upgrad":9,"upl":1,"uri":[5,12],"url":[3,4,5,12,14],"us":[0,1,2,5,6,7,8,9,10,11,12,13,14,15,16],"usag":[5,7],"user":[2,3,4,5,6,7,8,9,11,12,14,16,17],"user_ocid":8,"user_prompt":16,"user_queri":[3,4],"usernam":[3,4,8],"util":[3,4],"uuid":[3,4],"uuid4":[3,4],"v":[5,12],"v3":17,"valid":13,"validate_config":8,"valu":[3,4,5,7,12,13,14,15,16,17],"valuabl":7,"vari":14,"variabl":[3,4,11],"varieti":[3,4],"variou":[3,4,5,12],"vecpipelin":17,"vector":[3,4,13],"vector_db_credential_nam":17,"vector_db_endpoint":17,"vector_db_provid":17,"vector_dimens":17,"vector_distance_metr":17,"vector_index":17,"vector_index_attribut":17,"vector_index_nam":[5,12,13,17],"vector_table_nam":17,"vectordbprovid":17,"vectordistancemetr":17,"vectorindex":[0,3,4,7],"vectorindexattribut":0,"vectorindexnotfounderror":17,"version":[1,9,10],"versu":15,"via":[5,12],"view":[5,12],"wai":[5,12],"wait":[3,4,5],"waiting_for_human":[3,4],"wallet":6,"wallet_loc":6,"wallet_password":6,"want":[5,12],"war":[3,4],"warranti":1,"water":[5,12],"wave":[5,12],"we":[3,4,5,8],"web":[0,12],"web_search_ag":[3,4],"web_search_task":[3,4],"web_search_team":[3,4],"web_search_tool":[3,4],"websearch":[3,4],"websit":[3,4],"were":7,"western":[3,4],"what":[3,4,5,7,12],"when":[2,3,9,14,15,17],"where":[3,4,5,12],"whether":[1,3,4,13,17],"which":[0,1,3,4,7,14,15,17],"while":[5,12],"who":16,"whose":3,"why":7,"wide":[3,4,12],"wiki":[5,12],"wikipedia":[5,12],"wire":3,"within":[3,4,5,17],"without":[1,2,3,4,5,12],"word":15,"work":[1,3,4],"workflow":[0,3,4,5],"workload":[3,4],"world":[3,4],"write":5,"www":[3,4],"x":[5,12],"xxx":8,"you":[3,4,5,9,10,12,14,15,17],"your":[2,3,4,8,14,17],"your_db_dsn":[6,9],"your_db_password":[6,9],"your_db_us":[6,9],"\u00aa":1,"\u00b2":1,"\u00b3":1,"\u00b5":1,"\u00b9":1,"\u00ba":1,"\u00bc":1,"\u00bd":1,"\u00be":1,"\u03c9":1,"\u215b":1,"\u215c":1,"\u215d":1,"\u215e":1},"titles":["select_ai documentation","<no title>","1. Supported Actions","1. Tool","6.1. AsyncTool","1. AsyncProfile API","3. Connecting to Oracle Database","1. Conversation Object model","1. Create credential","2. Installing select_ai","1. Introduction to Select AI for Python","1. Grant privilege","Profile Object Model","1. ProfileAttributes","1. Provider","1. SummaryParams","1. SyntheticDataAttributes","1. VectorIndex Object Model"],"titleterms":{"":[3,4],"action":[0,2],"agent":[0,3,4],"ai":[0,2,3,4,8,10,14],"anthropicprovid":14,"api":[5,7,8,12,14,16,17],"async":[3,4,5,7,8,12,14,16,17],"asyncag":4,"asyncconvers":7,"asynchron":[5,6],"asyncprofil":5,"asynctask":4,"asyncteam":4,"asynctool":4,"asyncvectorindex":17,"attribut":[0,17],"awsprovid":14,"azureprovid":14,"base":12,"chat":[5,7,12],"chunkprocessingmethod":15,"cohereprovid":14,"concurr":5,"connect":6,"convers":[0,7],"conversationattribut":7,"creat":[3,4,7,8,12,17],"creation":5,"credenti":[0,8],"data":[0,16],"databas":6,"delet":[7,17],"disabl":14,"document":0,"enabl":14,"exampl":[3,4],"expect":8,"explain":5,"extractivenesslevel":15,"fetch":17,"format":8,"get":0,"googleprovid":14,"gpt":[3,4],"grant":11,"huggingfaceprovid":14,"index":[0,17],"instal":9,"introduct":10,"list":[3,4,5,7,12,17],"model":[3,4,7,12,17],"multi":16,"narrat":12,"object":[7,12,17],"ocigenaiprovid":14,"openai":[3,4],"openaiprovid":14,"oracl":6,"oraclevectorindexattribut":17,"pipelin":5,"privileg":[0,11],"profil":[0,5,12],"profileattribut":13,"provid":[0,8,14],"python":10,"rag":17,"requir":9,"revok":11,"run":[3,4,5,12],"search":[3,4],"select":[2,3,4,10],"select_ai":[0,9],"servic":14,"session":7,"show":[5,12],"singl":16,"sql":[5,12],"start":0,"summar":[5,12],"summari":0,"summaryparam":15,"summarystyl":15,"support":[2,3],"sync":[8,14,16],"synchron":6,"synthet":[0,16],"syntheticdataattribut":16,"syntheticdataparam":16,"tabl":16,"task":[3,4],"team":[3,4],"tool":[3,4],"translat":[5,12],"updat":17,"us":[3,4,17],"vector":[0,17],"vectorindex":17,"vectorindexattribut":17,"web":[3,4]}}) diff --git a/docs/user_guide/actions.html b/docs/user_guide/actions.html index ce55bc7..bc38ac9 100644 --- a/docs/user_guide/actions.html +++ b/docs/user_guide/actions.html @@ -5,14 +5,14 @@ - 1. Supported Actions — Select AI for Python 1.2.1 documentation + 1. Supported Actions — Select AI for Python 1.2.2 documentation - + @@ -111,7 +111,7 @@

                            Navigation

                          • - Select AI for Python 1.2.1 documentation » + Select AI for Python 1.2.2 documentation »
                          • @@ -260,7 +260,7 @@

                            Navigation

                          • - Select AI for Python 1.2.1 documentation » + Select AI for Python 1.2.2 documentation »
                          • diff --git a/docs/user_guide/agent.html b/docs/user_guide/agent.html index 2093b9a..8d10f45 100644 --- a/docs/user_guide/agent.html +++ b/docs/user_guide/agent.html @@ -5,14 +5,14 @@ - 1. Tool — Select AI for Python 1.2.1 documentation + 1. Tool — Select AI for Python 1.2.2 documentation - + @@ -76,6 +76,7 @@

                            Table of Contents

                          • Tool.create_sql_tool()
                          • Tool.create_websearch_tool()
                          • Tool.delete()
                          • +
                          • Tool.delete_tool()
                          • Tool.disable()
                          • Tool.enable()
                          • Tool.fetch()
                          • @@ -95,6 +96,7 @@

                            Table of Contents

                          • Task

      class select_ai.agent.ToolAttributes(instruction: str | None = None, function: str | None = None, tool_params: ToolParams | None = None, tool_inputs: List[Mapping] | None = None, tool_type: ToolType | None = None)
      @@ -534,6 +532,20 @@

      1.1. Supported Tools +
      +classmethod delete_tool(tool_name: str, force: bool = False)
      +

      Class method to delete AI Tool from the database

      +
      +
      Parameters:
      +
        +
      • tool_name (str) – The name of the tool

      • +
      • force (bool) – Force the deletion. Default value is False.

      • +
      +
      +
      +

      +
      disable()
      @@ -760,6 +772,20 @@

      2. +
      +classmethod delete_task(task_name: str, force: bool = False)
      +

      Class method to delete AI Task from the database

      +
      +
      Parameters:
      +
        +
      • task_name (str) – The name of the AI Task

      • +
      • force (bool) – Force the deletion. Default value is False.

      • +
      +
      +
      +

      +
      disable()
      @@ -966,6 +992,20 @@

      3. +
      +classmethod delete_agent(agent_name: str, force: bool | None = False)
      +

      Class method to delete AI Agent from the database

      +
      +
      Parameters:
      +
        +
      • agent_name (str) – The name of the AI Agent

      • +
      • force (bool) – Force the deletion. Default value is False.

      • +
      +
      +
      +

      +
      disable()
      @@ -1098,7 +1138,7 @@

      4. Team
      -class select_ai.agent.Team(team_name: str, attributes: TeamAttributes, description: str | None = None)
      +class select_ai.agent.Team(team_name: str, attributes: TeamAttributes | None = None, description: str | None = None)

      A Team of AI agents work together to accomplish tasks select_ai.agent.Team class lets you create, delete, enable, disable and list AI Tasks.

      @@ -1138,6 +1178,20 @@

      4. Team +
      +classmethod delete_team(team_name: str, force: bool | None = False)
      +

      Class method to delete an AI agent team from the database

      +
      +
      Parameters:
      +
        +
      • team_name (str) – The name of the AI team

      • +
      • force (bool) – Force the deletion. Default value is False.

      • +
      +
      +
      +

      +
      disable()
      @@ -1457,6 +1511,7 @@

      6. Async AI AgentAsyncTool.create_sql_tool()
    • AsyncTool.create_websearch_tool()
    • AsyncTool.delete()
    • +
    • AsyncTool.delete_tool()
    • AsyncTool.disable()
    • AsyncTool.enable()
    • AsyncTool.fetch()
    • @@ -1473,6 +1528,7 @@

      6. Async AI AgentAsyncTask

      +
      disable()
      @@ -698,6 +724,30 @@

      4. +
      +async classmethod delete_index(index_name: str, include_data: bool = True, force: bool = False)
      +

      Class method to remove a vector store index

      +
      +
      Parameters:
      +
        +
      • index_name (str) – The name of the vector index

      • +
      • include_data (bool) – Indicates whether to delete +both the customer’s vector store and vector index +along with the vector index object

      • +
      • force (bool) – Indicates whether to ignore errors +that occur if the vector index does not exist

      • +
      +
      +
      Returns:
      +

      None

      +
      +
      Raises:
      +

      oracledb.DatabaseError

      +
      +
      +

      +
      async disable() None
      @@ -1051,6 +1101,7 @@

      Table of Contents

    • VectorIndex