How do I customize OPAL's Smart Agents?
<p>You can customize OPAL's Smart Agents through JSON-based configuration documents, which incorporate user preferences and fine-tuning templates. This allows for personalized behavior and interactions.</p>
What tools are available for developing with OPAL?
<p>OPAL provides SDKs, libraries, and tools for developers to create, deploy, and manage Smart Agents. These tools facilitate integration with various data sources and services.</p>
How do I integrate external services with OPAL?
<p>OPAL supports the integration of external services via OpenAPI-compliant Web Service descriptions. You can consume third-party services and add new actions to prompt response production pipelines.</p>
How do I execute queries in OPAL?
<p>You can execute queries in OPAL using declarative query languages such as SQL, SPARQL, SPASQL, and GraphQL. This includes direct execution of queries and access to SPARQL and GraphQL endpoints.</p>
How do I enable and manage new models in OPAL?
<p>To enable new unofficially released models (e.g., GPT-4 Turbo), run the following command via iSQL: <code>OAI.DBA.FILL_CHAT_MODELS('[apiKey]')</code>. To drop specific models from the list, run the following command via iSQL: <code>UPDATE OAI.DBA.CHAT_MODELS SET CM_DEPRECATED = 1 where CM_NAME like 'ft:gpt-%';</code></p>
How do I export and import session logs in OPAL?
<p>OPAL allows you to export and import session logs for analysis, sharing, and troubleshooting purposes. This helps in identifying issues and improving Smart Agent performance.</p>
How do I troubleshoot issues with OPAL's Smart Agents?
<p>For troubleshooting, you can export and analyze session logs, consult OPAL’s documentation, or reach out to support. Detailed logs help in identifying and resolving issues.</p>
How do I list OpenAI keys in the Virtuoso Registry?
<p>You can list OpenAI keys in the Virtuoso Registry by running the following SQL command: <code>SELECT registry_get('openai-chat-app-key', 'none');</code></p>