We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0e370d commit f5c989dCopy full SHA for f5c989d
samples/profile_explain_sql.py
@@ -22,7 +22,5 @@
22
profile_name="oci_ai_profile",
23
)
24
print(profile.description)
25
-explanation = profile.explain_sql(
26
- prompt="How many promotions are there in the database?"
27
-)
+explanation = profile.explain_sql(prompt="How many promotions?")
28
print(explanation)
samples/profile_narrate.py
@@ -23,7 +23,5 @@
profile = select_ai.Profile(
-narration = profile.narrate(
+narration = profile.narrate(prompt="How many promotions?")
29
print(narration)
0 commit comments